diff --git a/manifest/docker-compose/docker-compose.yaml b/manifest/docker-compose/docker-compose.yaml index 04d0591..cadf038 100644 --- a/manifest/docker-compose/docker-compose.yaml +++ b/manifest/docker-compose/docker-compose.yaml @@ -1,30 +1,36 @@ services: redis: image: redis:7.0.11 - container_name: redis-server + container_name: redis restart: always volumes: - "./redis/conf/redis.conf:/usr/local/etc/redis/redis.conf" - "./redis/data:/data" - "./redis/logs:/logs" command: ["redis-server","/usr/local/etc/redis/redis.conf"] + environment: + - TZ=Asia/Shanghai ports: - 6379:6379 tdengine: - image: tdengine/tdengine:3.0.1.4 - container_name: tdengine-server + image: tdengine/tdengine:3.1.1.0 + container_name: tdengine restart: always - environment: - - TZ=Asia/Shanghai + volumes: + - "./taos/dnode/data:/var/lib/taos" + - "./taos/dnode/log:/var/log/taos" ports: - 6030:6030 - 6041:6041 emqx: image: emqx/emqx:5.0.26 - container_name: emqx-server restart: always + container_name: emqx environment: - TZ=Asia/Shanghai + volumes: + - ./emqx/data:/opt/emqx/data + - ./emqx/log:/opt/emqx/log ports: - 1883:1883 - 8083:8083 @@ -33,13 +39,24 @@ services: - 18083:18083 mysql: image: mysql:8.0.25 - container_name: mysql-server + container_name: mysql restart: always environment: MYSQL_ROOT_PASSWORD: DbyTYGu3s4WuAF4TTq7 MYSQL_DATABASE: sagoo_iot_open volumes: - ./mysql/init:/docker-entrypoint-initdb.d + - ./mysql/data:/var/lib/mysql + - ./mysql/logs:/var/log ports: - "3306:3306" + nginx: + extends: + file: ./nginx/nginx.yaml + service: nginx + + sagoo-iot-open: + extends: + file: ./iot-open/iot-open.yaml + service: sagoo-iot-open \ No newline at end of file diff --git a/manifest/docker-compose/iot-open/Dockerfile b/manifest/docker-compose/iot-open/Dockerfile new file mode 100644 index 0000000..10ba105 --- /dev/null +++ b/manifest/docker-compose/iot-open/Dockerfile @@ -0,0 +1,19 @@ +FROM golang:alpine + +WORKDIR /opt/sagoo-iot-server/ + +COPY ./config/ /opt/sagoo-iot-server/config + +COPY ./curl.sh /opt/sagoo-iot-server/ +COPY ./entrypoint.sh /opt/sagoo-iot-server/ +COPY ./sagoo-admin /opt/sagoo-iot-server/ + +COPY ./entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh +RUN chmod +x /opt/sagoo-iot-server/sagoo-admin + +COPY ./resource/public /opt/sagoo-iot-server/resource/public/ + +EXPOSE 8200 + +CMD ["/bin/sh", "-c", "sleep 50 && /entrypoint.sh"] \ No newline at end of file diff --git a/manifest/docker-compose/iot-open/curl.sh b/manifest/docker-compose/iot-open/curl.sh new file mode 100755 index 0000000..086b5ca --- /dev/null +++ b/manifest/docker-compose/iot-open/curl.sh @@ -0,0 +1,96 @@ +#!/bin/bash + +WORKSPACE=$(cd "$(dirname "$0")" || exit; pwd) +cd "$WORKSPACE" || exit + +readonly app='sagoo-admin' +readonly pidfile="var/$app.pid" +readonly logfile="var/$app.log" + +mkdir -p var + +check_pid() { + if [[ -f $pidfile ]]; then + local pid=$(cat "$pidfile") + if [[ -n $pid ]]; then + local running=$(ps -p "$pid" | grep -c -v "PID TTY") + return "$running" + fi + fi + return 0 +} + +start() { + check_pid + local running=$? + if [[ $running -gt 0 ]]; then + printf "%s now is running already, pid: %s\n" "$app" "$(cat "$pidfile")" + return 1 + fi + + nohup "./$app" >> "$logfile" 2>&1 & + sleep 1 + running=$(ps -p $! | grep -c -v "PID TTY") + if [[ $running -gt 0 ]]; then + echo $! > "$pidfile" + printf "%s started... pid: %s\n" "$app" "$!" + else + printf "%s failed to start.\n" "$app" + return 1 + fi +} + +stop() { + check_pid + local running=$? + if [[ $running -gt 0 ]]; then + local pid=$(cat "$pidfile") + kill "$pid" + rm -f "$pidfile" + printf "%s stopped.\n" "$app" + else + printf "%s is not running.\n" "$app" + fi +} + +restart() { + stop + sleep 1 + start +} + +status() { + check_pid + local running=$? + if [[ $running -gt 0 ]]; then + printf "%s is started.\n" "$app" + else + printf "%s is stopped.\n" "$app" + fi +} + +tailf() { + tail -f "var/*" +} + +print_help() { + printf "Usage: %s {start|stop|restart|status|tail|pid}.\n" "$0" +} + +print_pid() { + cat "$pidfile" +} + +main() { + case "$1" in + "start") start ;; + "stop") stop ;; + "restart") restart ;; + "status") status ;; + "tail") tailf ;; + "pid") print_pid ;; + *) print_help ;; + esac +} + +main "$@" \ No newline at end of file diff --git a/manifest/docker-compose/iot-open/entrypoint.sh b/manifest/docker-compose/iot-open/entrypoint.sh new file mode 100755 index 0000000..633e4e6 --- /dev/null +++ b/manifest/docker-compose/iot-open/entrypoint.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +# 这里是其他的启动逻辑或命令 +/opt/sagoo-iot-server/sagoo-admin \ No newline at end of file diff --git a/manifest/docker-compose/iot-open/iot-open.yaml b/manifest/docker-compose/iot-open/iot-open.yaml new file mode 100644 index 0000000..f61739f --- /dev/null +++ b/manifest/docker-compose/iot-open/iot-open.yaml @@ -0,0 +1,19 @@ +services: + sagoo-iot-open: + image: sagoo-iot-open:1.0.0 + restart: always + container_name: sagoo-iot-open + build: + dockerfile: ./Dockerfile + depends_on: + - mysql + - redis + - emqx + - tdengine + environment: + - TZ=Asia/Shanghai + ports: + - 8200:8200 + volumes: + - "./resource/public/upload_file/:/opt/sagoo-iot-server/resource/public/upload_file" + - "./resource/log/:/opt/sagoo-iot-server/resource/log" diff --git a/manifest/docker-compose/iot-open/sagoo-admin b/manifest/docker-compose/iot-open/sagoo-admin new file mode 100755 index 0000000..31a0966 Binary files /dev/null and b/manifest/docker-compose/iot-open/sagoo-admin differ diff --git a/manifest/docker-compose/nginx/conf/nginx.conf b/manifest/docker-compose/nginx/conf/nginx.conf new file mode 100644 index 0000000..91f91c3 --- /dev/null +++ b/manifest/docker-compose/nginx/conf/nginx.conf @@ -0,0 +1,113 @@ +#user nobody; +worker_processes 1; + +#error_log logs/error.log; +#error_log logs/error.log notice; +#error_log logs/error.log info; + +#pid logs/nginx.pid; + + +events { + worker_connections 1024; +} + + + +http { + include mime.types; + default_type application/octet-stream; + + #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + # '$status $body_bytes_sent "$http_referer" ' + # '"$http_user_agent" "$http_x_forwarded_for"'; + + #access_log logs/access.log main; + + sendfile on; + #tcp_nopush on; + + #keepalive_timeout 0; + keepalive_timeout 65; + + gzip on; + gzip_min_length 10k; + gzip_buffers 4 16k; + gzip_comp_level 6; + gzip_types text/plain application/javascript application/x-javascript text/javascript text/css application/xml; + gzip_vary on; + gzip_proxied expired no-cache no-store private auth; + gzip_disable "MSIE [1-6]\."; + + server { + listen 80; + server_name localhost; + + # ssl_certificate /data/nginx/conf/vhost/cert/localhost/fullchain.pem; + # ssl_certificate_key /data/nginx/conf/vhost/cert/localhost/privkey.pem; + + location / { + root /usr/share/nginx/html/iot-ui; + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root html; + } + + #sagoo-iot路由 + location /base-api/ { + proxy_set_header Connection upgrade; + proxy_set_header Upgrade $http_upgrade; + proxy_http_version 1.1; + chunked_transfer_encoding off; + proxy_pass http://sagoo-iot-open:8200/; + proxy_redirect off; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + } + + #接⼝⽂档路由 + location /base-api/swagger/api.json { + proxy_pass http://sagoo-iot-open:8200/base-api/swagger/api.json; + } + } + + + # another virtual host using mix of IP-, name-, and port-based configuration + # + #server { + # listen 8000; + # listen somename:8080; + # server_name somename alias another.alias; + + # location / { + # root html; + # index index.html index.htm; + # } + #} + + + # HTTPS server + # + #server { + # listen 443 ssl; + # server_name localhost; + + # ssl_certificate cert.pem; + # ssl_certificate_key cert.key; + + # ssl_session_cache shared:SSL:1m; + # ssl_session_timeout 5m; + + # ssl_ciphers HIGH:!aNULL:!MD5; + # ssl_prefer_server_ciphers on; + + # location / { + # root html; + # index index.html index.htm; + # } + #} + +} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/401.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/401.1701184304695.css new file mode 100644 index 0000000..9dabde3 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/401.1701184304695.css @@ -0,0 +1 @@ +.error[data-v-0d7b748a]{height:100%;background-color:var(--el-color-white);display:flex}.error .error-flex[data-v-0d7b748a]{margin:auto;display:flex;height:350px;width:900px}.error .error-flex .left[data-v-0d7b748a]{flex:1;height:100%;align-items:center;display:flex}.error .error-flex .left .left-item .left-item-animation[data-v-0d7b748a]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards}.error .error-flex .left .left-item .left-item-num[data-v-0d7b748a]{color:var(--el-color-info);font-size:55px}.error .error-flex .left .left-item .left-item-title[data-v-0d7b748a]{font-size:20px;color:var(--el-text-color-primary);margin:15px 0 5px;animation-delay:.1s}.error .error-flex .left .left-item .left-item-msg[data-v-0d7b748a]{color:var(--el-text-color-secondary);font-size:12px;margin-bottom:30px;animation-delay:.2s}.error .error-flex .left .left-item .left-item-btn[data-v-0d7b748a]{animation-delay:.2s}.error .error-flex .right[data-v-0d7b748a]{flex:1;opacity:0;animation-name:error-img;animation-duration:2s;animation-fill-mode:forwards}.error .error-flex .right img[data-v-0d7b748a]{width:100%;height:100%} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/401.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/401.1701184304695.js new file mode 100644 index 0000000..a89616e --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/401.1701184304695.js @@ -0,0 +1 @@ +import{L as i,a as c,b as s,Z as t,_,T as r,aF as d,ai as l,o as m,Y as p,aB as u,aC as f}from"./vue.1701184304695.js";import{_ as h,S as v}from"./index.1701184304695.js";var g="/assets/401.1701184304695.png";const S=i({name:"401",setup(){const e=d();return{onSetAuth:()=>{v.clear(),e.push("/login")}}}}),o=e=>(u("data-v-0d7b748a"),e=e(),f(),e),$={class:"error"},b={class:"error-flex"},A={class:"left"},C={class:"left-item"},y=o(()=>s("div",{class:"left-item-animation left-item-num"},"401",-1)),B={class:"left-item-animation left-item-title"},k={class:"left-item-animation left-item-msg"},I={class:"left-item-animation left-item-btn"},x=o(()=>s("div",{class:"right"},[s("img",{src:g})],-1));function N(e,a,T,V,w,D){const n=l("el-button");return m(),c("div",$,[s("div",b,[s("div",A,[s("div",C,[y,s("div",B,t(e.$t("message.noAccess.accessTitle")),1),s("div",k,t(e.$t("message.noAccess.accessMsg")),1),s("div",I,[_(n,{type:"primary",round:"",onClick:e.onSetAuth},{default:r(()=>[p(t(e.$t("message.noAccess.accessBtn")),1)]),_:1},8,["onClick"])])])]),x])])}var L=h(S,[["render",N],["__scopeId","data-v-0d7b748a"]]);export{L as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/401.1701184304695.png b/manifest/docker-compose/nginx/html/iot-ui/assets/401.1701184304695.png new file mode 100644 index 0000000..ce306da Binary files /dev/null and b/manifest/docker-compose/nginx/html/iot-ui/assets/401.1701184304695.png differ diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/404.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/404.1701184304695.css new file mode 100644 index 0000000..1a92537 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/404.1701184304695.css @@ -0,0 +1 @@ +.error[data-v-6b7231c8]{height:100%;background-color:var(--el-color-white);display:flex}.error .error-flex[data-v-6b7231c8]{margin:auto;display:flex;height:350px;width:900px}.error .error-flex .left[data-v-6b7231c8]{flex:1;height:100%;align-items:center;display:flex}.error .error-flex .left .left-item .left-item-animation[data-v-6b7231c8]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards}.error .error-flex .left .left-item .left-item-num[data-v-6b7231c8]{color:var(--el-color-info);font-size:55px}.error .error-flex .left .left-item .left-item-title[data-v-6b7231c8]{font-size:20px;color:var(--el-text-color-primary);margin:15px 0 5px;animation-delay:.1s}.error .error-flex .left .left-item .left-item-msg[data-v-6b7231c8]{color:var(--el-text-color-secondary);font-size:12px;margin-bottom:30px;animation-delay:.2s}.error .error-flex .left .left-item .left-item-btn[data-v-6b7231c8]{animation-delay:.2s}.error .error-flex .right[data-v-6b7231c8]{flex:1;opacity:0;animation-name:error-img;animation-duration:2s;animation-fill-mode:forwards}.error .error-flex .right img[data-v-6b7231c8]{width:100%;height:100%} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/404.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/404.1701184304695.js new file mode 100644 index 0000000..dcddd3d --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/404.1701184304695.js @@ -0,0 +1 @@ +import{L as i,a as _,b as t,Z as o,_ as c,T as d,aF as r,ai as l,o as m,Y as p,aB as u,aC as f}from"./vue.1701184304695.js";import{_ as v}from"./index.1701184304695.js";var h="/assets/404.1701184304695.png";const g=i({name:"404",setup(){const e=r();return{onGoHome:()=>{e.push("/")}}}}),s=e=>(u("data-v-6b7231c8"),e=e(),f(),e),$={class:"error"},b={class:"error-flex"},C={class:"left"},y={class:"left-item"},B=s(()=>t("div",{class:"left-item-animation left-item-num"},"404",-1)),k={class:"left-item-animation left-item-title"},F={class:"left-item-animation left-item-msg"},I={class:"left-item-animation left-item-btn"},S=s(()=>t("div",{class:"right"},[t("img",{src:h})],-1));function x(e,a,G,H,N,T){const n=l("el-button");return m(),_("div",$,[t("div",b,[t("div",C,[t("div",y,[B,t("div",k,o(e.$t("message.notFound.foundTitle")),1),t("div",F,o(e.$t("message.notFound.foundMsg")),1),t("div",I,[c(n,{type:"primary",round:"",onClick:e.onGoHome},{default:d(()=>[p(o(e.$t("message.notFound.foundBtn")),1)]),_:1},8,["onClick"])])])]),S])])}var D=v(g,[["render",x],["__scopeId","data-v-6b7231c8"]]);export{D as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/404.1701184304695.png b/manifest/docker-compose/nginx/html/iot-ui/assets/404.1701184304695.png new file mode 100644 index 0000000..903c8e0 Binary files /dev/null and b/manifest/docker-compose/nginx/html/iot-ui/assets/404.1701184304695.png differ diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/account.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/account.1701184304695.css new file mode 100644 index 0000000..b188524 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/account.1701184304695.css @@ -0,0 +1 @@ +.login-content-form[data-v-647d66fc]{width:400px;margin-top:20px}.login-content-form .login-animation1[data-v-647d66fc]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.1s}.login-content-form .login-animation2[data-v-647d66fc]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.2s}.login-content-form .login-animation3[data-v-647d66fc]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.3s}.login-content-form .login-animation4[data-v-647d66fc]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.4s}.login-content-form .login-content-password[data-v-647d66fc]{display:inline-block;width:20px;cursor:pointer}.login-content-form .login-content-password[data-v-647d66fc]:hover{color:#909399}.login-content-form .login-content-code[data-v-647d66fc]{display:flex;align-items:center;justify-content:space-around}.login-content-form .login-content-code .login-content-code-img[data-v-647d66fc]{width:100%;height:40px;line-height:40px;background-color:#fff;border:1px solid rgb(220,223,230);cursor:pointer;transition:all ease .2s;border-radius:4px;user-select:none}.login-content-form .login-content-code .login-content-code-img[data-v-647d66fc]:hover{border-color:#c0c4cc;transition:all ease .2s}.login-content-form .login-content-submit[data-v-647d66fc]{width:100%;letter-spacing:2px;font-weight:300;margin-top:15px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/account.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/account.1701184304695.js new file mode 100644 index 0000000..82a0631 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/account.1701184304695.js @@ -0,0 +1 @@ +import{L as v,a2 as A,k as R,l as b,ab as U,S as $,T as s,aD as q,aF as D,ai as l,o as N,_ as o,aa as k,b as _,O as B,Z as K,j as O}from"./vue.1701184304695.js";import{_ as T,c as M,b as S,u as j,S as E,i as z,e as J,E as H,f as L}from"./index.1701184304695.js";const P={}.VITE_ISOPEN,Z=v({name:"loginAccount",setup(){const{t:e}=M(),n=j(),p=q(),g=D(),{proxy:h}=O(),u=A({isShowPassword:!1,ruleForm:{userName:P?"demo":"",password:P?"demo123456":"",captcha:"",VerifyKey:""},formRules:{userName:[{required:!0,trigger:"blur",message:"\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A"}],password:[{required:!0,trigger:"blur",message:"\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A"}],captcha:[{required:!0,trigger:"blur",message:"\u9A8C\u8BC1\u7801\u4E0D\u80FD\u4E3A\u7A7A"}]},loading:{signIn:!1},captchaSrc:""});R(()=>{c()});const y=b(()=>L(new Date)),c=()=>{S.login.captcha().then(a=>{u.captchaSrc=a.img,u.ruleForm.VerifyKey=a.key})},d=()=>{h.$refs.loginForm.validate(a=>{a&&(u.loading.signIn=!0,S.login.login(u.ruleForm).then(async r=>{const i=r.userInfo;i.avatar=h.getUpFileUrl(i.avatar),localStorage.setItem("token",r.token),E.set("userInfo",i),await n.dispatch("userInfos/setUserInfos",i),m()}).catch(()=>{u.loading.signIn=!1,c()}))}).catch(()=>{})},m=async()=>{S.login.currentUser().then(async a=>{localStorage.setItem("userId",a.Info.id),E.set("userMenu",a.Data||[]),n.dispatch("requestOldRoutes/setBackEndControlRoutes",a||[]),n.state.themeConfig.themeConfig.isRequestRoutes?(await J(),f()):(await z(),f())})},f=()=>{var t,w,C,F;const a=JSON.parse(localStorage.sysinfo||"{}"),r=g.getRoutes().find(V=>V.path==="/");r&&(r.redirect=a.systemHomePageRoute||"/home");let i=y.value;(t=p.query)!=null&&t.redirect?g.push({path:(w=p.query)==null?void 0:w.redirect,query:p.query.params&&Object.keys((C=p.query)==null?void 0:C.params).length>0?JSON.parse((F=p.query)==null?void 0:F.params):""}):g.push("/"),u.loading.signIn=!1;const I=e("message.signInText");H.success(`${i}\uFF0C${I}`)};return{onSignIn:d,getCaptcha:c,...U(u)}}}),G={class:"login-content-code"},Q=["src"];function W(e,n,p,g,h,u){const y=l("ele-User"),c=l("el-icon"),d=l("el-input"),m=l("el-form-item"),f=l("ele-Unlock"),a=l("ele-Position"),r=l("el-col"),i=l("el-button"),I=l("el-form");return N(),$(I,{ref:"loginForm",size:"large",class:"login-content-form",model:e.ruleForm,rules:e.formRules},{default:s(()=>[o(m,{class:"login-animation1",prop:"userName"},{default:s(()=>[o(d,{type:"text",placeholder:e.$t("message.account.accountPlaceholder1"),modelValue:e.ruleForm.userName,"onUpdate:modelValue":n[0]||(n[0]=t=>e.ruleForm.userName=t),clearable:"",autocomplete:"off"},{prefix:s(()=>[o(c,{class:"el-input__icon"},{default:s(()=>[o(y)]),_:1})]),_:1},8,["placeholder","modelValue"])]),_:1}),o(m,{class:"login-animation2",prop:"password"},{default:s(()=>[o(d,{type:e.isShowPassword?"text":"password",placeholder:e.$t("message.account.accountPlaceholder2"),modelValue:e.ruleForm.password,"onUpdate:modelValue":n[2]||(n[2]=t=>e.ruleForm.password=t),autocomplete:"off",onKeyup:k(e.onSignIn,["enter"])},{prefix:s(()=>[o(c,{class:"el-input__icon"},{default:s(()=>[o(f)]),_:1})]),suffix:s(()=>[_("i",{class:B(["iconfont el-input__icon login-content-password",e.isShowPassword?"icon-yincangmima":"icon-xianshimima"]),onClick:n[1]||(n[1]=t=>e.isShowPassword=!e.isShowPassword)},null,2)]),_:1},8,["type","placeholder","modelValue","onKeyup"])]),_:1}),o(m,{class:"login-animation3",prop:"captcha"},{default:s(()=>[o(r,{span:15},{default:s(()=>[o(d,{type:"text",maxlength:"4",placeholder:e.$t("message.account.accountPlaceholder3"),modelValue:e.ruleForm.captcha,"onUpdate:modelValue":n[3]||(n[3]=t=>e.ruleForm.captcha=t),clearable:"",autocomplete:"off",onKeyup:k(e.onSignIn,["enter"])},{prefix:s(()=>[o(c,{class:"el-input__icon"},{default:s(()=>[o(a)]),_:1})]),_:1},8,["placeholder","modelValue","onKeyup"])]),_:1}),o(r,{span:1}),o(r,{span:8},{default:s(()=>[_("div",G,[_("img",{class:"login-content-code-img",onClick:n[4]||(n[4]=(...t)=>e.getCaptcha&&e.getCaptcha(...t)),width:"130",height:"38",src:e.captchaSrc,style:{cursor:"pointer"}},null,8,Q)])]),_:1})]),_:1}),o(m,{class:"login-animation4"},{default:s(()=>[o(i,{type:"primary",class:"login-content-submit",onClick:e.onSignIn,loading:e.loading.signIn},{default:s(()=>[_("span",null,K(e.$t("message.account.accountBtnText")),1)]),_:1},8,["onClick","loading"])]),_:1})]),_:1},8,["model","rules"])}var x=T(Z,[["render",W],["__scopeId","data-v-647d66fc"]]);export{x as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/alarm.1701184304695.svg b/manifest/docker-compose/nginx/html/iot-ui/assets/alarm.1701184304695.svg new file mode 100644 index 0000000..9740162 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/alarm.1701184304695.svg @@ -0,0 +1,2 @@ + + diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/aside.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/aside.1701184304695.js new file mode 100644 index 0000000..841edfb --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/aside.1701184304695.js @@ -0,0 +1 @@ +import{L as M,aD as I,a2 as V,l as S,i as B,k as T,aI as v,ab as W,ai as C,o as b,S as A,T as y,a as w,a8 as E,F as k,_ as L,b as F,Z as $,a9 as O,K as q,j as H,U as N,V as j,X as x,O as P}from"./vue.1701184304695.js";import{u as R,_ as D}from"./index.1701184304695.js";import{S as U,L as z}from"./main.1701184304695.js";const K=M({name:"navMenuVertical",components:{SubItem:U},props:{menuList:{type:Array,default:()=>[]}},setup(s){const n=R(),i=I(),d=V({defaultActive:i.meta.isDynamic?i.meta.isDynamicPath:i.path,isCollapse:!1}),_=S(()=>s.menuList),f=S(()=>n.state.themeConfig.themeConfig),p=u=>{const{path:c,meta:l}=u,g=l.isDynamic?l.isDynamicPath.split("/"):c.split("/");return g.length>=4&&(l==null?void 0:l.isHide)?g.splice(0,3).join("/"):c};return B(n.state.themeConfig.themeConfig,()=>{document.body.clientWidth<=1e3?d.isCollapse=!1:d.isCollapse=f.value.isCollapse},{immediate:!0}),T(()=>{d.defaultActive=p(i)}),v(u=>{d.defaultActive=p(u),document.body.clientWidth<1e3&&(f.value.isCollapse=!1)}),{menuLists:_,getThemeConfig:f,...W(d)}}});function X(s,n,i,d,_,f){const p=C("SvgIcon"),u=C("SubItem"),c=C("el-sub-menu"),l=C("el-menu-item"),g=C("el-menu");return b(),A(g,{router:"","default-active":s.defaultActive,"background-color":"transparent",collapse:s.isCollapse,"unique-opened":s.getThemeConfig.isUniqueOpened,"collapse-transition":!1},{default:y(()=>[(b(!0),w(k,null,E(s.menuLists,e=>{var t,a;return b(),w(k,null,[e.children&&e.children.length>0?(b(),A(c,{index:e.path,key:e.path},{title:y(()=>{var r,o,m,h;return[L(p,{name:(r=e.meta)==null?void 0:r.icon},null,8,["name"]),F("span",null,$(((o=e.meta)==null?void 0:o.title.indexOf("."))>0?s.$t((m=e.meta)==null?void 0:m.title):(h=e.meta)==null?void 0:h.title),1)]}),default:y(()=>[L(u,{chil:e.children},null,8,["chil"])]),_:2},1032,["index"])):(b(),A(l,{index:e.path,key:e.path},O({default:y(()=>{var r;return[L(p,{name:(r=e.meta)==null?void 0:r.icon},null,8,["name"])]}),_:2},[!((t=e.meta)!=null&&t.isLink)||((a=e.meta)==null?void 0:a.isLink)&&e.meta.isIframe?{name:"title",fn:y(()=>{var r,o,m;return[F("span",null,$(((r=e.meta)==null?void 0:r.title.indexOf("."))>0?s.$t((o=e.meta)==null?void 0:o.title):(m=e.meta)==null?void 0:m.title),1)]})}:{name:"title",fn:y(()=>{var r,o,m,h;return[F("a",{href:(r=e.meta)==null?void 0:r.isLink,target:"_blank",rel:"opener",class:"w100"},$(((o=e.meta)==null?void 0:o.title.indexOf("."))>0?s.$t((m=e.meta)==null?void 0:m.title):(h=e.meta)==null?void 0:h.title),9,["href"])]})}]),1032,["index"]))],64)}),256))]),_:1},8,["default-active","collapse","unique-opened"])}var Z=D(K,[["render",X]]);const G=M({name:"layoutAside",components:{Logo:z,Vertical:Z},setup(){const{proxy:s}=H(),n=R(),i=V({menuList:[],clientWidth:0}),d=S(()=>n.state.tagsViewRoutes.isTagsViewCurrenFull),_=S(()=>{const{layout:e,isCollapse:t,menuBar:a}=n.state.themeConfig.themeConfig,o=["#FFFFFF","#FFF","#fff","#ffffff"].includes(a)?"layout-el-aside-br-color":"";if(i.clientWidth<=1e3)if(t){document.body.setAttribute("class","el-popup-parent--hidden");const m=document.querySelector(".layout-container"),h=document.createElement("div");return h.setAttribute("class","layout-aside-mobile-mode"),m.appendChild(h),h.addEventListener("click",f),[o,"layout-aside-mobile","layout-aside-mobile-open"]}else return f(),[o,"layout-aside-mobile","layout-aside-mobile-close"];else return e==="columns"?t?[o,"layout-aside-pc-1"]:[o,"layout-aside-pc-220"]:t?[o,"layout-aside-pc-64"]:[o,"layout-aside-pc-220"]}),f=()=>{const e=document.querySelector(".layout-aside-mobile-mode");e==null||e.setAttribute("style","animation: error-img-two 0.3s"),setTimeout(()=>{var a;(a=e==null?void 0:e.parentNode)==null||a.removeChild(e)},300),document.body.clientWidth<1e3&&(n.state.themeConfig.themeConfig.isCollapse=!1),document.body.setAttribute("class","")},p=S(()=>{let{layout:e,isShowLogo:t}=n.state.themeConfig.themeConfig;return t&&e==="defaults"||t&&e==="columns"}),u=()=>{if(n.state.themeConfig.themeConfig.layout==="columns")return!1;i.menuList=c(n.state.routesList.routesList)},c=e=>e.filter(t=>{var a;return!((a=t.meta)!=null&&a.isHide)}).map(t=>(t=Object.assign({},t),t.children&&(t.children=c(t.children)),t)),l=e=>{i.clientWidth=e},g=e=>{let{layout:t}=n.state.themeConfig.themeConfig;if(t!=="columns")return!1;e||s.mittBus.emit("restoreDefault"),n.dispatch("routesList/setColumnsMenuHover",e)};return B(n.state.themeConfig.themeConfig,e=>{if(e.isShowLogoChange!==e.isShowLogo){if(!s.$refs.layoutAsideScrollbarRef)return!1;s.$refs.layoutAsideScrollbarRef.update()}}),B(n.state,e=>{let{layout:t,isClassicSplitMenu:a}=e.themeConfig.themeConfig;if(t==="classic"&&a)return!1;u()}),q(()=>{l(document.body.clientWidth),u(),s.mittBus.on("setSendColumnsChildren",e=>{i.menuList=e.children}),s.mittBus.on("setSendClassicChildren",e=>{let{layout:t,isClassicSplitMenu:a}=n.state.themeConfig.themeConfig;t==="classic"&&a&&(i.menuList=[],i.menuList=e.children)}),s.mittBus.on("getBreadcrumbIndexSetFilterRoutes",()=>{u()}),s.mittBus.on("layoutMobileResize",e=>{l(e.clientWidth),f()})}),{setCollapseStyle:_,setShowLogo:p,isTagsViewCurrenFull:d,onAsideEnterLeave:g,...W(i)}}}),J={class:"h100"};function Q(s,n,i,d,_,f){const p=C("Logo"),u=C("Vertical"),c=C("el-scrollbar"),l=C("el-aside");return N((b(),w("div",J,[L(l,{class:P(["layout-aside",s.setCollapseStyle])},{default:y(()=>[s.setShowLogo?(b(),A(p,{key:0})):x("",!0),L(c,{class:"flex-auto",ref:"layoutAsideScrollbarRef",onMouseenter:n[0]||(n[0]=g=>s.onAsideEnterLeave(!0)),onMouseleave:n[1]||(n[1]=g=>s.onAsideEnterLeave(!1))},{default:y(()=>[L(u,{menuList:s.menuList},null,8,["menuList"])]),_:1},512)]),_:1},8,["class"])],512)),[[j,!s.isTagsViewCurrenFull]])}var se=D(G,[["render",Q]]);export{se as A}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/btn-form.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/btn-form.1701184304695.js new file mode 100644 index 0000000..3deaa75 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/btn-form.1701184304695.js @@ -0,0 +1 @@ +import{L as x,h as _,a2 as B,S as C,T as l,n as I,ai as u,o as U,b as h,_ as a,aa as K,Y as F}from"./vue.1701184304695.js";import{b as V,E as L}from"./index.1701184304695.js";import{r as v}from"./validator.1701184304695.js";const N={class:"dialog-footer"},R=F("\u53D6\u6D88"),S=F("\u786E\u5B9A"),q=x({__name:"btn-form",props:{parentData:Array},emits:["getList"],setup(b,{expose:A,emit:E}){const s=_(!1),d=_(),i={parentId:-1,id:void 0,menuId:0,name:"",types:"",description:"",status:1},e=B({...i}),y={name:[v("\u6309\u94AE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A")],types:[v("\u6309\u94AE\u7F16\u7801\u4E0D\u80FD\u4E3A\u7A7A")]},m=async()=>{await d.value.validate(),e.parentId||(e.parentId=-1),await(e.id?V.menu.btn.edit:V.menu.btn.add)(e),L.success("\u64CD\u4F5C\u6210\u529F"),c(),s.value=!1,E("getList")},c=async()=>{Object.assign(e,{...i}),d.value&&d.value.resetFields()};return A({open:async r=>{c(),s.value=!0,I(()=>{Object.assign(e,{...r})})}}),(r,t)=>{const D=u("el-cascader"),n=u("el-form-item"),p=u("el-input"),w=u("el-switch"),g=u("el-form"),f=u("el-button"),k=u("el-dialog");return U(),C(k,{modelValue:s.value,"onUpdate:modelValue":t[6]||(t[6]=o=>s.value=o),title:`${e.id?"\u7F16\u8F91\u6309\u94AE":"\u65B0\u589E\u6309\u94AE"}`,width:"500px","close-on-click-modal":!1,"close-on-press-escape":!1},{footer:l(()=>[h("div",N,[a(f,{onClick:t[5]||(t[5]=o=>s.value=!1)},{default:l(()=>[R]),_:1}),a(f,{type:"primary",onClick:m},{default:l(()=>[S]),_:1})])]),default:l(()=>[a(g,{ref_key:"formRef",ref:d,model:e,rules:y,"label-width":"80px",onKeyup:K(m,["enter","native"])},{default:l(()=>[a(n,{label:"\u4E0A\u7EA7",prop:"parentId"},{default:l(()=>[a(D,{options:b.parentData,props:{label:"name",value:"id",checkStrictly:!0,emitPath:!1},placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u83DC\u5355",clearable:"",class:"w100",modelValue:e.parentId,"onUpdate:modelValue":t[0]||(t[0]=o=>e.parentId=o)},null,8,["options","modelValue"])]),_:1}),a(n,{label:"\u540D\u79F0",prop:"name"},{default:l(()=>[a(p,{modelValue:e.name,"onUpdate:modelValue":t[1]||(t[1]=o=>e.name=o),placeholder:"\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u7F16\u7801",prop:"types"},{default:l(()=>[a(p,{modelValue:e.types,"onUpdate:modelValue":t[2]||(t[2]=o=>e.types=o),placeholder:"\u8F93\u5165\u7F16\u7801"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u72B6\u6001",prop:"status"},{default:l(()=>[a(w,{modelValue:e.status,"onUpdate:modelValue":t[3]||(t[3]=o=>e.status=o),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1}),a(n,{label:"\u8BF4\u660E",prop:"description"},{default:l(()=>[a(p,{modelValue:e.description,"onUpdate:modelValue":t[4]||(t[4]=o=>e.description=o),type:"textarea",rows:6},null,8,["modelValue"])]),_:1})]),_:1},8,["model","onKeyup"])]),_:1},8,["modelValue","title"])}}});export{q as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/btn.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/btn.1701184304695.js new file mode 100644 index 0000000..7c4df08 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/btn.1701184304695.js @@ -0,0 +1 @@ +import N from"./btn-form.1701184304695.js";import{b as F,E as w,r as v,h as b}from"./index.1701184304695.js";import{L as U,h as c,a as M,_ as e,T as t,F as P,ai as o,o as S,b as G,Y as n}from"./vue.1701184304695.js";import"./validator.1701184304695.js";const Y={class:"p-3"},j=n(" \u65B0\u589E\u6309\u94AE "),q=n("\u5E38\u7528\u6309\u94AE\u6743\u9650 "),H=n("\u65B0\u589E"),J=n("\u7F16\u8F91"),K=n("\u8BE6\u60C5"),O=n("\u5220\u9664"),Q=n("\u5BFC\u5165"),W=n("\u5BFC\u51FA"),X=n("\u91CD\u7F6E"),Z=n("\u66F4\u591A"),ee=n("\u4FEE\u6539"),te=n("\u5220\u9664"),se=U({__name:"btn",setup(ue,{expose:A}){const B=c("\u6309\u94AE\u6743\u9650"),h=c(!1),i=c([]),_=c(),C=c(),m=async()=>{i.value=[];let u=await F.menu.btn.getList({menuId:_.value.id,status:-1});i.value=u||[]},y=async u=>{B.value="\u6309\u94AE\u6743\u9650 - "+u.title,h.value=!0,_.value=u,m()},x=()=>{C.value.open({menuId:_.value.id})},D=u=>{C.value.open(u)},g=async u=>{const[s,E]=u.split("-"),r={parentId:-1,menuId:_.value.id,name:E,types:s,description:"",status:1};await F.menu.btn.add(r),w.success("\u64CD\u4F5C\u6210\u529F"),m(),v()},k=u=>{let s=u.status===1?"\u542F\u7528":"\u505C\u7528";b.confirm('\u786E\u8BA4\u8981"'+s+'"\uFF1A"'+u.name+'"\u6309\u94AE\u5417?',"\u8B66\u544A",{confirmButtonText:"\u786E\u5B9A",cancelButtonText:"\u53D6\u6D88",type:"warning"}).then(async function(){await F.menu.btn.setStatus(u.id,u.menuId,u.status),w.success("\u64CD\u4F5C\u6210\u529F"),v()}).catch(function(){u.status=u.status===0?1:0})},V=u=>{b.confirm(`\u6B64\u64CD\u4F5C\u5C06\u5220\u9664\u6309\u94AE\uFF1A\u201C${u.name}\u201D\uFF0C\u662F\u5426\u7EE7\u7EED?`,"\u63D0\u793A",{confirmButtonText:"\u786E\u8BA4",cancelButtonText:"\u53D6\u6D88",type:"warning"}).then(async()=>{await F.menu.btn.del(u.id),w.success("\u5220\u9664\u6210\u529F"),m(),v()})};return A({open:y}),(u,s)=>{const E=o("ele-FolderAdd"),r=o("el-icon"),p=o("el-button"),T=o("ele-Plus"),a=o("el-dropdown-item"),I=o("el-dropdown-menu"),R=o("el-dropdown"),d=o("el-table-column"),$=o("el-switch"),z=o("el-table"),L=o("el-drawer");return S(),M(P,null,[e(L,{modelValue:h.value,"onUpdate:modelValue":s[0]||(s[0]=l=>h.value=l),title:B.value,direction:"rtl",size:"700px"},{default:t(()=>[G("div",Y,[e(p,{size:"default",type:"success",class:"mr-3",onClick:x},{default:t(()=>[e(r,null,{default:t(()=>[e(E)]),_:1}),j]),_:1}),e(R,{onCommand:g},{dropdown:t(()=>[e(I,null,{default:t(()=>[e(a,{command:"add-\u65B0\u589E"},{default:t(()=>[H]),_:1}),e(a,{command:"edit-\u7F16\u8F91"},{default:t(()=>[J]),_:1}),e(a,{command:"detail-\u8BE6\u60C5"},{default:t(()=>[K]),_:1}),e(a,{command:"del-\u5220\u9664"},{default:t(()=>[O]),_:1}),e(a,{command:"upload-\u5BFC\u5165"},{default:t(()=>[Q]),_:1}),e(a,{command:"download-\u5BFC\u51FA"},{default:t(()=>[W]),_:1}),e(a,{command:"reset-\u91CD\u7F6E"},{default:t(()=>[X]),_:1}),e(a,{command:"more-\u66F4\u591A"},{default:t(()=>[Z]),_:1})]),_:1})]),default:t(()=>[e(p,{text:"",type:"primary"},{default:t(()=>[e(r,null,{default:t(()=>[e(T)]),_:1}),q]),_:1})]),_:1})]),e(z,{data:i.value,style:{width:"100%"},"row-key":"id",border:"","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:t(()=>[e(d,{type:"index",label:"\u5E8F\u53F7",width:"60",align:"center"}),e(d,{prop:"name",label:"\u6309\u94AE\u540D\u79F0",width:"220","show-overflow-tooltip":""}),e(d,{prop:"types",label:"\u6309\u94AE\u7F16\u7801","show-overflow-tooltip":""}),e(d,{prop:"status",label:"\u72B6\u6001",width:"100",align:"center"},{default:t(l=>[e($,{modelValue:l.row.status,"onUpdate:modelValue":f=>l.row.status=f,"inline-prompt":"","active-value":1,"inactive-value":0,"active-text":"\u542F","inactive-text":"\u7981",onChange:f=>k(l.row)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(d,{label:"\u64CD\u4F5C",width:"100",align:"center"},{default:t(l=>[e(p,{size:"small",text:"",type:"warning",onClick:f=>D(l.row)},{default:t(()=>[ee]),_:2},1032,["onClick"]),e(p,{size:"small",text:"",type:"danger",onClick:f=>V(l.row)},{default:t(()=>[te]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])]),_:1},8,["modelValue","title"]),e(N,{ref_key:"btnFormRef",ref:C,"parent-data":i.value,onGetList:m},null,8,["parent-data"])],64)}}});export{se as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/classic.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/classic.1701184304695.js new file mode 100644 index 0000000..52095ee --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/classic.1701184304695.js @@ -0,0 +1 @@ +import{_ as d,u as f}from"./index.1701184304695.js";import{A as u}from"./aside.1701184304695.js";import{H as g,M as h,T as C}from"./main.1701184304695.js";import{L as T,l as k,ai as e,o as n,S as s,T as c,_ as o,b,X as w}from"./vue.1701184304695.js";import"./parent.1701184304695.js";const y=T({name:"layoutClassic",components:{Aside:u,Header:g,Main:h,TagsView:C},setup(){const t=f();return{getThemeConfig:k(()=>t.state.themeConfig.themeConfig)}}}),V={class:"flex-center layout-backtop"};function x(t,r,v,A,H,M){const i=e("Header"),m=e("Aside"),_=e("TagsView"),p=e("Main"),a=e("el-container"),l=e("el-backtop");return n(),s(a,{class:"layout-container flex-center"},{default:c(()=>[o(i),o(a,{class:"layout-mian-height-50"},{default:c(()=>[o(m),b("div",V,[t.getThemeConfig.isTagsview?(n(),s(_,{key:0})):w("",!0),o(p)])]),_:1}),o(l,{target:".layout-backtop .el-main .el-scrollbar__wrap"})]),_:1})}var X=d(y,[["render",x]]);export{X as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/columns.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/columns.1701184304695.css new file mode 100644 index 0000000..a80dec2 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/columns.1701184304695.css @@ -0,0 +1 @@ +.layout-columns-aside[data-v-ac8e33d8]{width:70px;height:100%;background:var(--next-bg-columnsMenuBar)}.layout-columns-aside ul[data-v-ac8e33d8]{position:relative}.layout-columns-aside ul li[data-v-ac8e33d8]{color:var(--next-bg-columnsMenuBarColor);width:100%;height:50px;text-align:center;display:flex;cursor:pointer;position:relative;z-index:1}.layout-columns-aside ul li .columns-vertical[data-v-ac8e33d8]{margin:auto}.layout-columns-aside ul li .columns-vertical .columns-vertical-title[data-v-ac8e33d8]{padding-top:1px}.layout-columns-aside ul li .columns-horizontal[data-v-ac8e33d8]{display:flex;height:50px;width:100%;align-items:center;padding:0 5px}.layout-columns-aside ul li .columns-horizontal i[data-v-ac8e33d8]{margin-right:3px}.layout-columns-aside ul li .columns-horizontal a[data-v-ac8e33d8]{display:flex}.layout-columns-aside ul li .columns-horizontal a .columns-horizontal-title[data-v-ac8e33d8]{padding-top:1px}.layout-columns-aside ul li a[data-v-ac8e33d8]{text-decoration:none;color:var(--next-bg-columnsMenuBarColor)}.layout-columns-aside ul .layout-columns-active[data-v-ac8e33d8]{color:var(--el-color-white);transition:.3s ease-in-out}.layout-columns-aside ul .layout-columns-hover[data-v-ac8e33d8],.layout-columns-aside ul .layout-columns-hover a[data-v-ac8e33d8]{color:var(--el-color-primary)}.layout-columns-aside ul .columns-round[data-v-ac8e33d8],.layout-columns-aside ul .columns-card[data-v-ac8e33d8]{background:var(--el-color-primary);color:var(--el-color-white);position:absolute;left:50%;top:2px;height:44px;width:65px;transform:translate(-50%);z-index:0;transition:.3s ease-in-out;border-radius:5px}.layout-columns-aside ul .columns-card[data-v-ac8e33d8]{top:0;height:50px;width:100%;border-radius:0} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/columns.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/columns.1701184304695.js new file mode 100644 index 0000000..4a48457 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/columns.1701184304695.js @@ -0,0 +1 @@ +import{c as j,u as N,_ as D}from"./index.1701184304695.js";import{A as V}from"./aside.1701184304695.js";import{H as U,M as z}from"./main.1701184304695.js";import{L as w,h as F,aD as E,aF as X,a2 as Z,l as B,i as q,k as G,H as J,aI as K,ab as Q,j as W,n as Y,ai as c,o as p,a as g,_ as d,T as b,b as y,F as ee,a8 as te,O as H,Z as R,S as x,X as T}from"./vue.1701184304695.js";import"./parent.1701184304695.js";const se=w({name:"layoutColumnsAside",setup(){const n=F([]),h=F(),{t:O}=j(),{proxy:r}=W(),i=N(),k=E(),C=X(),t=Z({columnsAsideList:[],liIndex:0,liOldIndex:null,liHoverIndex:null,liOldPath:null,difference:0,routeSplit:[],isNavHover:!1}),o=e=>{let s=e.indexOf(".")>0?O(e):e;return s&&s.length>=4&&s.substring(0,i.state.themeConfig.themeConfig.columnsAsideLayout==="columns-vertical"?4:3),s},u=B(()=>i.state.themeConfig.themeConfig.columnsAsideStyle),_=B(()=>i.state.themeConfig.themeConfig.columnsAsideLayout),m=e=>{t.liIndex=e,h.value.style.top=`${n.value[e].offsetTop+t.difference}px`},A=(e,s)=>{m(s);let{path:l,redirect:a}=e;a?C.push(a):C.push(l)},S=(e,s)=>{let{path:l}=e;t.liOldPath=l,t.liOldIndex=s,t.liHoverIndex=s,r.mittBus.emit("setSendColumnsChildren",f(l)),i.dispatch("routesList/setColumnsMenuHover",!1),i.dispatch("routesList/setColumnsNavHover",!0),t.isNavHover=!0},L=async()=>{await i.dispatch("routesList/setColumnsNavHover",!1),setTimeout(()=>{const{isColumnsMenuHover:e,isColumnsNavHover:s}=i.state.routesList;!e&&!s&&r.mittBus.emit("restoreDefault")},100)},v=e=>{Y(()=>{m(e)})},I=()=>{t.columnsAsideList=M(i.state.routesList.routesList);const e=f(k.path);if(Object.keys(e).length<=0)return!1;v(e.item[0].k),r.mittBus.emit("setSendColumnsChildren",e)},f=e=>{const s=e.split("/");let l={};return t.columnsAsideList.map((a,P)=>{a.path===`/${s[1]}`&&(a.k=P,l.item=[{...a}],l.children=[{...a}],a.children&&(l.children=a.children))}),l},M=e=>e.filter(s=>{var l;return!((l=s.meta)!=null&&l.isHide)}).map(s=>(s=Object.assign({},s),s.children&&(s.children=M(s.children)),s)),$=e=>{t.routeSplit=e.split("/"),t.routeSplit.shift();const s=`/${t.routeSplit[0]}`,l=t.columnsAsideList.find(a=>a.path===s);if(!l)return!1;setTimeout(()=>{v(l.k)},0)};return q(i.state,e=>{if(e.themeConfig.themeConfig.columnsAsideStyle==="columnsRound"?t.difference=3:t.difference=0,!e.routesList.isColumnsMenuHover&&!e.routesList.isColumnsNavHover)t.liHoverIndex=null,r.mittBus.emit("setSendColumnsChildren",f(k.path));else{if(t.liHoverIndex=t.liOldIndex,!t.liOldPath)return!1;r.mittBus.emit("setSendColumnsChildren",f(t.liOldPath))}}),G(()=>{I(),r.mittBus.on("restoreDefault",()=>{t.liOldIndex=null,t.liOldPath=null})}),J(()=>{r.mittBus.off("restoreDefault",()=>{})}),K(e=>{$(e.path),r.mittBus.emit("setSendColumnsChildren",f(e.path))}),{columnsAsideOffsetTopRefs:n,columnsAsideActiveRef:h,onColumnsAsideDown:v,setColumnsAsideStyle:u,setColumnsAsidelayout:_,onColumnsAsideMenuClick:A,onColumnsAsideMenuMouseenter:S,onColumnsAsideMenuMouseleave:L,tMenuTitle:o,...Q(t)}}}),ne={class:"layout-columns-aside"},oe=["onClick","onMouseenter","title"],le={class:"columns-vertical-title font12"},ie=["href"],ae={class:"columns-vertical-title font12"};function re(n,h,O,r,i,k){const C=c("SvgIcon"),t=c("el-scrollbar");return p(),g("div",ne,[d(t,null,{default:b(()=>[y("ul",{onMouseleave:h[0]||(h[0]=o=>n.onColumnsAsideMenuMouseleave())},[(p(!0),g(ee,null,te(n.columnsAsideList,(o,u)=>{var _,m,A,S,L,v,I,f,M,$;return p(),g("li",{key:u,onClick:e=>n.onColumnsAsideMenuClick(o,u),onMouseenter:e=>n.onColumnsAsideMenuMouseenter(o,u),ref_for:!0,ref:e=>{e&&(n.columnsAsideOffsetTopRefs[u]=e)},class:H({"layout-columns-active":n.liIndex===u,"layout-columns-hover":n.liHoverIndex===u}),title:((_=o.meta)==null?void 0:_.title.indexOf("."))>0?n.$t((m=o.meta)==null?void 0:m.title):(A=o.meta)==null?void 0:A.title},[!((S=o.meta)!=null&&S.isLink)||((L=o.meta)==null?void 0:L.isLink)&&o.meta.isIframe?(p(),g("div",{key:0,class:H(n.setColumnsAsidelayout)},[d(C,{name:(v=o.meta)==null?void 0:v.icon},null,8,["name"]),y("div",le,R(n.tMenuTitle((I=o.meta)==null?void 0:I.title)),1)],2)):(p(),g("div",{key:1,class:H(n.setColumnsAsidelayout)},[y("a",{href:(f=o.meta)==null?void 0:f.isLink,target:"_blank"},[d(C,{name:(M=o.meta)==null?void 0:M.icon},null,8,["name"]),y("div",ae,R(n.tMenuTitle(($=o.meta)==null?void 0:$.title)),1)],8,ie)],2))],42,oe)}),128)),y("div",{ref:"columnsAsideActiveRef",class:H(n.setColumnsAsideStyle)},null,2)],32)]),_:1})])}var ue=D(se,[["render",re],["__scopeId","data-v-ac8e33d8"]]);const ce=w({name:"layoutColumns",components:{Aside:V,Header:U,Main:z,ColumnsAside:ue},setup(){const n=N();return{isFixedHeader:B(()=>n.state.themeConfig.themeConfig.isFixedHeader)}}}),de={class:"layout-columns-warp"};function me(n,h,O,r,i,k){const C=c("ColumnsAside"),t=c("Aside"),o=c("Header"),u=c("Main"),_=c("el-scrollbar"),m=c("el-container"),A=c("el-backtop");return p(),x(m,{class:"layout-container"},{default:b(()=>[d(C),y("div",de,[d(t),d(m,{class:H(["flex-center layout-backtop",{"layout-backtop":!n.isFixedHeader}])},{default:b(()=>[n.isFixedHeader?(p(),x(o,{key:0})):T("",!0),d(_,{class:H({"layout-backtop":n.isFixedHeader})},{default:b(()=>[n.isFixedHeader?T("",!0):(p(),x(o,{key:0})),d(u)]),_:1},8,["class"])]),_:1},8,["class"])]),d(A,{target:".layout-backtop .el-scrollbar__wrap"})]),_:1})}var Ae=D(ce,[["render",me]]);export{Ae as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/create.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/create.1701184304695.css new file mode 100644 index 0000000..df14833 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/create.1701184304695.css @@ -0,0 +1 @@ +.CodeMirror{width:100%;height:600px;font-size:16px}[data-v-50db41e3] .el-collapse-item__header{position:relative;padding-left:20px}[data-v-50db41e3] .el-collapse-item__header .el-collapse-item__arrow{margin:0!important;position:absolute;left:0;right:0}[data-v-50db41e3] .el-input,[data-v-50db41e3] .el-input-number{width:500px}[data-v-50db41e3] .params{width:600px}[data-v-50db41e3] .flex-column{display:flex;flex-direction:column}[data-v-50db41e3] .flex-column .el-form-item__label{justify-content:flex-start} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/create.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/create.1701184304695.js new file mode 100644 index 0000000..14118b1 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/create.1701184304695.js @@ -0,0 +1 @@ +import{_ as _export_sfc,F as edit_default,E as ElMessage}from"./index.1701184304695.js";import{_ as _sfc_main$1}from"./index.170118430469524.js";import serverDetail from"./serverDetail.1701184304695.js";import{L as defineComponent,a2 as reactive,h as ref,k as onMounted,i as watch,ab as toRefs,S as createBlock,T as withCtx,j as getCurrentInstance,aD as useRoute,aF as useRouter,ai as resolveComponent,o as openBlock,_ as createVNode,b as createBaseVNode,a as createElementBlock,a8 as renderList,F as Fragment,X as createCommentVNode,Y as createTextVNode}from"./vue.1701184304695.js";import{a as api}from"./index.170118430469527.js";var create_vue_vue_type_style_index_0_lang="",create_vue_vue_type_style_index_1_scoped_true_lang="";const _sfc_main=defineComponent({name:"serverCreate",components:{codeEditor:_sfc_main$1,serverDetail},props:{type:{type:String,default:""}},setup(props,context){const{proxy}=getCurrentInstance(),route=useRoute(),router=useRouter(),{network_server_type,network_protocols}=proxy.useDict("network_server_type","network_protocols"),state=reactive({stickValue:"",stick:{"delimit,omitempty":"","custom,omitempty":"","fixedLen,omitempty":0,"len,omitempty":{len:0,offset:0,endian:""}},stick_type:[{label:"\u5206\u9694\u7B26",value:"\u5206\u9694\u7B26"},{label:"\u81EA\u5B9A\u4E49\u811A\u672C",value:"\u81EA\u5B9A\u4E49\u811A\u672C"},{label:"\u56FA\u5B9A\u957F\u5EA6",value:"\u56FA\u5B9A\u957F\u5EA6"},{label:"\u957F\u5EA6\u5B57\u6BB5",value:"\u957F\u5EA6\u5B57\u6BB5"}],resourceModalPro:{mode:"",content:""},detail:{},activeViewName:["1","2","3"],certificateList:[],form:{id:"",accessToken:"",authPasswd:"",authUser:"",authType:3,isTls:0,certificateId:"",name:"\u65B0\u5EFA\u670D\u52A1\u5668",types:"tcp",status:0,addr:"",register:{regex:"^w+$"},protocol:{name:"ModbusTCP",options:{}},heartbeat:{enable:!1,hex:"",regex:"^\\w+$",text:"",timeout:30},devices:[]}}),mirrorRef=ref("mirrorRef"),activeName=ref("first"),getDetail=()=>{const e=route.params&&route.params.id;api.tunnel.getDetail({id:e}).then(o=>{state.detail=o})},submit=()=>{state.form.id||delete state.form.id;let params={...state.form,stick:{...state.stick}};mirrorRef.value.getValue()&&(state.form.protocol.options=eval("("+mirrorRef.value.getValue()+")")),api.server.addItem(params).then(e=>{ElMessage.success("\u6DFB\u52A0\u6210\u529F"),router.go(-1)})};onMounted(()=>{let e={};var o=JSON.stringify(e);state.resourceModalPro.content=JSON.stringify(JSON.parse(o),null,4),getCertificateList()});const handleClick=(e,o)=>{},getCertificateList=()=>{},initData=()=>{state.stick={"delimit,omitempty":"","custom,omitempty":"","fixedLen,omitempty":0,"len,omitempty":{len:0,offset:0,endian:""}}},handleChangeType=()=>{if(state.form.types!="mqtt_server"&&state.form.isTls==1){state.form.authType=3;return}state.form.isTls==0&&(state.form.authType="")};return watch(()=>state.form.types,e=>{}),watch(()=>state.form.isTls,e=>{e==0&&(state.form.authType="")}),{Edit:edit_default,mirrorRef,activeName,getDetail,handleClick,network_server_type,network_protocols,getCertificateList,submit,initData,handleChangeType,...toRefs(props),...toRefs(state)}}}),_hoisted_1={class:"collapse-wrap"},_hoisted_2=createTextVNode("\u662F"),_hoisted_3=createTextVNode("\u5426"),_hoisted_4={style:{position:"absolute",right:"20px",top:"20px"}},_hoisted_5=createTextVNode("\u53D6\u6D88"),_hoisted_6=createTextVNode("\u63D0\u4EA4");function _sfc_render(e,o,k,y,F,v){const a=resolveComponent("el-input"),l=resolveComponent("el-form-item"),u=resolveComponent("el-option"),r=resolveComponent("el-select"),d=resolveComponent("el-radio"),i=resolveComponent("el-radio-group"),p=resolveComponent("el-switch"),n=resolveComponent("el-form"),s=resolveComponent("el-collapse-item"),c=resolveComponent("codeEditor"),f=resolveComponent("el-collapse"),V=resolveComponent("el-tab-pane"),B=resolveComponent("el-tabs"),m=resolveComponent("el-button"),C=resolveComponent("el-card");return openBlock(),createBlock(C,{class:"system-dic-container",style:{position:"relative"}},{default:withCtx(()=>[createVNode(B,{modelValue:e.activeName,"onUpdate:modelValue":o[20]||(o[20]=t=>e.activeName=t),class:"demo-tabs",onTabClick:e.handleClick},{default:withCtx(()=>[createVNode(V,{label:"\u65B0\u5EFA\u670D\u52A1\u5668",name:"first"},{default:withCtx(()=>[createVNode(f,{modelValue:e.activeViewName,"onUpdate:modelValue":o[19]||(o[19]=t=>e.activeViewName=t)},{default:withCtx(()=>[createVNode(s,{title:"\u57FA\u672C\u4FE1\u606F",name:"1"},{default:withCtx(()=>[createBaseVNode("div",_hoisted_1,[createVNode(n,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"98px"},{default:withCtx(()=>[createVNode(l,{label:"\u540D\u79F0"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.name,"onUpdate:modelValue":o[0]||(o[0]=t=>e.form.name=t),placeholder:"\u8BF7\u586B\u5199\u540D\u79F0"},null,8,["modelValue"])]),_:1}),createVNode(l,{label:"\u7C7B\u578B"},{default:withCtx(()=>[createVNode(r,{onChange:e.handleChangeType,modelValue:e.form.types,"onUpdate:modelValue":o[1]||(o[1]=t=>e.form.types=t),placeholder:"\u8BF7\u9009\u62E9\u7C7B\u578B"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.network_server_type,t=>(openBlock(),createBlock(u,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["onChange","modelValue"])]),_:1}),e.form.types=="tcp"?(openBlock(),createBlock(l,{key:0,label:"\u7C98\u62C6\u5305\u89C4\u5219"},{default:withCtx(()=>[createVNode(r,{onChange:e.initData,modelValue:e.stickValue,"onUpdate:modelValue":o[2]||(o[2]=t=>e.stickValue=t),placeholder:"\u8BF7\u9009\u62E9\u7C7B\u578B"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.stick_type,t=>(openBlock(),createBlock(u,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["onChange","modelValue"])]),_:1})):createCommentVNode("",!0),e.form.types=="tcp"&&e.stickValue?(openBlock(),createBlock(l,{key:1},{default:withCtx(()=>[e.stickValue=="\u5206\u9694\u7B26"?(openBlock(),createBlock(l,{key:0,class:"flex-column",label:"\u5206\u9694\u7B26"},{default:withCtx(()=>[createVNode(a,{modelValue:e.stick["delimit,omitempty"],"onUpdate:modelValue":o[3]||(o[3]=t=>e.stick["delimit,omitempty"]=t),placeholder:"\u8BF7\u586B\u5199\u5206\u9694\u7B26"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u81EA\u5B9A\u4E49\u811A\u672C"?(openBlock(),createBlock(l,{key:1,class:"flex-column",label:"\u81EA\u5B9A\u4E49\u811A\u672C"},{default:withCtx(()=>[createVNode(a,{modelValue:e.stick["custom,omitempty"],"onUpdate:modelValue":o[4]||(o[4]=t=>e.stick["custom,omitempty"]=t),placeholder:"\u8BF7\u586B\u5199\u81EA\u5B9A\u4E49\u811A\u672C"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u56FA\u5B9A\u957F\u5EA6"?(openBlock(),createBlock(l,{key:2,class:"flex-column",label:"\u56FA\u5B9A\u957F\u5EA6"},{default:withCtx(()=>[createVNode(a,{type:"number",modelValue:e.stick["fixedLen,omitempty"],"onUpdate:modelValue":o[5]||(o[5]=t=>e.stick["fixedLen,omitempty"]=t),placeholder:"\u8BF7\u586B\u5199\u56FA\u5B9A\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u957F\u5EA6\u5B57\u6BB5"?(openBlock(),createBlock(l,{key:3,class:"flex-column",label:"\u957F\u5EA6"},{default:withCtx(()=>[createVNode(a,{type:"number",modelValue:e.stick["len,omitempty"].len,"onUpdate:modelValue":o[6]||(o[6]=t=>e.stick["len,omitempty"].len=t),placeholder:"\u8BF7\u586B\u5199\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u957F\u5EA6\u5B57\u6BB5"?(openBlock(),createBlock(l,{key:4,class:"flex-column",label:"\u504F\u79FB\u91CF"},{default:withCtx(()=>[createVNode(a,{type:"number",modelValue:e.stick["len,omitempty"].offset,"onUpdate:modelValue":o[7]||(o[7]=t=>e.stick["len,omitempty"].offset=t),placeholder:"\u8BF7\u586B\u5199\u504F\u79FB\u91CF"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u957F\u5EA6\u5B57\u6BB5"?(openBlock(),createBlock(l,{key:5,class:"flex-column",label:"\u5927\u5C0F\u7AEF"},{default:withCtx(()=>[createVNode(r,{modelValue:e.stick["len,omitempty"].endian,"onUpdate:modelValue":o[8]||(o[8]=t=>e.stick["len,omitempty"].endian=t),placeholder:"\u8BF7\u9009\u62E9\u5927\u5C0F\u7AEF"},{default:withCtx(()=>[createVNode(u,{label:"\u5927\u7AEF",value:"\u5927\u7AEF"}),createVNode(u,{label:"\u5C0F\u7AEF",value:"\u5C0F\u7AEF"})]),_:1},8,["modelValue"])]),_:1})):createCommentVNode("",!0)]),_:1})):createCommentVNode("",!0),createVNode(l,{label:"\u5730\u5740"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.addr,"onUpdate:modelValue":o[9]||(o[9]=t=>e.form.addr=t),placeholder:"\u7AEF\u53E3\u53F7"},null,8,["modelValue"])]),_:1}),createVNode(l,{label:"\u5F00\u542FTLS"},{default:withCtx(()=>[createVNode(i,{modelValue:e.form.isTls,"onUpdate:modelValue":o[10]||(o[10]=t=>e.form.isTls=t),class:"ml-4"},{default:withCtx(()=>[createVNode(d,{label:1},{default:withCtx(()=>[_hoisted_2]),_:1}),createVNode(d,{label:0},{default:withCtx(()=>[_hoisted_3]),_:1})]),_:1},8,["modelValue"])]),_:1}),e.form.isTls==1&&e.form.types!="mqtt_server"?(openBlock(),createBlock(l,{key:2,label:"\u9009\u62E9\u8BC1\u4E66"},{default:withCtx(()=>[createVNode(r,{modelValue:e.form.certificateId,"onUpdate:modelValue":o[11]||(o[11]=t=>e.form.certificateId=t),placeholder:"\u8BF7\u9009\u62E9\u8BC1\u4E66"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.certificateList,t=>(openBlock(),createBlock(u,{key:t.id,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.form.isTls==1&&e.form.types=="mqtt_server"?(openBlock(),createBlock(l,{key:3,label:"\u63A5\u5165\u65B9\u5F0F"},{default:withCtx(()=>[createVNode(r,{modelValue:e.form.authType,"onUpdate:modelValue":o[12]||(o[12]=t=>e.form.authType=t),placeholder:"\u9009\u62E9\u63A5\u5165\u65B9\u5F0F"},{default:withCtx(()=>[createVNode(u,{label:"Basic",value:1}),createVNode(u,{label:"AccessToken",value:2})]),_:1},8,["modelValue"]),e.form.authType==1?(openBlock(),createBlock(l,{key:0,class:"flex-column",label:"\u7528\u6237\u540D"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.authUser,"onUpdate:modelValue":o[13]||(o[13]=t=>e.form.authUser=t),placeholder:"\u8BF7\u586B\u5199\u7528\u6237\u540D"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.form.authType==1?(openBlock(),createBlock(l,{key:1,class:"flex-column",label:"\u5BC6\u7801"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.authPasswd,"onUpdate:modelValue":o[14]||(o[14]=t=>e.form.authPasswd=t),placeholder:"\u8BF7\u586B\u5199\u5BC6\u7801"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.form.authType==2?(openBlock(),createBlock(l,{key:2,class:"flex-column",label:"Aceess Token"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.accessToken,"onUpdate:modelValue":o[15]||(o[15]=t=>e.form.accessToken=t),placeholder:"\u8BF7\u586B\u5199Aceess Token"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0)]),_:1})):createCommentVNode("",!0),createVNode(l,{label:"\u542F\u7528"},{default:withCtx(()=>[createVNode(p,{"active-value":1,"inactive-value":0,modelValue:e.form.status,"onUpdate:modelValue":o[16]||(o[16]=t=>e.form.status=t)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1}),createVNode(s,{title:"\u6CE8\u518C\u5305",name:"2"},{default:withCtx(()=>[createVNode(n,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"98px"},{default:withCtx(()=>[createVNode(l,{label:"\u6B63\u5219\u8868\u8FBE\u5F0F"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.register.regex,"onUpdate:modelValue":o[17]||(o[17]=t=>e.form.register.regex=t),placeholder:"\u8BF7\u586B\u5199\u540D\u79F0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1}),createVNode(s,{title:"\u534F\u8BAE\u9002\u914D",name:"3"},{default:withCtx(()=>[createVNode(n,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"98px"},{default:withCtx(()=>[createVNode(l,{label:"\u534F\u8BAE"},{default:withCtx(()=>[createVNode(r,{modelValue:e.form.protocol.name,"onUpdate:modelValue":o[18]||(o[18]=t=>e.form.protocol.name=t),placeholder:"\u8BF7\u9009\u62E9\u534F\u8BAE\u9002\u914D"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.network_protocols,t=>(openBlock(),createBlock(u,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),createVNode(l,{label:"\u534F\u8BAE\u53C2\u6570"},{default:withCtx(()=>[createVNode(c,{class:"params",ref:"mirrorRef",mode:e.resourceModalPro.mode,content:e.resourceModalPro.content},null,8,["mode","content"])]),_:1})]),_:1},8,["model"])]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["modelValue","onTabClick"]),createBaseVNode("div",_hoisted_4,[createVNode(m,{size:"medium"},{default:withCtx(()=>[_hoisted_5]),_:1}),createVNode(m,{onClick:e.submit,size:"medium",type:"primary"},{default:withCtx(()=>[_hoisted_6]),_:1},8,["onClick"])])]),_:1})}var create=_export_sfc(_sfc_main,[["render",_sfc_render],["__scopeId","data-v-50db41e3"]]);export{create as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/create.17011843046952.css b/manifest/docker-compose/nginx/html/iot-ui/assets/create.17011843046952.css new file mode 100644 index 0000000..227e1b1 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/create.17011843046952.css @@ -0,0 +1 @@ +.CodeMirror{width:100%;height:600px;font-size:16px}[data-v-1c4b8249] .el-collapse-item__header{position:relative;padding-left:20px}[data-v-1c4b8249] .el-collapse-item__header .el-collapse-item__arrow{margin:0!important;position:absolute;left:0;right:0}[data-v-1c4b8249] .el-input,[data-v-1c4b8249] .el-input-number{width:500px}[data-v-1c4b8249] .params{width:600px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/create.17011843046952.js b/manifest/docker-compose/nginx/html/iot-ui/assets/create.17011843046952.js new file mode 100644 index 0000000..10cde28 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/create.17011843046952.js @@ -0,0 +1 @@ +import{L as defineComponent,a2 as reactive,h as ref,k as onMounted,ab as toRefs,S as createBlock,T as withCtx,j as getCurrentInstance,aD as useRoute,aF as useRouter,ai as resolveComponent,o as openBlock,_ as createVNode,b as createBaseVNode,a as createElementBlock,a8 as renderList,F as Fragment,U as withDirectives,V as vShow,X as createCommentVNode,Y as createTextVNode}from"./vue.1701184304695.js";import{_ as _sfc_main$1}from"./index.170118430469524.js";import serverDetail from"./serverDetail.17011843046952.js";import{a as api}from"./index.170118430469527.js";import{_ as _export_sfc,E as ElMessage}from"./index.1701184304695.js";var create_vue_vue_type_style_index_0_lang="",create_vue_vue_type_style_index_1_scoped_true_lang="";const _sfc_main=defineComponent({name:"tunnelCreate",components:{codeEditor:_sfc_main$1,serverDetail},props:{type:{type:String,default:""}},setup(props,context){const{proxy}=getCurrentInstance(),route=useRoute(),router=useRouter(),{network_tunnel_type,tunnel_serial_baudrate,tunnel_serial_databits,tunnel_serial_stopbits,tunnel_serial_parity,network_protocols}=proxy.useDict("network_tunnel_type","tunnel_serial_baudrate","tunnel_serial_databits","tunnel_serial_stopbits","tunnel_serial_parity","network_protocols"),state=reactive({resourceModalPro:{mode:"",content:""},detail:{},activeViewName:["1","2","3","4","5"],form:{name:"\u65B0\u5EFA\u901A\u9053",types:"serial",status:!1,addr:"",serial:{baud_rate:"9600",data_bits:"6",stop_bits:"1",parity:"0"},retry:{enable:!0,timeout:30,maximum:0},protoccol:{name:"ModbusTCP",options:{}},heartbeat:{enable:!1,hex:"",regex:"^\\w+$",text:"",timeout:30}}}),mirrorRef=ref("mirrorRef"),activeName=ref("first"),getDetail=()=>{const e=route.params&&route.params.id;api.tunnel.getDetail({id:e}).then(l=>{state.detail=l})},submit=()=>{state.form.serial.parity==0&&(state.form.serial.rs485=!1,delete state.form.serial.port),(state.form.serial.parity==1||state.form.serial.parity==2)&&(state.form.serial.port=null,delete state.form.serial.rs485),mirrorRef.value.getValue()&&(state.form.protoccol.options=eval("("+mirrorRef.value.getValue()+")")),api.tunnel.addItem({...state.form}).then(e=>{ElMessage.success("\u6DFB\u52A0\u6210\u529F"),router.go(-1)})};return onMounted(()=>{let e={};var l=JSON.stringify(e);state.resourceModalPro.content=JSON.stringify(JSON.parse(l),null,4)}),{mirrorRef,activeName,getDetail,network_tunnel_type,tunnel_serial_baudrate,tunnel_serial_databits,tunnel_serial_stopbits,tunnel_serial_parity,network_protocols,submit,...toRefs(props),...toRefs(state)}}}),_hoisted_1={class:"collapse-wrap"},_hoisted_2={class:"collapse-wrap"},_hoisted_3=createTextVNode("/dev/ttyS0"),_hoisted_4={style:{position:"absolute",right:"20px",top:"20px"}},_hoisted_5=createTextVNode("\u53D6\u6D88"),_hoisted_6=createTextVNode("\u63D0\u4EA4");function _sfc_render(e,l,b,C,v,w){const i=resolveComponent("el-input"),o=resolveComponent("el-form-item"),a=resolveComponent("el-option"),r=resolveComponent("el-select"),s=resolveComponent("el-switch"),u=resolveComponent("el-form"),n=resolveComponent("el-collapse-item"),d=resolveComponent("el-button"),m=resolveComponent("el-input-number"),p=resolveComponent("codeEditor"),f=resolveComponent("el-collapse"),c=resolveComponent("el-tab-pane"),_=resolveComponent("el-tabs"),V=resolveComponent("el-card");return openBlock(),createBlock(V,{class:"system-dic-container",style:{position:"relative"}},{default:withCtx(()=>[createVNode(_,{modelValue:e.activeName,"onUpdate:modelValue":l[14]||(l[14]=t=>e.activeName=t),class:"demo-tabs"},{default:withCtx(()=>[createVNode(c,{label:"\u65B0\u589E\u901A\u9053",name:"first"},{default:withCtx(()=>[createVNode(f,{modelValue:e.activeViewName,"onUpdate:modelValue":l[13]||(l[13]=t=>e.activeViewName=t)},{default:withCtx(()=>[createVNode(n,{title:"\u57FA\u672C\u4FE1\u606F",name:"1"},{default:withCtx(()=>[createBaseVNode("div",_hoisted_1,[createVNode(u,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"68px"},{default:withCtx(()=>[createVNode(o,{label:"\u540D\u79F0"},{default:withCtx(()=>[createVNode(i,{modelValue:e.form.name,"onUpdate:modelValue":l[0]||(l[0]=t=>e.form.name=t),placeholder:"\u8BF7\u586B\u5199\u540D\u79F0"},null,8,["modelValue"])]),_:1}),createVNode(o,{label:"\u7C7B\u578B"},{default:withCtx(()=>[createVNode(r,{modelValue:e.form.types,"onUpdate:modelValue":l[1]||(l[1]=t=>e.form.types=t),placeholder:"\u8BF7\u9009\u62E9\u7C7B\u578B"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.network_tunnel_type,t=>(openBlock(),createBlock(a,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),withDirectives(createVNode(o,{label:"\u5730\u5740"},{default:withCtx(()=>[createVNode(i,{modelValue:e.form.addr,"onUpdate:modelValue":l[2]||(l[2]=t=>e.form.addr=t),placeholder:"\u7AEF\u53E3\u53F7\uFF0CIP:\u7AEF\u53E3"},null,8,["modelValue"])]),_:1},512),[[vShow,e.form.types!="serial"]]),createVNode(o,{label:"\u542F\u7528"},{default:withCtx(()=>[createVNode(s,{modelValue:e.form.status,"onUpdate:modelValue":l[3]||(l[3]=t=>e.form.status=t)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1}),withDirectives(createVNode(n,{title:"\u4E32\u53E3\u53C2\u6570",name:"2"},{default:withCtx(()=>[createBaseVNode("div",_hoisted_2,[createVNode(u,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"68px"},{default:withCtx(()=>[createVNode(o,{label:"\u7AEF\u53E3"},{default:withCtx(()=>[createVNode(d,null,{default:withCtx(()=>[_hoisted_3]),_:1})]),_:1}),createVNode(o,{label:"\u6CE2\u7279\u7387"},{default:withCtx(()=>[createVNode(r,{modelValue:e.form.serial.baud_rate,"onUpdate:modelValue":l[4]||(l[4]=t=>e.form.serial.baud_rate=t),placeholder:"\u8BF7\u9009\u62E9\u6CE2\u7279\u7387"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.tunnel_serial_baudrate,t=>(openBlock(),createBlock(a,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),createVNode(o,{label:"\u6570\u636E\u4F4D"},{default:withCtx(()=>[createVNode(r,{modelValue:e.form.serial.data_bits,"onUpdate:modelValue":l[5]||(l[5]=t=>e.form.serial.data_bits=t),placeholder:"\u8BF7\u9009\u62E9\u6570\u636E\u4F4D"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.tunnel_serial_databits,t=>(openBlock(),createBlock(a,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),createVNode(o,{label:"\u505C\u6B62\u4F4D"},{default:withCtx(()=>[createVNode(r,{modelValue:e.form.serial.stop_bits,"onUpdate:modelValue":l[6]||(l[6]=t=>e.form.serial.stop_bits=t),placeholder:"\u8BF7\u9009\u62E9\u505C\u6B62\u4F4D"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.tunnel_serial_stopbits,t=>(openBlock(),createBlock(a,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),createVNode(o,{label:"\u68C0\u9A8C\u4F4D"},{default:withCtx(()=>[createVNode(r,{modelValue:e.form.serial.parity,"onUpdate:modelValue":l[7]||(l[7]=t=>e.form.serial.parity=t),placeholder:"\u8BF7\u9009\u62E9\u68C0\u9A8C\u4F4D"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.tunnel_serial_parity,t=>(openBlock(),createBlock(a,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1},512),[[vShow,e.form.types=="serial"]]),withDirectives(createVNode(n,{title:"\u5FC3\u8DF3\u5305",name:"4"},{default:withCtx(()=>[createVNode(u,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"68px"},{default:withCtx(()=>[createVNode(o,{label:"\u542F\u7528"},{default:withCtx(()=>[createVNode(s,{modelValue:e.form.heartbeat.enable,"onUpdate:modelValue":l[8]||(l[8]=t=>e.form.heartbeat.enable=t)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},512),[[vShow,e.form.type!="serial"]]),e.form.types=="serial"||e.form.types=="tcp-client"||e.form.types=="udp-client"?(openBlock(),createBlock(n,{key:0,title:"\u65AD\u7EBF\u91CD\u8FDE",name:"4"},{default:withCtx(()=>[createVNode(u,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"68px"},{default:withCtx(()=>[createVNode(o,{label:"\u542F\u7528"},{default:withCtx(()=>[createVNode(s,{modelValue:e.form.retry.enable,"onUpdate:modelValue":l[9]||(l[9]=t=>e.form.retry.enable=t)},null,8,["modelValue"])]),_:1}),createVNode(o,{label:"\u95F4\u9694"},{default:withCtx(()=>[createVNode(m,{modelValue:e.form.retry.timeout,"onUpdate:modelValue":l[10]||(l[10]=t=>e.form.retry.timeout=t),min:0,onChange:e.handleChange},null,8,["modelValue","onChange"])]),_:1}),createVNode(o,{label:"\u6700\u5927\u6B21\u6570"},{default:withCtx(()=>[createVNode(m,{modelValue:e.form.retry.maximum,"onUpdate:modelValue":l[11]||(l[11]=t=>e.form.retry.maximum=t),min:0,onChange:e.handleChange},null,8,["modelValue","onChange"])]),_:1})]),_:1},8,["model"])]),_:1})):createCommentVNode("",!0),createVNode(n,{title:"\u534F\u8BAE\u9002\u914D",name:"5"},{default:withCtx(()=>[createVNode(u,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"68px"},{default:withCtx(()=>[createVNode(o,{label:"\u534F\u8BAE"},{default:withCtx(()=>[createVNode(r,{modelValue:e.form.protoccol.name,"onUpdate:modelValue":l[12]||(l[12]=t=>e.form.protoccol.name=t),placeholder:"\u8BF7\u9009\u62E9\u534F\u8BAE\u9002\u914D"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.network_protocols,t=>(openBlock(),createBlock(a,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),createVNode(o,{label:"\u534F\u8BAE\u53C2\u6570"},{default:withCtx(()=>[createVNode(p,{class:"params",ref:"mirrorRef",mode:e.resourceModalPro.mode,content:e.resourceModalPro.content,getValue:e.getValue},null,8,["mode","content","getValue"])]),_:1})]),_:1},8,["model"])]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["modelValue"]),createBaseVNode("div",_hoisted_4,[createVNode(d,{size:"medium"},{default:withCtx(()=>[_hoisted_5]),_:1}),createVNode(d,{onClick:e.submit,size:"medium",type:"primary"},{default:withCtx(()=>[_hoisted_6]),_:1},8,["onClick"])])]),_:1})}var create=_export_sfc(_sfc_main,[["render",_sfc_render],["__scopeId","data-v-1c4b8249"]]);export{create as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/dashboard.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/dashboard.1701184304695.css new file mode 100644 index 0000000..d28f44a --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/dashboard.1701184304695.css @@ -0,0 +1 @@ +.home-container[data-v-233de769]{overflow:hidden}.home-container .home-card-one .home-card-item[data-v-233de769],.home-container .home-card-one .home-card-top[data-v-233de769],.home-container .home-card-two .home-card-item[data-v-233de769],.home-container .home-card-two .home-card-top[data-v-233de769],.home-container .home-card-three .home-card-item[data-v-233de769],.home-container .home-card-three .home-card-top[data-v-233de769]{width:100%;height:130px;border-radius:4px;transition:all ease .3s;padding:20px;overflow:hidden;background:var(--el-color-white);color:var(--el-text-color-primary);border:1px solid var(--next-border-color-light)}.home-container .home-card-one .home-card-item[data-v-233de769]:hover,.home-container .home-card-one .home-card-top[data-v-233de769]:hover,.home-container .home-card-two .home-card-item[data-v-233de769]:hover,.home-container .home-card-two .home-card-top[data-v-233de769]:hover,.home-container .home-card-three .home-card-item[data-v-233de769]:hover,.home-container .home-card-three .home-card-top[data-v-233de769]:hover{box-shadow:0 2px 12px var(--next-color-dark-hover);transition:all ease .3s}.home-container .home-card-one .home-card-item-icon[data-v-233de769],.home-container .home-card-one .home-card-top-icon[data-v-233de769],.home-container .home-card-two .home-card-item-icon[data-v-233de769],.home-container .home-card-two .home-card-top-icon[data-v-233de769],.home-container .home-card-three .home-card-item-icon[data-v-233de769],.home-container .home-card-three .home-card-top-icon[data-v-233de769]{width:70px;height:70px;border-radius:100%;flex-shrink:1}.home-container .home-card-one .home-card-item-icon i[data-v-233de769],.home-container .home-card-one .home-card-top-icon i[data-v-233de769],.home-container .home-card-two .home-card-item-icon i[data-v-233de769],.home-container .home-card-two .home-card-top-icon i[data-v-233de769],.home-container .home-card-three .home-card-item-icon i[data-v-233de769],.home-container .home-card-three .home-card-top-icon i[data-v-233de769]{color:var(--el-text-color-placeholder)}.home-container .home-card-one .home-card-item-title[data-v-233de769],.home-container .home-card-one .home-card-top-title[data-v-233de769],.home-container .home-card-two .home-card-item-title[data-v-233de769],.home-container .home-card-two .home-card-top-title[data-v-233de769],.home-container .home-card-three .home-card-item-title[data-v-233de769],.home-container .home-card-three .home-card-top-title[data-v-233de769]{font-size:15px;font-weight:700;height:30px}.home-container .home-card-three .home-card-item-title[data-v-233de769]{display:flex;justify-content:space-between}.home-container .home-card-one .home-one-animation0[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:0s}.home-container .home-card-one .home-one-animation1[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.1s}.home-container .home-card-one .home-one-animation2[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.2s}.home-container .home-card-one .home-one-animation3[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.3s}.home-container .home-card-two .home-card-item[data-v-233de769],.home-container .home-card-three .home-card-item[data-v-233de769]{height:300px}.home-container .home-card-two .home-card-top[data-v-233de769],.home-container .home-card-three .home-card-top[data-v-233de769]{height:250px}.home-container .home-card-two .home-card-top .box-card[data-v-233de769],.home-container .home-card-three .home-card-top .box-card[data-v-233de769]{padding:15px 20px 20px 10px}.home-container .home-card-two .home-card-top .box-card p[data-v-233de769],.home-container .home-card-three .home-card-top .box-card p[data-v-233de769],.home-container .home-card-two .home-card-top .box-card-item[data-v-233de769],.home-container .home-card-three .home-card-top .box-card-item[data-v-233de769]{margin-bottom:10px}.home-container .home-card-two .home-card-item[data-v-233de769],.home-container .home-card-two .home-card-top[data-v-233de769],.home-container .home-card-three .home-card-item[data-v-233de769],.home-container .home-card-three .home-card-top[data-v-233de769]{width:100%;overflow:hidden}.home-container .home-card-two .home-card-item .home-monitor[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor[data-v-233de769]{height:100%}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item[data-v-233de769]{width:25%;height:111px;display:flex}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .flex-warp-item-box[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .flex-warp-item-box[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .flex-warp-item-box[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .flex-warp-item-box[data-v-233de769]{margin:auto;text-align:center;color:var(--el-text-color-primary);display:flex;border-radius:5px;background:var(--next-bg-color);cursor:pointer;transition:all .3s ease}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .flex-warp-item-box[data-v-233de769]:hover,.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .flex-warp-item-box[data-v-233de769]:hover,.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .flex-warp-item-box[data-v-233de769]:hover,.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .flex-warp-item-box[data-v-233de769]:hover{background:var(--el-color-primary-light-9);transition:all .3s ease}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .home-animation0[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .home-animation0[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .home-animation0[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .home-animation0[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:0s}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .home-animation1[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .home-animation1[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .home-animation1[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .home-animation1[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.1s}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .home-animation2[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .home-animation2[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .home-animation2[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .home-animation2[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.2s}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .home-animation3[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .home-animation3[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .home-animation3[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .home-animation3[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.3s}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .home-animation4[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .home-animation4[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .home-animation4[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .home-animation4[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.4s}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .home-animation5[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .home-animation5[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .home-animation5[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .home-animation5[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.5s}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .home-animation6[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .home-animation6[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .home-animation6[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .home-animation6[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.6s}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .home-animation7[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .home-animation7[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .home-animation7[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .home-animation7[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.7s}.home-container .home-card-two .home-card-item .home-monitor .flex-warp-item .home-animation8[data-v-233de769],.home-container .home-card-two .home-card-top .home-monitor .flex-warp-item .home-animation8[data-v-233de769],.home-container .home-card-three .home-card-item .home-monitor .flex-warp-item .home-animation8[data-v-233de769],.home-container .home-card-three .home-card-top .home-monitor .flex-warp-item .home-animation8[data-v-233de769]{opacity:0;animation-name:error-num;animation-duration:.5s;animation-fill-mode:forwards;animation-delay:.8s}.home-container .text-info[data-v-233de769]{color:#23c6c8}.home-container .text-danger[data-v-233de769]{color:#ed5565}.home-container .git-res[data-v-233de769]{margin-top:20px}.home-container .git-res .el-link[data-v-233de769]{margin-right:30px}.home-container ul[data-v-233de769],.home-container li[data-v-233de769]{padding:0;margin:0;list-style:none}.home-container .product[data-v-233de769]{margin-top:50px}.home-container .product h3[data-v-233de769]{margin-bottom:15px}.home-container .product li[data-v-233de769]{margin-bottom:20px;float:left;width:150px}.home-container .box-card.xx[data-v-233de769]{margin-top:20px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/dashboard.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/dashboard.1701184304695.js new file mode 100644 index 0000000..4b7c794 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/dashboard.1701184304695.js @@ -0,0 +1 @@ +import{i as N,L as H}from"./echarts.1701184304695.js";import{L as I,h as F,a2 as Z,k as Q,aH as J,i as Y,ab as k,a as z,_ as i,T as a,aF as j,ai as p,as as R,o as n,F as q,a8 as U,S as h,b as r,O as S,Z as T,P as x,U as s,Y as v,X as _,n as V,aB as $,aC as ee}from"./vue.1701184304695.js";import{_ as te,u as oe}from"./index.1701184304695.js";import{a as G}from"./index.17011843046957.js";import ae from"./edit.1701184304695.js";import le from"./detail.1701184304695.js";import"./index.17011843046958.js";/* empty css */import"./vue3cron.1701184304695.js";let u={homeChartOne:null,homeChartTwo:null,homeCharThree:null,dispose:[null,"",void 0]};const re=I({name:"home",components:{EditDic:ae,DetailDic:le},setup(){const l=F(),D=F(),M=F(),W=F(),K=F(),y=oe(),w=j(),e=Z({loading:!1,tableData:{data:[],total:0,loading:!1,param:{pageNum:1,pageSize:10,status:"",dateRange:[]}},homeOne:[{num1:"0",num2:"0",num3:"\u4EA7\u54C1\u6570",num4:"icon-zidingyibuju",color1:"#6690F9",color2:"--el-color-warning-lighter",color3:"--el-color-warning"},{num1:"0",num2:"\u79BB\u7EBF 0",num3:"\u8BBE\u5907\u6570",num4:"icon-putong",color1:"#FF6462",color2:"--next-color-primary-lighter",color3:"--el-color-primary"},{num1:"0",num2:"0",num3:"\u4ECA\u65E5\u8BBE\u5907\u6D88\u606F\u91CF",num4:"icon-shidu",color1:"#6690F9",color2:"--el-color-success-lighter",color3:"--el-color-success"},{num1:"0",num2:"0",num3:"\u8BBE\u5907\u62A5\u8B66\u91CF",num4:"icon-zaosheng",color1:"#6690F9",color2:"--el-color-warning-lighter",color3:"--el-color-warning"}],myCharts:[],charts:{theme:"",bgColor:"",color:"#303133"},lineChartXAxisDat:[],lineChartMsgTotalData:[],lineChartAlarmTotalData:[],pieChartLegend:[],pieChartData:[]}),b=()=>{u.dispose.some(o=>o===u.homeChartOne)||u.homeChartOne.dispose(),u.homeChartOne=N(M.value,e.charts.theme);const t={backgroundColor:e.charts.bgColor,title:{text:"\u8BBE\u5907\u6D88\u606F",x:"left",textStyle:{fontSize:"15",color:e.charts.color}},grid:{top:70,right:20,bottom:30,left:30},tooltip:{trigger:"axis"},legend:{data:["\u6D88\u606F\u91CF","\u9884\u8B66\u91CF"],right:0},xAxis:{data:e.lineChartXAxisData},yAxis:[{type:"value",name:"\u6761\u6570",splitLine:{show:!0,lineStyle:{type:"dashed",color:"#f5f5f5"}},axisLabel:{margin:2,formatter:function(o,f){return o>=1e4&&o<1e7?o=o/1e4+"W":o>=1e7&&(o=o/1e7+"KW"),o}}}],series:[{name:"\u6D88\u606F\u91CF",type:"line",symbolSize:6,symbol:"circle",smooth:!0,data:e.lineChartMsgTotalData,lineStyle:{color:"#fe9a8b"},itemStyle:{color:"#fe9a8b",borderColor:"#fe9a8b"},areaStyle:{color:new H(0,0,0,1,[{offset:0,color:"#fe9a8bb3"},{offset:1,color:"#fe9a8b03"}])}},{name:"\u9884\u8B66\u91CF",type:"line",symbolSize:6,symbol:"circle",smooth:!0,data:e.lineChartAlarmTotalData,lineStyle:{color:"#9E87FF"},itemStyle:{color:"#9E87FF",borderColor:"#9E87FF"},areaStyle:{color:new H(0,0,0,1,[{offset:0,color:"#9E87FFb3"},{offset:1,color:"#9E87FF03"}])},emphasis:{itemStyle:{color:{type:"radial",x:.5,y:.5,r:.5,colorStops:[{offset:0,color:"#9E87FF"},{offset:.4,color:"#9E87FF"},{offset:.5,color:"#fff"},{offset:.7,color:"#fff"},{offset:.8,color:"#fff"},{offset:1,color:"#fff"}]},borderColor:"#9E87FF",borderWidth:2}}}]};u.homeChartOne.setOption(t),e.myCharts.push(u.homeChartOne)},c=()=>{u.dispose.some(P=>P===u.homeChartTwo)||u.homeChartTwo.dispose(),u.homeChartTwo=N(W.value,e.charts.theme);for(var t=e.pieChartLegend,o=e.pieChartData,f=[],g=0;g {c}%"},graphic:{elements:[{type:"image",z:-1,style:{image:y.state.themeConfig.themeConfig.isIsDark?"":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAK0AAACtCAYAAADCr/9DAAAcoElEQVR4Xu19e7wcRZn28/ZM90xXzzknOYEkIAEiBAUUFyFc4wKCCAt8gHhBUEDFG8K3Iri6+3ETL0hQ9FthvYC4gAb0cwFRQcUlKiIIbpRbEBGUREJIyHWmq2e6Z+r9fjU5iQnJOWcuPV195nT/l5yq93nep57p6amueouQXV0rwMzW6tWrS4XCsFvPVQWIyAphKweR3ShUGw2EAwMIAfhE1OgacJIHoEme/7jpM3O+UgnnWFZuDpF6pQJ2JtDOBJ4JwgxmmgbwEABr3GAAM1Ah8CqAVgC8nEBLFWgJQz1Liv7sefZTRBS0EGvSNslMu9nQL1u2TEyZsv3rARygwK8nxuvIwh7McBJ0iL4T/xXgR8DW75nxcL2ef2jKFFqTIIdUQ01q02qTDg5v/wZLqSMZ9I8AtGHtFI6YAmExFO4jsu6N3Ny9Q0SrU8gzEUqTzrSrV8ud7aJ1okW54wg4jJmLiSgdL4i+Gz8Moh9xQ91ZKhUeizd8uqNNCtNKya9QqnYqWdbbAcwF0Fd5M/AnZv5/UFgwMFBYnG7Ldc+urwZvczmY2Q6CxolMfDaYjwKQ616uCRHhd2BcX63at0ybRusnBOM2SfadaYOAd2Wun8PgMwFMb1OPvmlORBUGfw8K13qes6hvEuunr0nfD/dn4gsJdAqAfD8NUpe5MBF+wWR9QRRydxMRdxnPePcJf6etBNGRFvNFDBxuXM20EyA8QWx9xnVz3yMilXa6o/GbsKYNgugNivlzAOZNVPGN8SY8rpgvK7nObRPxzjvhTFsu1/ay8rgKTP9kbND7BZixyLLoQte1F06klCaMadetWzecz7uXg/DB7Jk1bovRD3JW42PFYvHZuCP3Il7qTcvMJKvRe8D0eYC374UIWcymAlUwf14I5/NEVEuzJqk27bp11Tm2bV3HwGFpFrGfuDHwlKLG+wdd97605pVK0+q7axBE/8zAZwGItIrXx7wUA9esWfXiJ2fNmpW6FWepM63v8w6M6EYivKmPTTExUiM8wQ2cXio5j6SJcKpMu96vnZQj6zqAt0uTSJOcS41B/+a5+S+lZXosFaZduJDzcw+MPk/Ax/rpLV1/mZ1+FLn5M6aQ+XW9xk1bLvN0ykXfpeyN1kTw+F9Y4WTTjwtGTavXC4DodoB3mggjlnFsrun0AT5LiML3TelhzLRS1t7KoBuz2QFTQ98VrgLzJZ5X0LM7iV9GTCtl+FEGvtjiZsDERckAW1SAcN1DD9rnHHEE1VvsEUuzxE1bkbX5BPp4LOyzIOYVYP6hEM7biaiaFJnETKtrA8hq9DUw3p9UchlOMgro9bpu0T5BLzxPAjER0zJzTlajG8A4I4mkMozkFSDggWq1cuzw8PC6XqP33LT6DhtUo/9kxrt7nUwW37gCD/iVtUdPnz69p3fcnpvW98PrQXifcTkzAokoQET3rnpp+fG9XLPQU9NKGX2RwfotV3ZNIgWY+S5POCcRUdSLtHtm2oqMLiTwVb0gncVMvwIM3Oq59mm9WK/QE9NKWX8HQy2YZPOwzIz1ROQDqqbvMrp4HYAiQLqKjS5SN1lqLzQ/VQSeL0ThE3F/xGI3rZTRwQzWe44KcZM1Ha9ZS4D5CRAeJcZitqxnuK6WAOGLnue9RDT6JLv+QVoul4cLhYHpzPVZjQbvRkSvAngfxdiHCMOm8+sBPoNwtuc6N8QZO1bTrpJyVhH2wwDPiJOkqVjMWG0R7mELv2LLvt+z8Vivtl5Xq9XdmfOHKqh5YD4GoL5Yj0GEEExHCmH/Oq5xjM20upCbDCK9RWP/uMiZiEOEv0DXxYJ1h+vmHzJVBLlcq72GFE4gJl1/7B9MaBEj5ouE+v5CiL/FETM20/p+eJ3+KoiDVNIxGCgT4RZifEsI58Gk8cfDq1Z5j7oK30OwzgR4h/Hap/TvDwjXPiyOGYVYTFsJwncT46aUijUqLQKeZsaXhLBvTuoVZDca6R92QdA4iaEuAHBQN7FM9CXQ1ULYmntXV9emXVetzrHZ+h9mDHTFJMHOzHiEiS8vuc4dvXpG7XU6UkaHKlaXENHRvcaKMT6DreM9L39XNzG7Mq3+5Mugfj/AB3RDIqm+uo6rBesi1819vxfzh0nlsTmOlNE8Bl8xccpD0YvCzb+WiFZ2qldXpvWD6FIwX9YpeFL9mLHWIvq06+avISJ9ykzfXXpuHFBXMrBL2pMj0B1C2Cd3yrNj01Yq4T+QhYdSekbBZnrwf4Hr53me90KnIk2UfsuXL/dKg8OXE/DPaX+RwcTvKrmF73SibUembS41DCJtWH2wRiovZqxQxB8aFIXbU0mwh6R8358L2P8Jwl49hOkyNL2kGvm9Bgbaf0zoyLRSRh9jsN4uk86L+W6lnLMGBvRZXZPz0vPmQRB9gYFz0rotnwg3C9dpe41126aVUu7EyD8JoJRCOzT0M7YQzmf75YdWtxo3N5ASfROMwW5j9aA/W0RHtltqtAPThrcwcGoPEugyJK1hhXeWSvZPuwzUd911Td9cnu5gxpzUJUd4/KEH7X3b2RzZlmmljA5hsH6H3Fa/3gvFf1UNHDcZjiPqVEtmHg6C6HYG9CF/6boYH/E85z9aJdWy+Zp1YoPoAQAHtho8iXbM/Aewc0ypRC8mgTeRMZi5IGW4AERvSVkeK4Vr707U2hFSLZtWytopDDJWVWQUkR8Urn0sEa1N2SCkls7IJlP9jKuPrErPxfwZzytc3Aqhlkw7sv37cTD2bCVoQm30AoyjJ8KagYT0aBlmZDyvB+M9LXfqfcOKatR2GxgYGHfGpyXTVoLaacTU0URwj3JdFNb8I6dOnZrdYTsUWBvXD6LvUIp+VOvtWUIU/mW8lMY1bTM5GT5ORCm5y/KzquEc1Mmk9HhiTLa/66NYfRn9OC0FrPW3Zj0KZg8ODr401liMa9r1snZyDnRbOgaUXmpYjUMHi8U/pYPPxGfBzEO+jO4nwt6pyIb5cs8rXNqVaaUMf8PAwSlIqG4RHeW69i9TwKWvKAQB76K4/rt0VGCnVcLN70xEcjSRx7zTShkexICe5jJ+sVIXlErFq40T6VMClWp0FCn+SRoW2ijGOQOe89VOTbuAgXeaHye+zRMFfVBzdvVQAd+vXQyiy3sI0VJoZiwuec6ojyuj3mnL5fL0XL6whNn0VnD6Wz3Kv25oiFa3lHHWqGMF9ByuH0QLCXhDx0Fi6qiIDh8Y5VFwVNNWZPXjBGt+TBw6DaMXVLzJde3/7jRA1q89BfTzbYOjxwhmt08RsEAI5/RtsR/VtH4QLjb+MoFwvec6WT3b9nzXdWvfDz8CwjVdB+ouQBDW7B2nTt36bec2TeuH4f6o4+HuMLvszbw8FM6eU7NXtF0K2X735huzDTUsDmm/d4w9GB/0POcbL4+4TdNWZO0qAl0YI3zboSyyznLdvD5IJLsMKDCynep3JmcTGPhlSTiHj2va5rm01egvzAY3yDEeFsI+MFvIbcCtm0H6fvh1ED5gkIWSHM3a3vOWbc5hqzvtSAG53xgkCovo8OwlgskR2IDt+/4OIPvPRo/NYpzrec61Y5u2Gs1nxeZOn2H83POc7DBn855tMpCydhWbfFQk3OO5zhYFSba60/p++BgIrzGlGYEOFcI2eqc3lXsacZl5uyCI/sqAZ4hfrbzenjZzpq77u+HawrRSylmM/HMGt9Pc7wlnniFxMthRFPD98BoQPmJMIMs6wSvmf7RN0/p++H4QtppiSIwsWyd7Xv6OxPAyoJYUqFZ5t4aKnjI4k/AfnnA2fWi2uNNWZKhPA9f1UA1cvES4zuyJWhDOgGCJQvoy+gHA/ytR0I2PA4Q/Cdd51bbvtDL6G8CvMEFM1yvwvMKnjGBnoOMq4PvV40HWD8dt2JsGrBr2zI3FVzbdadcGwWybc8/2BnPcqKpWrc8eHhZLxm2ZNTCiQHNDpAyXgshIUWcCv0WMlLjaZNogqJ+uWH3bhCIE/EII5wgT2Blm6wpIGV3N4PNb7xFfSwJ9QQi7ORW7ybS+rF8DKDO/ENss1hCfFFmkdhQw+eKJQPcLYTdnljYzbajnRk1sq2GCPUsIer4dAbO2ySuwoWBL/XlD5z74wrUH9Q/1pmlHVvWsh5kJ5Ec94bwu+SHIEDtRwPfDb4Lw3k76dtsnZ6lXF4vFp5qmXVutvtJW1jPdBu2kP4Pnl3pwql8nXLI+4ytQlrVTLdAt47eMvwWBTxGicFvTtL5fPx6kjExnsEXHlIpZpcP4h7g3ESuVykyyHL3qatzyA7EzILrYc+3PNIErsno+wTKx07UhXHsqEZVjTzAL2DMFpAyfZmD3ngGMFphxk+c5Z47cacNrQc2K0YlezHii5DnGFuckmmwfgckgvJkZ7zKQUnNtygbTyuiHAB+fNAkiLBDutjevJc0lw2tdASnD8xlI/JuZQH8Twp614fHADx8hwj6t046nJYE+KYR9ZTzRsihJKVCpRG8ii3+WFN5mOPpxsrjxTrsC4O0TJ8HqRM8r3pk4bgbYlQJS8ixGZOSVO8HeiRYu5PwBB0Y1AFZXmXTQmRXvUyoVHuuga9bFoAIj8/oBACdxGoz9SFeSsXIFI6XfhWsPZEWREx/2WAB9WXsaoMRnEFipN1O1Wt2joSy9wDfZi7HW85ypyYJmaHEpUJGhLp+01fbuuOKPFofA7yDfD/cHJV+YQx+uXBJ/X9jb62Sz+PEqYGzDAOMDVC4Hh1m53C/iTamlaL/1hHNQSy2zRqlTwA/Cr4HxwaSJ6XN/qVKpHkOWdbcB8IVCOG9MGjfDi0cBKcOrGUh8ba2eJiXfrx4HsjbtdIwnpRaiEP3Ec+1jW2iZNUmhAhVZu0IbKHFqRBeR79dOBJGBHbB8pycKJyaedAYYiwK+X7sMRGOejRAL0MuDEF1m7k7L/GPPKyT+6rgnQk7CoL5f+xSILkk8deZLTZr2p55XOCbxpDPAWBSoyNqVBBr3zK9YwDYLwuB/pSCIjlDM98YdvIV4v/aEY7xMegs8sybbUEDK8N8ZOC9pcQh0AZk6wYYZj5U8J/FFOkmL3K94MghvYsa7E8/PwoepVqu9pt4gA+//6QVP2DsmnnQGGIsCfhDdBebEZ3+Y+F0kJe/EiJbGkkl7QerNZWZEjfa6Za3ToIAvw0UA9k2aCyt1LC1btkwMTdluUxnFJElUg/rO06YJEx+YJNPsS6yKH75EhGmJJ8eYO7KeNtR7tEpJExjrrKikuWR4rSuwevXqoUKxZOQEeIvs2U3TyiB8mtnARjULH/SKW59e0rp8WUsTCvh+OBeEh0xgN5ezamBTy8wAXOsJ51wTyWeYnStQCcKziPGtziN02pPWeMIeHtkjVruRiM7oNFSn/Ri4ryScf+y0f9bPjAIVGf5fAv63AfRmNaINz7RBdAmYE68NS4SKW2zWPagbECCD7FABX4b6ZHoDy0rpdk/Yb2maNgjqpylW3+kwh+66Mfb3POd/uguS9U5KAWZ2ZRDpH2GJ7w8ji64SRftfNtxpw3A/1KFP50v8YqjzS6L45cSBM8COFAiC6DDFbGLTgC7E9D7PdW7YWDVRyCDSVRNzHWXSRSdmvrvkFf6pixBZ1wQVKPu1T1tEFyUIuQmKgIOFcB7cVERMBuEfmbHpMIYESQXCtYeJqJogZgbVoQK+DPVB3/t32L2bbg2/Yk+ZPp0qfzetDG9h4NRuonbcl9UJnldMfvdEx4QnZ0cp5U4j58wlXyMD/FRJFF6tld9k2oqMLiTwVUaGg3CT5zpnGsHOQFtWwFQNL02Qwd8uiUJzVdkm066Xcl4O+ftaziDGhsxYv3LF8zNmz56dPSLEqGvcoXwZPgjgwLjjthKPoM4TonjNFqZl5uLIVEahlSBxt2HFp5VKBSMVpuPOpR/jlcu1Pa0cPWGkmLIWNI/Xe47z+y1Mq/9RkeGvCDCym4CBhaVsS3lq/S5l9EUGf8wMQVor3Py0jad5blGC3A+iT4E5+c1qG5TgRl3tOThYTL5Ek5mRmDCoS5cudYenzVwC8HZmSNOdnrA37dx+2Snk0TwGG3mu1WJYhK+7rvMhM8JkqKMpYPqgbwLOE8JpPs9u9XjAzHlfRiuJMMXQEAaqUdt1YGBghSH8DPZlCuiynn4QLSYYmcNvsqlHao+hoeLT2zSt/k8pw1sZeIep0dPTbkIUEt+abCrftONWgtppxGRmXcqGX31PCeE052fHMG3tnQxaYFBMySrcrVQqLTfIIYPecChiLqhGi5mxhylBNi6SGdO0zFwKqvUXmVmYIgpY13oiny0ONzcATWTfD84G5a4zSYPyOEg4zm/HNO0GsrXvg+gUg2TrqsH7DgwUHjfIYVJDr1y5ckB4g08BtIMpIYjwnFu0ZxMRj2taKetvY6jvmSLbxCX6uefabzLKYRKDSxnNZ3DzqHpTF4GuFMLeqjLjNo+K1NvKB4e2e4EIg6YIa1yLcIbrOjeb5DAZsf0w3Bf15sbFvMn8VYNfu61v21HPNy374TcswvtNkmbGKk/YexLRSpM8JhO2nvaUQaSfIV9vNG/Gw57nHLAtDqOaVsrwAAa2eAA2kgTznZ6X1bFNSvuyX/uUZaKE58sTHKO8wJgnSfsy1Hu3zH7idDKMD3ue87WkBm6y4qyX8tA88r9gw48FAK3zK2t2mj59eqWtO61uHAThexTjhhQMomSFQ0sl5w8p4NKXFJh5uyCIfsfALilI8CuecEbdoj7mnZaZCzKoPwfwjBQk8qxw7f2JaE0KuPQVBf0SQVbrPwHzUSlIrFGP1KuHhop/Ho3LmKbVnfwguhjMl6cgGT0Ndo8o5o8joigVfPqEhJTRlxj80XSkw7d7ovCWsbiMa9p163g4b0fPmShQt03ijBs8z3lfOgSe+CykDM9l4CtpyYSAA4VwxqwTNq5pdTIVWZtPIKMTzVuIyvxpzyuYWveblvHtmoeUtVMY9F0TpQO2RZ4Z95Q85+jxEmvJtCOHPj8LwBsvYFJ/14dUCGGb2YiZVJI9xPH96rEg63YARrZXbXtWgOYJYd8/Xtotmbb5bOvXPgeifx0vYIJ/Z333F8L+YoKYfQGlDUtW7r90iaPUJMR8t9di0ZaWTbuGeYoTRM8AGE5NopoI0WWeaydePC9VGrRBpixrp1horo9NzR0WgGKF/Vqd0mzZtBuebcOPEvClNjRKpinjq0LY52XnN4wtd9kPP2xR80dX4uWvxmTGuNHznLNaNUtbpn3iCXZ2mR0+TqA5rQIk1o75LimdU7ffnnQp/uzaTAE9D+sH0XwCDO2mHXM4fIL9KiHo+VYHrS3T6qDVanRMQ3Hip5a3lBDjSaX4lIGBwpMttZ8EjZh5WFbDBWB6cxrTZaJ/K7n2Fe1wa9u0OriU0W0MPrkdoKTaMlC2wB8QonBrUphpxZEyOoShFgCUhlezW8nE4Kc819mHiMJ2NOzQtHInhbzeoTnQDliSbQm42XXtc4lIlzCdVNfChZw/4KD6RWD+P6bXxI4hPCuiNw64dtu1bjsyrSbi++E5IFybcjcsgWWd4xXzP045z9joVSo1fef6JshIOc7W8yBc77lOR+u1OzYtM+vDoO9l4PDWmZppyeDvWmhcIIRo+WHfDNPOUVes4JIohZcQSK8hsDuPlEjPpbVq5bXDw8PrOkHr2LQabE0Q7Gqr3COmt+W0kjgRlRnqqvK6NVfPnDnTyAmVrfBst82GFVrRmVD8GZC5TYht8FYW0dGua/93G322aNqVaXWkShCeQYwbOyWQfD9eTqDPua593USuPq4rv1SC8K0W0aVg7JW8jp0hMvDlknDO76z3hl5dm7ZpXBl+m4DTuyGSdF9mvEjgaxqN2lcHBwdXJY3fKZ4uyVqR0Rk5C+czY4vKK53GTLDfomXPP3fInDlzat1gxmJavUfeKw09NAFFBBH5DL6FGNcLsWVRiG6Ejbvvump195yiswnWewHePu74vY7HjHWNnJo7VPx7Ta5OMWMxrQav1Wp7N5T1oK5Q0ykZ0/0Y/Eci61ZVV99LwwsKn3lHDqK3EfB2AAfH9c1oQGdW4LcOiMJtcWDHZlpNRsra20bWZ8YaN45E247BeJKI7lIW7vEK+d/oH3Jtx2izw9NPP12Y8YpXzM1x7kgiOpaBubr8Q5th0tec+bOeV4jtGKfYzeX7tU/D0DlTPRytBoBHwc0t9Y8Q0aNRJP84NDS0ulPMFStWlDxvyhzLsvZpsNrHAh3AYH3UUbHTmOnsR3cKN3/yxirecXCM3bQj87e6XKj+Suv3S88z/oWZl1sWrVSMVcRcgYUqM+o5siwFFJnZI8I0KF1Jm2YwsCsRJtxzaQeD+YfyenvezJkU6xRj7KbViW0odz7j5wAO6SDRrEtfKMBLwPWDPc9bFnc6PTGtJrmWeWpehvcR0d5xk87ipV6Bl/I5PqxQKCzuBdOemVaT9X1/R7Ls+5jxyl6Qz2KmUoG1YBzpec6iXrHrqWmbd9y1wWzbsX4J0KxeJZHFTYcCRFQB481C2L/pJaOem1aTX7euunvepnsz4/ZyKM3G1i9pGnWcMDBgL+w1k0RMq5MIAp6tONTG3bXXSWXxk1VAz2ETcLzr2r9KAjkx0+pk9CnWinM/I6I9k0guw0hCAVpVBx83lOAr8ERNqyVk5mkyiH4E4KAkJM0weqkAL1ENHDsw0JtZgtGYJ27aEeO6MqgvAPikXkqaxe6pAr8H28d7HsU+DzseayOmHTGuFQThlQy6YAIvBBlP3z79O93pV9acPlrR414nbcy0GxPTi8gt0NdSVaKn16pP3PgM5iuEcC6Ocy1Bu3IYN60m7PvhfiD+fjaz0O7wJdder4dl4vfGtbywG+apMK1OQL/2tYPwWwBtOiK9m8SyvrEqsChn2e8oFmnU6tyxoo0TLDWm3cizLMNzLWA+gPRU9EtyRNKFpRj4d8+1P9FuQY1eppE60+pky+XaXlaObgKwXy+Tz2KPqcBSVvTeUsnWq/VSdaXStCOzC3k/qF9A4Euzu26inlEgfF0U7U+mtTpPak27cZiq1erudWV9g4AjEh26yQjGeLJB9Q8MCvHrNKefetOO3HXJ98PTybKuAHinNAs6EbkxYz2YP/fCC0u+3O327iTynxCm3SgEMwtZrX8C3DwdO/uh1r1DGmgWWoku8jzvhe7DJRNhQpl2oyRS8iwmfb4ZdPXotNetSmYk20NhgH/Mii5utWR8e+F723pCmvbvz7v8ykYjuoQIp5s/z7W3AxVbdKKfEvMl453VFRteDwJNaNNuZt7dGxx9HIwz+m8LdiyjrgC6k8BXCuE8GEtEg0H6wrQb9SuXebqVr38IjA8BvINBXVMBrauiE3Bjo66+MjhY/FMqSMVAoq9Mu9kPNrsShCdZZJ0N5iNTd5pLDAM3TohFYFwnpf2dfjw4pS9Nu/mASilnKcq9i0CngfGa3vvFGMJSBt+KHL5dKhQeNcYiAeC+N+3mGpZrtb0shVNY0UlE2Heir+Mlwp9B9AMo3Oa6+QeIiBPwjHGISWXazdX2fd4RiI4lwlEMvBHAdOOjMQ4B/YwK5vssop/V6/zTwcHCH9POuRf8Jq1pXy5muVzb08rTPCg+CBbNBUNvvsz3QvQWYzIB+hDthxXUb4mt+4WwF2WnUsZUCbzFQZhQzZr1yGbM2Jsb2Nti3pMZc0C0GzN2IcKUGJPxwVgComcY/Azp9/+NxuJ6PXi004M0YuSWylDZnbaDYdGFo2u12g5K5WbUWW1nWTTFYgwo6OqIVgEKNpPKE6MGywqJEQJcY4ZPZK1pEK9GXa1Qylk+NEQdlwvtgHpfdPn/ixNifr4QLGYAAAAASUVORK5CYII=",width:230,height:230},left:"16.5%",top:"center"}]},legend:{type:"scroll",orient:"vertical",right:"0%",left:"65%",top:"center",itemWidth:14,itemHeight:14,data:t,textStyle:{rich:{name:{fontSize:14,fontWeight:400,width:200,height:35,padding:[0,0,0,60],color:e.charts.color},rate:{fontSize:15,fontWeight:500,height:35,width:40,padding:[0,0,0,30],color:e.charts.color}}}},series:[{type:"pie",radius:["82",y.state.themeConfig.themeConfig.isIsDark?"50":"102"],center:["32%","50%"],itemStyle:{color:function(P){return d[P.dataIndex]}},label:{show:!1},labelLine:{show:!1},data:f}]};u.homeChartTwo.setOption(X),e.myCharts.push(u.homeChartTwo)},C=()=>{V(()=>{for(let t=0;t{e.myCharts[t].resize()},t*1e3)})},O=()=>{window.addEventListener("resize",C)},A=()=>{G.iotManage.getOverviewData().then(t=>{const{overview:o,device:f,alarmLevel:g}=t;e.homeOne[0].num1=o.productTotal,e.homeOne[0].num2=`+${o.productAdded}`,e.homeOne[1].num1=o.deviceTotal,e.homeOne[1].num2=`\u79BB\u7EBF ${o.deviceOffline}`,e.homeOne[2].num1=o.msgTotal,e.homeOne[2].num2=`+${o.msgAdded}`,e.homeOne[3].num1=o.alarmTotal,e.homeOne[3].num2=`${o.alarmAdded}`,e.lineChartMsgTotalData=[],e.lineChartAlarmTotalData=[],e.lineChartXAxisData=Object.keys(f.msgTotal).map(d=>(e.lineChartMsgTotalData.push(f.msgTotal[d]),e.lineChartAlarmTotalData.push(f.alarmTotal[d]),`${d}\u6708`)),e.pieChartLegend=[],g&&g.map(d=>{e.pieChartLegend.push(d.name),e.pieChartData.push(d.ratio)})})},E=()=>{G.iotManage.getAlarmList(e.tableData.param).then(t=>{e.tableData.data=t.list,e.tableData.total=t.Total})},m=t=>{D.value.openDialog(t)},B=t=>{l.value.openDialog(t)},L=()=>{w.push({path:"/monitor/notice"})};return Q(()=>{O(),A(),E()}),J(()=>{C()}),Y(()=>y.state.tagsViewRoutes.isTagsViewCurrenFull,()=>{C()}),Y(()=>y.state.themeConfig.themeConfig.isIsDark,t=>{V(()=>{e.charts.theme=t?"dark":"",e.charts.bgColor=t?"transparent":"",e.charts.color=t?"#dadada":"#303133",setTimeout(()=>{b()},500),setTimeout(()=>{c()},700)})},{deep:!0,immediate:!0}),{homeLineRef:M,homePieRef:W,homeBarRef:K,detailRef:D,editDicRef:l,toMore:L,onOpenEditDic:B,getAlarmList:E,onOpenDetailDic:m,getOverviewData:A,...k(e)}}}),ie=l=>($("data-v-233de769"),l=l(),ee(),l),ne={class:"home-container"},se={class:"home-card-item flex"},ue={class:"flex-auto"},ce={class:"font30"},me={class:"mt10"},he={class:"home-card-item"},de={style:{height:"100%"},ref:"homeLineRef"},pe={class:"home-card-item"},fe={style:{height:"100%"},ref:"homePieRef"},ge={class:"home-card-item",style:{height:"auto"}},we={class:"home-card-item-title"},Ce=ie(()=>r("span",null,"\u544A\u8B66\u4FE1\u606F\u5217\u8868",-1)),ve=v("\u66F4\u591A\u4FE1\u606F"),De={key:0},ye={key:1},be=v("\u5DF2\u5904\u7406"),Fe=v("\u672A\u5904\u7406"),Ae=v("\u8BE6\u60C5"),Ee=v("\u5904\u7406");function Be(l,D,M,W,K,y){const w=p("el-col"),e=p("el-row"),b=p("el-button"),c=p("el-table-column"),C=p("el-tag"),O=p("el-table"),A=p("EditDic"),E=p("DetailDic"),m=R("col"),B=R("auth"),L=R("loading");return n(),z("div",ne,[i(e,{gutter:15,class:"home-card-one mb15"},{default:a(()=>[(n(!0),z(q,null,U(l.homeOne,(t,o)=>(n(),h(w,{xs:24,sm:12,md:12,lg:6,xl:6,key:o,class:S({"home-media home-media-lg":o>1,"home-media-sm":o===1})},{default:a(()=>[r("div",se,[r("div",{class:S(["flex-margin flex w100",` home-one-animation${o}`])},[r("div",ue,[r("span",ce,T(t.num1),1),r("span",{class:"ml5 font16",style:x({color:t.color1})},T(t.num2),5),r("div",me,T(t.num3),1)]),r("div",{class:"home-card-item-icon flex",style:x({background:`var(${t.color2})`})},[r("i",{class:S(["iconfont flex-margin font32",t.num4]),style:x({color:`var(${t.color3})`})},null,6)],4)],2)])]),_:2},1032,["class"]))),128))]),_:1}),i(e,{gutter:15,class:"home-card-two mb15"},{default:a(()=>[i(w,{xs:24,sm:14,md:14,lg:16,xl:16},{default:a(()=>[r("div",he,[r("div",de,null,512)])]),_:1}),i(w,{xs:24,sm:10,md:10,lg:8,xl:8,class:"home-media"},{default:a(()=>[r("div",pe,[r("div",fe,null,512)])]),_:1})]),_:1}),i(e,{gutter:15,class:"home-card-three"},{default:a(()=>[i(w,{xs:24,sm:24,md:24,lg:24,xl:24},{default:a(()=>[r("div",ge,[r("div",we,[Ce,i(b,{size:"small",text:"",type:"primary",onClick:D[0]||(D[0]=t=>l.toMore())},{default:a(()=>[ve]),_:1})]),s((n(),h(O,{data:l.tableData.data,style:{width:"100%"}},{default:a(()=>[s(i(c,{label:"ID",align:"center",prop:"id",width:"60"},null,512),[[m,"ID"]]),s((n(),h(c,{label:"\u544A\u8B66\u7C7B\u578B",prop:"type","show-overflow-tooltip":!0},{default:a(t=>[t.row.type==1?(n(),z("span",De,"\u89C4\u5219\u544A\u8B66")):(n(),z("span",ye,"\u8BBE\u5907\u81EA\u4E3B\u544A\u8B66"))]),_:1})),[[m,"type"]]),s(i(c,{label:"\u89C4\u5219\u540D\u79F0",prop:"ruleName","show-overflow-tooltip":!0},null,512),[[m,"ruleName"]]),s((n(),h(c,{label:"\u89C4\u5219\u7EA7\u522B",prop:"alarmLevel","show-overflow-tooltip":!0},{default:a(t=>[v(T(t.row.alarmLevel.name),1)]),_:1})),[[m,"alarmLevel"]]),s(i(c,{label:"\u4EA7\u54C1\u6807\u8BC6",prop:"productKey","show-overflow-tooltip":!0},null,512),[[m,"productKey"]]),s(i(c,{label:"\u8BBE\u5907\u6807\u8BC6",prop:"deviceKey","show-overflow-tooltip":!0},null,512),[[m,"deviceKey"]]),s((n(),h(c,{prop:"status",label:"\u544A\u8B66\u72B6\u6001",width:"100",align:"center"},{default:a(t=>[t.row.status?(n(),h(C,{key:0,type:"success",size:"small"},{default:a(()=>[be]),_:1})):(n(),h(C,{key:1,type:"info",size:"small"},{default:a(()=>[Fe]),_:1}))]),_:1})),[[m,"status"]]),s(i(c,{prop:"createdAt",label:"\u544A\u8B66\u65F6\u95F4",align:"center",width:"180"},null,512),[[m,"createdAt"]]),s((n(),h(c,{label:"\u64CD\u4F5C",width:"150",align:"center",fixed:"right"},{default:a(t=>[s((n(),h(b,{size:"small",text:"",type:"primary",onClick:o=>l.onOpenDetailDic(t.row)},{default:a(()=>[Ae]),_:2},1032,["onClick"])),[[B,"detail"]]),t.row.status==0?s((n(),h(b,{key:0,size:"small",text:"",type:"warning",onClick:o=>l.onOpenEditDic(t.row)},{default:a(()=>[Ee]),_:2},1032,["onClick"])),[[B,"edit"]]):_("",!0)]),_:1})),[[m,"handle"]])]),_:1},8,["data"])),[[L,l.loading]])])]),_:1})]),_:1}),i(A,{ref:"editDicRef",onDataList:l.getAlarmList},null,8,["onDataList"]),i(E,{ref:"detailRef",onDataList:l.getAlarmList},null,8,["onDataList"])])}var xe=te(re,[["render",Be],["__scopeId","data-v-233de769"]]);export{xe as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/dataList.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/dataList.1701184304695.js new file mode 100644 index 0000000..3983f81 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/dataList.1701184304695.js @@ -0,0 +1 @@ +import{L as K,h as E,a2 as O,k as M,ab as q,a as P,_ as t,T as l,aD as Q,ai as o,as as k,o as s,b as Y,aa as V,U as i,S as p,V as j,Y as _}from"./vue.1701184304695.js";import G from"./editDicData.1701184304695.js";import{_ as H,b as S,E as z,h as I}from"./index.1701184304695.js";const J=K({name:"apiV1SystemDictDataList",components:{EditDic:G},setup(){const e=Q(),n=E(),h=E(),F=E(),d=O({ids:[],tableData:{data:[],total:0,loading:!1,param:{pageNum:1,pageSize:10,dictLabel:"",dictType:"",status:-1}}}),v=()=>{r()},r=()=>{S.dict.getDataList(d.tableData.param).then(a=>{d.tableData.data=a.list,d.tableData.total=a.total})},f=()=>{h.value.openDialog()},g=a=>{h.value.openDialog(a)},C=a=>{let b="\u4F60\u786E\u5B9A\u8981\u5220\u9664\u6240\u9009\u6570\u636E\uFF1F",D=[];if(a?(b=`\u6B64\u64CD\u4F5C\u5C06\u6C38\u4E45\u5220\u9664\u7528\u6237\uFF1A\u201C${a.dictLabel}\u201D\uFF0C\u662F\u5426\u7EE7\u7EED?`,D=[a.dictCode]):D=d.ids,D.length===0){z.error("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u6570\u636E\u3002");return}I.confirm(b,"\u63D0\u793A",{confirmButtonText:"\u786E\u8BA4",cancelButtonText:"\u53D6\u6D88",type:"warning"}).then(()=>{S.dict.deleteData(D).then(()=>{z.success("\u5220\u9664\u6210\u529F"),r()})}).catch(()=>{})};return M(()=>{const a=e.params&&e.params.dictType;d.tableData.param.dictType=a,v()}),{addDicRef:n,editDicRef:h,queryRef:F,onOpenAddDic:f,onOpenEditDic:g,onRowDel:C,dataList:r,resetQuery:a=>{!a||(a.resetFields(),r())},handleSelectionChange:a=>{d.ids=a.map(b=>b.dictCode)},...q(d)}}}),W={class:"system-dic-container"},X={class:"system-user-search mb15"},Z=_(" \u67E5\u8BE2 "),x=_(" \u65B0\u589E\u5B57\u5178 "),ee=_(" \u5220\u9664\u5B57\u5178 "),te=_("\u542F\u7528"),ae=_("\u7981\u7528"),le=_("\u4FEE\u6539"),oe=_("\u5220\u9664");function ue(e,n,h,F,d,v){const r=o("el-input"),f=o("el-form-item"),g=o("el-option"),C=o("el-select"),w=o("ele-Search"),y=o("el-icon"),a=o("el-button"),b=o("ele-FolderAdd"),D=o("ele-Delete"),T=o("el-form"),c=o("el-table-column"),L=o("el-tag"),R=o("el-table"),A=o("pagination"),$=o("el-card"),N=o("EditDic"),B=k("auth"),m=k("col");return s(),P("div",W,[t($,{shadow:"hover"},{default:l(()=>[Y("div",X,[t(T,{model:e.tableData.param,ref:"queryRef",inline:!0,"label-width":"68px"},{default:l(()=>[t(f,{label:"\u5B57\u5178\u7C7B\u578B",prop:"dictType"},{default:l(()=>[t(r,{modelValue:e.tableData.param.dictType,"onUpdate:modelValue":n[0]||(n[0]=u=>e.tableData.param.dictType=u),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",clearable:"",size:"default",onKeyup:V(e.dataList,["enter","native"])},null,8,["modelValue","onKeyup"])]),_:1}),t(f,{label:"\u5B57\u5178\u6807\u7B7E",prop:"dictLabel"},{default:l(()=>[t(r,{modelValue:e.tableData.param.dictLabel,"onUpdate:modelValue":n[1]||(n[1]=u=>e.tableData.param.dictLabel=u),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u6807\u7B7E",clearable:"",size:"default",onKeyup:V(e.dataList,["enter","native"])},null,8,["modelValue","onKeyup"])]),_:1}),t(f,{label:"\u72B6\u6001",prop:"status",style:{width:"200px"}},{default:l(()=>[t(C,{modelValue:e.tableData.param.status,"onUpdate:modelValue":n[2]||(n[2]=u=>e.tableData.param.status=u),placeholder:"\u5B57\u5178\u72B6\u6001",size:"default",style:{width:"240px"}},{default:l(()=>[t(g,{label:"\u5168\u90E8",value:-1}),t(g,{label:"\u542F\u7528",value:1}),t(g,{label:"\u7981\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),t(f,null,{default:l(()=>[t(a,{size:"default",type:"primary",class:"ml10",onClick:e.dataList},{default:l(()=>[t(y,null,{default:l(()=>[t(w)]),_:1}),Z]),_:1},8,["onClick"]),i((s(),p(a,{size:"default",type:"success",class:"ml10",onClick:e.onOpenAddDic},{default:l(()=>[t(y,null,{default:l(()=>[t(b)]),_:1}),x]),_:1},8,["onClick"])),[[B,"add"]]),i((s(),p(a,{size:"default",type:"danger",class:"ml10",onClick:n[3]||(n[3]=u=>e.onRowDel())},{default:l(()=>[t(y,null,{default:l(()=>[t(D)]),_:1}),ee]),_:1})),[[B,"del"]])]),_:1})]),_:1},8,["model"])]),t(R,{data:e.tableData.data,style:{width:"100%"},onSelectionChange:e.handleSelectionChange},{default:l(()=>[t(c,{type:"selection",width:"55",align:"center"}),i(t(c,{label:"\u5B57\u5178\u7F16\u7801",width:"90",align:"center",prop:"dictCode"},null,512),[[m,"dictCode"]]),i(t(c,{label:"\u5B57\u5178\u6807\u7B7E",align:"center",prop:"dictLabel"},null,512),[[m,"dictLabel"]]),i(t(c,{label:"\u5B57\u5178\u952E\u503C",align:"center",prop:"dictValue"},null,512),[[m,"dictValue"]]),i(t(c,{label:"\u5B57\u5178\u6392\u5E8F",width:"100",align:"center",prop:"dictSort"},null,512),[[m,"dictSort"]]),i(t(c,{label:"\u5907\u6CE8",align:"center",prop:"remark","show-overflow-tooltip":!0},null,512),[[m,"remark"]]),i((s(),p(c,{prop:"status",label:"\u5B57\u5178\u72B6\u6001",width:"120",align:"center"},{default:l(u=>[u.row.status?(s(),p(L,{key:0,type:"success",size:"small"},{default:l(()=>[te]),_:1})):(s(),p(L,{key:1,type:"info",size:"small"},{default:l(()=>[ae]),_:1}))]),_:1})),[[m,"status"]]),i((s(),p(c,{label:"\u64CD\u4F5C",width:"100",align:"center"},{default:l(u=>[i((s(),p(a,{size:"small",text:"",type:"warning",onClick:U=>e.onOpenEditDic(u.row)},{default:l(()=>[le]),_:2},1032,["onClick"])),[[B,"edit"]]),i((s(),p(a,{size:"small",text:"",type:"danger",onClick:U=>e.onRowDel(u.row)},{default:l(()=>[oe]),_:2},1032,["onClick"])),[[B,"del"]])]),_:1})),[[m,"handle"]])]),_:1},8,["data","onSelectionChange"]),i(t(A,{total:e.tableData.total,page:e.tableData.param.pageNum,"onUpdate:page":n[4]||(n[4]=u=>e.tableData.param.pageNum=u),limit:e.tableData.param.pageSize,"onUpdate:limit":n[5]||(n[5]=u=>e.tableData.param.pageSize=u),onPagination:e.dataList},null,8,["total","page","limit","onPagination"]),[[j,e.tableData.total>0]])]),_:1}),t(N,{ref:"editDicRef",onDataList:e.dataList,"dict-type":e.tableData.param.dictType},null,8,["onDataList","dict-type"])])}var de=H(J,[["render",ue]]);export{de as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/dataParse.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/dataParse.1701184304695.css new file mode 100644 index 0000000..4edc535 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/dataParse.1701184304695.css @@ -0,0 +1 @@ +[data-v-fa0cf300] .CodeMirror{height:calc(100vh - 360px)}.input[data-v-fa0cf300] .el-textarea__inner,.output[data-v-fa0cf300] .el-textarea__inner{height:calc(50vh - 190px)}.output[data-v-fa0cf300]{margin-top:20px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/dataParse.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/dataParse.1701184304695.js new file mode 100644 index 0000000..b4b2325 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/dataParse.1701184304695.js @@ -0,0 +1 @@ +import{_ as _sfc_main$1}from"./index.170118430469524.js";import{a as api}from"./index.170118430469519.js";import{L as defineComponent,h as ref,k as onMounted,a as createElementBlock,b as createBaseVNode,_ as createVNode,T as withCtx,F as Fragment,aD as useRoute,ai as resolveComponent,o as openBlock,Y as createTextVNode}from"./vue.1701184304695.js";import{_ as _export_sfc,E as ElMessage}from"./index.1701184304695.js";var dataParse_vue_vue_type_style_index_0_scoped_true_lang="";const _hoisted_1={class:"flex"},_hoisted_2={class:"mock",style:{width:"300px","margin-left":"20px"}},_hoisted_3=createTextVNode("\u4FDD\u5B58\u811A\u672C"),_hoisted_4=createTextVNode("\u8C03\u8BD5"),_sfc_main=defineComponent({__name:"dataParse",props:{script:String},emits:["updateScript"],setup(__props,{emit}){const props=__props,route=useRoute(),inputData=ref(""),outputData=ref(""),content=ref(""),mirrorRef=ref();onMounted(()=>{content.value=props.script});function saveCode(){const funStr=mirrorRef.value.getValue();if(funStr==="")return toSave(funStr);try{eval("("+funStr+")"),toSave(funStr)}catch(e){ElMessage.error("\u8BED\u6CD5\u6821\u9A8C\u672A\u901A\u8FC7")}}function toSave(e){api.product.script({id:route.params.id,scriptInfo:e}).then(()=>{ElMessage.success("\u4FDD\u5B58\u6210\u529F"),emit("updateScript",e)})}function mock(){if(!inputData.value)return ElMessage.error("\u8BF7\u8F93\u5165\u53C2\u6570");const funStr=mirrorRef.value.getValue();if(funStr==="")return ElMessage.error("\u8BF7\u5148\u8F93\u5165\u53EF\u6267\u884C\u811A\u672C");try{const fun=eval("("+funStr+")");try{const e=fun(JSON.parse(inputData.value));outputData.value=typeof e=="object"?JSON.stringify(e,null,2):e}catch{const e=fun(inputData.value);outputData.value=typeof e=="object"?JSON.stringify(e,null,2):e}}catch(e){ElMessage.error("\u6570\u636E\u89E3\u6790\u811A\u672C\u8BED\u6CD5\u6821\u9A8C\u672A\u901A\u8FC7\u6216\u53C2\u6570\u7C7B\u578B\u6709\u8BEF")}}return(e,t)=>{const a=resolveComponent("el-input"),o=resolveComponent("el-button");return openBlock(),createElementBlock(Fragment,null,[createBaseVNode("div",_hoisted_1,[createVNode(_sfc_main$1,{class:"params flex1",ref_key:"mirrorRef",ref:mirrorRef,mode:"",content:content.value},null,8,["content"]),createBaseVNode("div",_hoisted_2,[createVNode(a,{class:"input",modelValue:inputData.value,"onUpdate:modelValue":t[0]||(t[0]=u=>inputData.value=u),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5165\u53C2\uFF0C\u4EE5\u5B57\u7B26\u4E32\u7684\u65B9\u5F0F\uFF0C\u5982\u679C\u662F\u5BF9\u8C61\u5B57\u7B26\u4E32\u4F1A\u5728\u6267\u884C\u65F6\u81EA\u52A8\u8F6C\u6362\u4E3A\u5BF9\u8C61\u518D\u6267\u884C"},null,8,["modelValue"]),createVNode(a,{class:"output",modelValue:outputData.value,"onUpdate:modelValue":t[1]||(t[1]=u=>outputData.value=u),type:"textarea",readonly:"",placeholder:"\u6B64\u5904\u663E\u793A\u6267\u884C\u7ED3\u679C"},null,8,["modelValue"])])]),createVNode(o,{type:"primary",style:{"margin-top":"20px"},onClick:saveCode},{default:withCtx(()=>[_hoisted_3]),_:1}),createVNode(o,{type:"primary",style:{"margin-top":"20px"},onClick:mock},{default:withCtx(()=>[_hoisted_4]),_:1})],64)}}});var dataParse=_export_sfc(_sfc_main,[["__scopeId","data-v-fa0cf300"]]);export{dataParse as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/defaults.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/defaults.1701184304695.js new file mode 100644 index 0000000..079cb96 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/defaults.1701184304695.js @@ -0,0 +1 @@ +import{L as y,aD as H,l as k,i as x,ai as a,o as t,S as s,T as r,_ as o,X as u,O as d,j as C}from"./vue.1701184304695.js";import{_ as $,u as h}from"./index.1701184304695.js";import{A as F}from"./aside.1701184304695.js";import{H as w,M as D}from"./main.1701184304695.js";import"./parent.1701184304695.js";const S=y({name:"layoutDefaults",components:{Aside:F,Header:w,Main:D},setup(){const{proxy:e}=C(),n=h(),c=H(),l=k(()=>n.state.themeConfig.themeConfig.isFixedHeader);return x(()=>c.path,()=>{e.$refs.layoutDefaultsScrollbarRef.wrap$&&(e.$refs.layoutDefaultsScrollbarRef.wrap$.scrollTop=0)}),{isFixedHeader:l}}});function g(e,n,c,l,A,M){const f=a("Aside"),i=a("Header"),m=a("Main"),_=a("el-scrollbar"),p=a("el-container"),b=a("el-backtop");return t(),s(p,{class:"layout-container"},{default:r(()=>[o(f),o(p,{class:d(["flex-center",{"layout-backtop":!e.isFixedHeader}])},{default:r(()=>[e.isFixedHeader?(t(),s(i,{key:0})):u("",!0),o(_,{ref:"layoutDefaultsScrollbarRef",class:d({"layout-backtop":e.isFixedHeader})},{default:r(()=>[e.isFixedHeader?u("",!0):(t(),s(i,{key:0})),o(m)]),_:1},8,["class"])]),_:1},8,["class"]),o(b,{target:".layout-backtop .el-scrollbar__wrap"})]),_:1})}var V=$(S,[["render",g]]);export{V as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.1701184304695.css new file mode 100644 index 0000000..d58e334 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.1701184304695.css @@ -0,0 +1 @@ +.content{background:#fff;width:100%;padding:20px}.content-box{background:#fff;width:100%;padding:20px;margin-top:20px}.cont_box{display:flex}.cont_box .title{font-size:24px}.cont_box .pro-status{line-height:40px;margin-left:30px}.cont_box .pro-status .on{background:#52c41a}.cont_box .pro-status .off{background:#c41a1a}.cont_box .pro-status span{position:relative;top:-1px;display:inline-block;width:6px;height:6px;vertical-align:middle;border-radius:50%;margin-right:5px}.cont_box .pro-option{line-height:40px;margin-left:10px;color:#1890ff;cursor:pointer}.content-box .pro-box{display:flex;padding:10px;justify-content:space-between}.content-box .pro-box .protitle{font-size:18px;font-weight:700;line-height:35px}.content-box .pro-box .buttonedit{border:0px;color:#1890ff}table{border-collapse:collapse;text-indent:initial;border-spacing:2px}tbody{box-sizing:border-box;display:table-row-group;vertical-align:middle;border-color:inherit}tr{display:table-row;vertical-align:inherit;border-color:inherit}.ant-descriptions-view{width:100%;overflow:hidden;border-radius:4px}.ant-descriptions-view{border:1px solid #e8e8e8}.ant-descriptions-view table{width:100%;table-layout:fixed}.ant-descriptions-view>table{table-layout:auto}.ant-descriptions-row{border-bottom:1px solid #e8e8e8}.ant-descriptions-item-label{color:#000000d9;font-weight:400;font-size:14px;line-height:1.5}.ant-descriptions-item-label{padding:16px 24px;border-right:1px solid #e8e8e8}.ant-descriptions-item-label{background-color:#fafafa}.ant-descriptions-item-content{padding:16px 24px;border-right:1px solid #e8e8e8;display:table-cell;color:#000000a6;font-size:14px;line-height:1.5}.wu-box{border:#e8e8e8 solid 1px;padding:20px;width:100%}.wu-box .wu-title{display:flex;flex-direction:row;justify-content:space-between;padding:20px;border-bottom:#e8e8e8 1px solid}.wu-box .wu-title .title{font-size:18px}.ant-card{box-sizing:border-box;margin:10px;width:23.2%;font-size:14px;font-variant:tabular-nums;border:1px solid var(--next-border-color-light);line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;border-radius:2px;transition:all .3s}.ant-card-body{padding:24px;zoom:1}.cardflex{display:flex;justify-content:space-between}.statusname{font-size:30px;margin-top:10px;margin-bottom:15px}.comtest{margin-top:20px;height:30px;line-height:30px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.1701184304695.js new file mode 100644 index 0000000..22640db --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.1701184304695.js @@ -0,0 +1 @@ +import{a as h}from"./index.17011843046958.js";/* empty css */import{v as C}from"./vue3cron.1701184304695.js";import{_ as b}from"./index.1701184304695.js";import{L as g,h as F,a2 as w,ab as E,a as c,_ as a,T as o,ai as s,o as _,b as k,Y as n,Z as r}from"./vue.1701184304695.js";const A=g({name:"Edit",components:{vue3cron:C},setup(e,{emit:i}){const f=F(null),l=w({isShowDialog:!1,product_name:"",devcie_name:"",alarmLevel_name:"",ruleForm:{},jsonData:{}}),p=m=>{h.log.detail(m.id).then(u=>{l.ruleForm=u.data,l.jsonData=JSON.parse(u.data.data),l.product_name=u.data.product.name,l.devcie_name=u.data.devcie.name,l.alarmLevel_name=u.data.alarmLevel.name}),l.isShowDialog=!0},d=()=>{l.isShowDialog=!1};return{openDialog:p,closeDialog:d,onCancel:()=>{d()},formRef:f,...E(l)}}}),V={class:"system-edit-dic-container"},y={key:0},S={key:1},L={class:"dialog-footer"},N=n("\u53D6 \u6D88");function j(e,i,f,l,p,d){const t=s("el-form-item"),m=s("JsonViewer"),u=s("el-form"),D=s("el-button"),B=s("el-dialog");return _(),c("div",V,[a(B,{title:"\u65E5\u5FD7\u8BE6\u60C5",modelValue:e.isShowDialog,"onUpdate:modelValue":i[0]||(i[0]=v=>e.isShowDialog=v),width:"769px"},{footer:o(()=>[k("span",L,[a(D,{onClick:e.onCancel,size:"default"},{default:o(()=>[N]),_:1},8,["onClick"])])]),default:o(()=>[a(u,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"110px"},{default:o(()=>[a(t,{label:"\u89C4\u5219\u540D\u79F0"},{default:o(()=>[n(r(e.ruleForm.ruleName),1)]),_:1}),a(t,{label:"\u544A\u8B66\u7C7B\u578B"},{default:o(()=>[e.ruleForm.type==1?(_(),c("span",y,"\u89C4\u5219\u544A\u8B66")):(_(),c("span",S,"\u8BBE\u5907\u81EA\u4E3B\u544A\u8B66"))]),_:1}),a(t,{label:"\u4EA7\u54C1\u540D\u79F0"},{default:o(()=>[n(r(e.product_name),1)]),_:1}),a(t,{label:"\u8BBE\u5907\u540D\u79F0"},{default:o(()=>[n(r(e.devcie_name),1)]),_:1}),a(t,{label:"\u544A\u8B66\u7EA7\u522B"},{default:o(()=>[n(r(e.alarmLevel_name),1)]),_:1}),a(t,{label:"\u544A\u8B66\u65F6\u95F4"},{default:o(()=>[n(r(e.ruleForm.createdAt),1)]),_:1}),a(t,{label:"\u544A\u8B66\u6570\u636E"},{default:o(()=>[a(m,{style:{width:"100%"},value:e.jsonData,boxed:"",sort:"",theme:"jv-dark",onClick:e.onKeyclick},null,8,["value","onClick"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["modelValue"])])}var K=b(A,[["render",j]]);export{K as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046952.css b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046952.css new file mode 100644 index 0000000..b5ee2a9 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046952.css @@ -0,0 +1 @@ +.content[data-v-4f4d1e27]{background:#fff;width:100%;padding:20px}.content-box[data-v-4f4d1e27]{background:#fff;width:100%;padding:20px;margin-top:20px}.cont_box[data-v-4f4d1e27]{display:flex}.cont_box .title[data-v-4f4d1e27]{font-size:24px}.cont_box .pro-status[data-v-4f4d1e27]{line-height:40px;margin-left:30px}.cont_box .pro-status .on[data-v-4f4d1e27]{background:#52c41a}.cont_box .pro-status .off[data-v-4f4d1e27]{background:#c41a1a}.cont_box .pro-status span[data-v-4f4d1e27]{position:relative;top:-1px;display:inline-block;width:6px;height:6px;vertical-align:middle;border-radius:50%;margin-right:5px}.cont_box .pro-option[data-v-4f4d1e27]{line-height:40px;margin-left:10px;color:#1890ff;cursor:pointer}.content-box .pro-box[data-v-4f4d1e27]{display:flex;padding:10px}.content-box .pro-box .protitle[data-v-4f4d1e27]{font-size:18px;font-weight:700;line-height:35px}.content-box .pro-box .buttonedit[data-v-4f4d1e27]{border:0px;color:#1890ff}table[data-v-4f4d1e27]{border-collapse:collapse;text-indent:initial;border-spacing:2px}tbody[data-v-4f4d1e27]{box-sizing:border-box;display:table-row-group;vertical-align:middle;border-color:inherit}tr[data-v-4f4d1e27]{display:table-row;vertical-align:inherit;border-color:inherit}.ant-descriptions-view[data-v-4f4d1e27]{width:100%;overflow:hidden;border-radius:4px}.ant-descriptions-view[data-v-4f4d1e27]{border:1px solid #e8e8e8}.ant-descriptions-view table[data-v-4f4d1e27]{width:100%;table-layout:fixed}.ant-descriptions-view>table[data-v-4f4d1e27]{table-layout:auto}.ant-descriptions-row[data-v-4f4d1e27]{border-bottom:1px solid #e8e8e8}.ant-descriptions-item-label[data-v-4f4d1e27]{color:#000000d9;font-weight:400;font-size:14px;line-height:1.5}.ant-descriptions-item-label[data-v-4f4d1e27]{padding:16px 24px;border-right:1px solid #e8e8e8}.ant-descriptions-item-label[data-v-4f4d1e27]{background-color:#fafafa}.ant-descriptions-item-content[data-v-4f4d1e27]{padding:16px 24px;border-right:1px solid #e8e8e8;display:table-cell;color:#000000a6;font-size:14px;line-height:1.5}.wu-box[data-v-4f4d1e27]{border:#e8e8e8 solid 1px;padding:20px;width:100%}.wu-box .wu-title[data-v-4f4d1e27]{display:flex;flex-direction:row;justify-content:space-between;padding:20px;border-bottom:#e8e8e8 1px solid}.wu-box .wu-title .title[data-v-4f4d1e27]{font-size:18px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046952.js b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046952.js new file mode 100644 index 0000000..d950049 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046952.js @@ -0,0 +1 @@ +import{L as fe,h as B,a2 as ve,k as be,ab as ge,a as A,b as l,Z as _,O as De,Y as d,_ as t,T as o,aD as ye,ai as r,as as de,o as p,X as g,F as re,a8 as pe,S as m,U as k,V as ie}from"./vue.1701184304695.js";import Ee from"./function.1701184304695.js";/* empty css */import he from"./edit.17011843046956.js";import Fe from"./editAttr.1701184304695.js";import Be from"./editFun.1701184304695.js";import Ce from"./editEvent.1701184304695.js";import we from"./editTab.1701184304695.js";import{S as ke,_ as Te}from"./subDevice.1701184304695.js";import Ae from"./list.17011843046952.js";import ze from"./setAttr.1701184304695.js";import Re from"./subDeviceMutipleBind.1701184304695.js";import{a as f}from"./index.170118430469519.js";import{_ as Se,E as h,h as se}from"./index.1701184304695.js";import"./tag.1701184304695.js";import"./editOption.1701184304695.js";import"./editPro.1701184304695.js";import"./index.170118430469522.js";const $e=fe({name:"deviceEditPro",components:{SubDeviceMutipleBind:Re,SubDevice:ke,EditDic:he,EditAttr:Fe,EditFun:Be,EditEvent:Ce,EditTab:we,devantd:Te,ListDic:Ae,functionCom:Ee,setAttr:ze},setup(e,s){const J=ye(),I=B(),q=B(),K=B(),C=B(),F=B(),L=B(),O=B(),E=B(),c=B(),n=ve({deviceKeyList:[],areaData:[],isShowDialog:!1,dialogVisible:!1,logTypeData:[],jsonData:"",activeName:"3",activetab:"attr",detail:{},prodetail:[],product_id:0,developer_status:0,deviceTableData:{data:[],total:0,loading:!1,param:{pageNum:1,gatewayKey:"",pageSize:10,dateRange:[]}},tableData:{data:[],total:0,loading:!1,param:{pageNum:1,productId:0,pageSize:10,status:"",dateRange:[]}},logtableData:{data:[],total:0,loading:!1,param:{pageNum:1,productId:0,pageSize:10,status:"",dateRange:[]}}});be(()=>{const i=J.params&&J.params.id;f.instance.detail(i).then(b=>{n.detail=b.data,n.developer_status=b.data.status,n.tableData.param.productId=b.data.product.id,n.product_id=b.data.product.id,a(),f.product.detail(b.data.product.id).then(y=>{n.prodetail=y.data}),f.model.property(n.tableData.param).then(y=>{n.tableData.data=y.Data,n.tableData.total=y.Total}),D()})});const u=()=>{let i="\u662F\u5426\u8FDB\u884C\u6279\u91CF\u89E3\u7ED1\uFF1F";if(n.deviceKeyList.length===0){h.error("\u8BF7\u9009\u62E9\u8981\u6279\u91CF\u89E3\u7ED1\u7684\u6570\u636E\u3002");return}se.confirm(i,"\u63D0\u793A",{confirmButtonText:"\u786E\u8BA4",cancelButtonText:"\u53D6\u6D88",type:"warning"}).then(()=>{f.device.mutipleUnbind({gatewayKey:n.deviceTableData.param.gatewayKey,subKeys:n.deviceKeyList}).then(()=>{h.success("\u89E3\u7ED1\u6210\u529F"),D()})}).catch(()=>{})},D=()=>{n.deviceTableData.param.gatewayKey=n.detail.key},w=i=>{n.deviceKeyList=i.map(b=>b.key)},P=i=>{E.value.openDialog(i)},N=i=>{console.log(i),se.confirm(`\u6B64\u64CD\u4F5C\u5C06\u6C38\u4E45\u5220\u9664\u5206\u7C7B\uFF1A${i.name}, \u662F\u5426\u7EE7\u7EED?`,"\u63D0\u793A",{confirmButtonText:"\u5220\u9664",cancelButtonText:"\u53D6\u6D88",type:"warning"}).then(()=>{f.product.deleteSubDevice(i.id).then(()=>{h.success("\u5220\u9664\u6210\u529F"),D()})})},Q=i=>{n.jsonData=JSON.parse(i.content),n.dialogVisible=!0},X=()=>{c.value.openDialog(n.deviceTableData.param.gatewayKey)},Z=i=>{K.value.openDialog(i,n.product_id)},U=i=>{C.value.openDialog(i,n.product_id)},G=i=>{L.value.openDialog(i,n.product_id)},H=i=>{O.value.openDialog(i,n.product_id)},W=()=>{K.value.openDialog({product_id:n.product_id,id:0,accessMode:0})},x=()=>{C.value.openDialog({product_id:n.product_id,id:0})},ee=()=>{L.value.openDialog({product_id:n.product_id,id:0,level:0})},te=()=>{O.value.openDialog({product_id:n.product_id,id:0,accessMode:0})},ae=i=>{F.value.openDialog(i,n.detail.id)},oe=i=>{I.value.openDialog(i)},le=(i,b)=>{let y="\u6B64\u64CD\u4F5C\u5C06\u6C38\u4E45\u5220\u9664\u8BE5\u6570\u636E\u5417\uFF1F\uFF0C\u662F\u5426\u7EE7\u7EED?";if(i.length===0){h.error("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u6570\u636E\u3002");return}se.confirm(y,"\u63D0\u793A",{confirmButtonText:"\u786E\u8BA4",cancelButtonText:"\u53D6\u6D88",type:"warning"}).then(()=>{b=="attr"&&f.model.propertydel(n.product_id,i).then(()=>{h.success("\u5220\u9664\u6210\u529F"),z()}),b=="fun"&&f.model.functiondel(n.product_id,i).then(()=>{h.success("\u5220\u9664\u6210\u529F"),R()}),b=="event"&&f.model.eventdel(n.product_id,i).then(()=>{h.success("\u5220\u9664\u6210\u529F"),S()}),b=="tab"&&f.model.tagdel(n.product_id,i).then(()=>{h.success("\u5220\u9664\u6210\u529F"),tagdel()})}).catch(()=>{})},j=()=>{switch(n.activetab){case"attr":z();break;case"fun":R();break;case"event":S();break;case"tab":M();break}},z=()=>{f.model.property(n.tableData.param).then(i=>{n.tableData.data=i.Data,n.tableData.total=i.Total})},R=()=>{f.model.function(n.tableData.param).then(i=>{n.tableData.data=i.Data,n.tableData.total=i.Total})},S=()=>{f.model.event(n.tableData.param).then(i=>{n.tableData.data=i.Data,n.tableData.total=i.Total})},M=()=>{f.model.tag(n.tableData.param).then(i=>{n.tableData.data=i.Data,n.tableData.total=i.Total})},$=i=>{switch(n.activetab=i.props.name,i.props.name){case"attr":z();break;case"fun":R();break;case"event":S();break;case"tab":M();break}},ne=(i,b)=>{i.props.name==4?(Y(),v()):i.props.name==2?j():i.props.name==3&&a()},a=()=>{f.instance.getrun_status({id:n.detail.id}).then(i=>{n.areaData=i;let b=n.areaData.properties||[];var y=new Array;b.forEach(function(V,T){let ce=V.list||[];y[T]=[];var ue=new Array;ce.forEach(function(me,_e){_e<15&&ue.push(me)}),y[T].name=V.name,y[T].key=V.key,y[T].type=V.type,y[T].unit=V.unit,y[T].value=V.value,y[T].list=ue}),n.areaData.properties=y})},v=()=>{f.instance.getlogcate({}).then(i=>{n.logTypeData=i.list})},Y=()=>{n.logtableData.param.deviceKey=n.detail.key,f.instance.getLogList(n.logtableData.param).then(i=>{n.logtableData.data=i.list,n.logtableData.total=i.Total})};return{onlineTimeoutUpdate:()=>{if(!n.detail.onlineTimeout)return h("\u8BF7\u5148\u8F93\u5165\u8BBE\u5907\u8D85\u65F6\u65F6\u95F4");f.device.updateOnlineTimeout({id:n.detail.id,onlineTimeout:n.detail.onlineTimeout}).then(()=>{h.success("\u8BBE\u7F6E\u6210\u529F")})},setAttr:i=>{q.value.show(i)},tinyAreas:()=>{var i=n.data;new TinyArea("container",{height:60,autoFit:!1,data:i,smooth:!0,areaStyle:{fill:"#d6e3fd"}}).render()},setAttrRef:q,editDicRef:I,editAttrRef:K,listDicRef:F,editFunRef:C,editEventRef:L,editTabRef:O,subDeviceRef:E,mutipleBindRef:c,onOpenListDetail:ae,getrunData:a,getlog:Y,getlogtype:v,onLogDetail:Q,CkOption:()=>{n.developer_status==2?f.instance.devoffline({id:n.detail.id}).then(i=>{h.success("\u64CD\u4F5C\u6210\u529F"),n.developer_status=1}):f.instance.devonline({id:n.detail.id}).then(i=>{h.success("\u64CD\u4F5C\u6210\u529F"),n.developer_status=2})},onRowDel:le,onEditFun:U,onEditEvent:G,onEditTag:H,onEditAttr:Z,getList:j,getproperty:z,getDeviceTableData:D,handleSelectionChange:w,getfunction:R,getevent:S,gettab:M,wuhandleClick:$,onOpenEditTab:te,onOpenEditEvent:ee,onOpenEditAttr:W,onOpenEditFun:x,onOpenEditDic:oe,onOpenDetail:P,deleteSubDevice:N,handleClick:ne,onOpenMutipleBind:X,mutipleUnbind:u,...ge(n)}}}),Ve={class:"system-dic-container"},Le={class:"content"},Oe={class:"cont_box"},Ne={class:"title"},Ue={class:"pro-status"},Me={class:"content-box"},Ke={style:{display:"flex",padding:"10px","flex-wrap":"wrap"}},Pe={class:"ant-card"},je={class:"ant-card-body"},Ye={class:"cardflex"},Je=l("div",null,"\u8BBE\u5907\u72B6\u6001",-1),Ie={key:0,class:"statusname"},qe={key:1,class:"statusname"},Qe={key:2,class:"statusname"},Xe={class:"cardflex comtest"},Ze=l("div",null," \u6570\u636E\u65F6\u95F4",-1),Ge={class:"ant-card-body"},He={class:"cardflex"},We={style:{cursor:"pointer"}},xe={class:"statusname"},et={class:""},tt={class:"pro-box"},at=l("div",{class:"protitle"},"\u8BBE\u5907\u4FE1\u606F",-1),ot=d("\u7F16\u8F91"),lt={class:"ant-descriptions-view"},nt={class:"ant-descriptions-row"},it=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u8BBE\u5907\u6807\u8BC6",-1),st={class:"ant-descriptions-item-content",colspan:"1"},ut=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u8BBE\u5907\u540D\u79F0",-1),dt={class:"ant-descriptions-item-content",colspan:"1"},rt=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u6240\u5C5E\u4EA7\u54C1",-1),pt={class:"ant-descriptions-item-content",colspan:"1"},ct={class:"ant-descriptions-row"},mt=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u6D88\u606F\u534F\u8BAE",-1),_t={class:"ant-descriptions-item-content",colspan:"1"},ft=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u94FE\u63A5\u534F\u8BAE",-1),vt={class:"ant-descriptions-item-content",colspan:"1"},bt=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u8BBE\u5907\u7C7B\u578B",-1),gt={class:"ant-descriptions-item-content",colspan:"1"},Dt={class:"ant-descriptions-row"},yt=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u56FA\u4EF6\u7248\u672C",-1),Et={class:"ant-descriptions-item-content",colspan:"1"},ht=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u6CE8\u518C\u65F6\u95F4",-1),Ft={class:"ant-descriptions-item-content",colspan:"1"},Bt=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u6700\u540E\u4E0A\u7EBF\u65F6\u95F4",-1),Ct={class:"ant-descriptions-item-content",colspan:"1"},wt={class:"ant-descriptions-row"},kt=l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u8BF4\u660E",-1),Tt={class:"ant-descriptions-item-content",colspan:"5"},At={class:"flex",style:{"margin-top":"20px"}},zt=d("\u8BBE\u5907\u8D85\u65F6\u65F6\u95F4"),Rt=d("\u79D2"),St=d("\u66F4\u65B0"),$t={class:"wu-box"},Vt={class:"wu-title"},Lt=l("div",{class:"title"},"\u5C5E\u6027\u5B9A\u4E49",-1),Ot=d("\u6DFB\u52A0"),Nt=d("\u53EA\u8BFB"),Ut=d("\u8BFB\u5199"),Mt=d("\u4FEE\u6539"),Kt=d("\u5220\u9664"),Pt=d("\u8BBE\u7F6E\u5C5E\u6027"),jt={class:"wu-title"},Yt=l("div",{class:"title"},"\u529F\u80FD\u5B9A\u4E49",-1),Jt=d("\u6DFB\u52A0"),It=d("\u4FEE\u6539"),qt=d("\u5220\u9664"),Qt={class:"wu-title"},Xt=l("div",{class:"title"},"\u4E8B\u4EF6\u5B9A\u4E49",-1),Zt=d("\u6DFB\u52A0"),Gt=d("\u666E\u901A"),Ht=d("\u8B66\u544A"),Wt=d("\u7D27\u6025"),xt=d("\u4FEE\u6539"),ea=d("\u5220\u9664"),ta={class:"wu-title"},aa=l("div",{class:"title"},"\u6807\u7B7E\u5B9A\u4E49",-1),oa=d("\u6DFB\u52A0"),la=d("\u53EA\u8BFB"),na=d("\u8BFB\u5199"),ia=d("\u4FEE\u6539"),sa=d("\u5220\u9664"),ua={class:"system-user-search mb15"},da=d(" \u67E5\u8BE2 "),ra=d(" \u91CD\u7F6E "),pa=d("\u67E5\u770B"),ca={class:"wu-box"},ma={class:"wu-title"},_a=l("div",{class:"title"},"\u5B50\u8BBE\u5907\u5217\u8868",-1),fa=d("\u6279\u91CF\u7ED1\u5B9A"),va=d("\u6279\u91CF\u89E3\u7ED1"),ba=d("\u79BB\u7EBF"),ga=d("\u5728\u7EBF"),Da=d("\u672A\u542F\u7528"),ya=d("\u5220\u9664"),Ea=d("\u8BE6\u60C5"),ha={class:"dialog-footer"},Fa=d("\u5173\u95ED");function Ba(e,s,J,I,q,K){const C=r("ele-Refresh"),F=r("el-icon"),L=r("ele-Expand"),O=r("devantd"),E=r("el-tab-pane"),c=r("el-button"),n=r("el-input"),u=r("el-table-column"),D=r("el-tag"),w=r("el-table"),P=r("el-tabs"),N=r("pagination"),Q=r("functionCom"),X=r("el-option"),Z=r("el-select"),U=r("el-form-item"),G=r("el-date-picker"),H=r("ele-Search"),W=r("el-form"),x=r("EditDic"),ee=r("EditAttr"),te=r("EditFun"),ae=r("EditEvent"),oe=r("EditTab"),le=r("ListDic"),j=r("SubDevice"),z=r("setAttr"),R=r("SubDeviceMutipleBind"),S=r("JsonViewer"),M=r("el-dialog"),$=de("auth"),ne=de("loading");return p(),A("div",Ve,[l("div",Le,[l("div",Oe,[l("div",Ne,"\u8BBE\u5907\uFF1A"+_(e.detail.name),1),l("div",Ue,[l("span",{class:De(e.developer_status==2?"on":"off")},null,2),d(_(e.developer_status==2?"\u5728\u7EBF":"\u79BB\u7EBF"),1)])])]),l("div",Me,[t(P,{modelValue:e.activeName,"onUpdate:modelValue":s[20]||(s[20]=a=>e.activeName=a),class:"demo-tabs",onTabClick:e.handleClick},{default:o(()=>[t(E,{label:"\u8FD0\u884C\u72B6\u6001",name:"3"},{default:o(()=>[l("div",Ke,[l("div",Pe,[l("div",je,[l("div",Ye,[Je,l("div",{onClick:s[0]||(s[0]=a=>e.getrunData()),style:{cursor:"pointer"}},[t(F,{style:{"font-size":"18px"}},{default:o(()=>[t(C)]),_:1})])]),e.areaData.status==0?(p(),A("div",Ie,"\u672A\u542F\u7528")):g("",!0),e.areaData.status==1?(p(),A("div",qe,"\u79BB\u7EBF")):g("",!0),e.areaData.status==2?(p(),A("div",Qe,"\u5728\u7EBF")):g("",!0),l("div",Xe,[Ze,l("div",null,_(e.areaData.lastOnlineTime||"\u672A\u542F\u7528"),1)])])]),(p(!0),A(re,null,pe(e.areaData.properties,(a,v)=>(p(),A("div",{class:"ant-card",key:v},[l("div",Ge,[l("div",He,[l("div",null,_(a.name),1),l("div",We,[t(F,{style:{"font-size":"18px"},onClick:s[1]||(s[1]=Y=>e.getrunData())},{default:o(()=>[t(C)]),_:1}),t(F,{style:{"font-size":"18px","margin-left":"10px"},onClick:Y=>e.onOpenListDetail(a)},{default:o(()=>[t(L)]),_:2},1032,["onClick"])])]),l("div",xe,_(a.value)+_(a.unit),1),l("div",et,[a.type=="int"||a.type=="float"?(p(),m(O,{key:0,json:a.list,antdid:a.key},null,8,["json","antdid"])):g("",!0)])])]))),128))])]),_:1}),t(E,{label:"\u8BBE\u5907\u4FE1\u606F",name:"1"},{default:o(()=>[l("div",tt,[at,l("div",null,[t(c,{type:"primary",onClick:s[2]||(s[2]=a=>e.onOpenEditDic(e.detail))},{default:o(()=>[ot]),_:1})])]),l("div",lt,[l("table",null,[l("tbody",null,[l("tr",nt,[it,l("td",st,_(e.detail.key),1),ut,l("td",dt,_(e.detail.name),1),rt,l("td",pt,_(e.detail.productName),1)]),l("tr",ct,[mt,l("td",_t,_(e.prodetail.messageProtocol),1),ft,l("td",vt,_(e.prodetail.transportProtocol),1),bt,l("td",gt,_(e.prodetail.deviceType),1)]),l("tr",Dt,[yt,l("td",Et,_(e.prodetail.version),1),ht,l("td",Ft,_(e.prodetail.updatedAt),1),Bt,l("td",Ct,_(e.prodetail.lastOnlineTime||""),1)]),l("tr",wt,[kt,l("td",Tt,_(e.prodetail.desc),1)])])])]),l("div",At,[t(n,{type:"number",style:{width:"380px","margin-right":"20px"},modelValue:e.detail.onlineTimeout,"onUpdate:modelValue":s[3]||(s[3]=a=>e.detail.onlineTimeout=a),modelModifiers:{number:!0}},{prepend:o(()=>[zt]),append:o(()=>[Rt]),_:1},8,["modelValue"]),t(c,{type:"primary",onClick:e.onlineTimeoutUpdate},{default:o(()=>[t(F,{style:{"font-size":"18px"}},{default:o(()=>[t(C)]),_:1}),St]),_:1},8,["onClick"])])]),_:1}),t(E,{label:"\u7269\u6A21\u578B",name:"2"},{default:o(()=>[l("div",$t,[t(P,{type:"border-card",modelValue:e.activetab,"onUpdate:modelValue":s[8]||(s[8]=a=>e.activetab=a),onTabClick:e.wuhandleClick},{default:o(()=>[t(E,{label:"\u5C5E\u6027\u5B9A\u4E49",name:"attr"},{default:o(()=>[l("div",Vt,[Lt,l("div",null,[t(c,{type:"primary",onClick:s[4]||(s[4]=a=>e.onOpenEditAttr())},{default:o(()=>[Ot]),_:1})])]),e.activetab=="attr"?(p(),m(w,{key:0,style:{width:"100%"},data:e.tableData.data},{default:o(()=>[t(u,{label:"\u5C5E\u6027\u6807\u8BC6",align:"center",prop:"key"}),t(u,{label:"\u5C5E\u6027\u540D\u79F0",prop:"name","show-overflow-tooltip":!0}),t(u,{prop:"valueType",label:"\u6570\u636E\u7C7B\u578B",width:"100",align:"center"},{default:o(a=>[l("span",null,_(a.row.valueType.type),1)]),_:1}),t(u,{prop:"decimals",label:"\u7CBE\u5EA6",width:"60",align:"center"},{default:o(a=>[l("span",null,_(a.row.valueType.decimals),1)]),_:1}),t(u,{prop:"unit",label:"\u5355\u4F4D",width:"60",align:"center"},{default:o(a=>[l("span",null,_(a.row.valueType.unit),1)]),_:1}),t(u,{prop:"accessMode",label:"\u662F\u5426\u53EA\u8BFB",width:"120",align:"center"},{default:o(a=>[a.row.accessMode?(p(),m(D,{key:0,type:"info",size:"small"},{default:o(()=>[Nt]),_:1})):(p(),m(D,{key:1,type:"success",size:"small"},{default:o(()=>[Ut]),_:1}))]),_:1}),t(u,{label:"\u8BF4\u660E",prop:"desc","show-overflow-tooltip":!0}),t(u,{label:"\u64CD\u4F5C",width:"300",align:"center",fixed:"right"},{default:o(a=>[t(c,{size:"small",text:"",type:"warning",onClick:v=>e.onEditAttr(a.row)},{default:o(()=>[Mt]),_:2},1032,["onClick"]),t(c,{size:"small",text:"",type:"danger",onClick:v=>e.onRowDel(a.row.key,"attr")},{default:o(()=>[Kt]),_:2},1032,["onClick"]),t(c,{size:"small",text:"",type:"primary",onClick:v=>e.setAttr(a.row)},{default:o(()=>[Pt]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])):g("",!0)]),_:1}),t(E,{label:"\u529F\u80FD\u5B9A\u4E49",name:"fun"},{default:o(()=>[l("div",jt,[Yt,l("div",null,[t(c,{type:"primary",onClick:s[5]||(s[5]=a=>e.onOpenEditFun())},{default:o(()=>[Jt]),_:1})])]),e.activetab=="fun"?(p(),m(w,{key:0,style:{width:"100%"},data:e.tableData.data},{default:o(()=>[t(u,{label:"\u529F\u80FD\u6807\u8BC6",align:"center",prop:"key"}),t(u,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":!0}),t(u,{label:"\u63CF\u8FF0",prop:"desc","show-overflow-tooltip":!0}),t(u,{label:"\u64CD\u4F5C",width:"300",align:"center",fixed:"right"},{default:o(a=>[t(c,{size:"small",text:"",type:"warning",onClick:v=>e.onEditFun(a.row)},{default:o(()=>[It]),_:2},1032,["onClick"]),t(c,{size:"small",text:"",type:"danger",onClick:v=>e.onRowDel(a.row.key,"fun")},{default:o(()=>[qt]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])):g("",!0)]),_:1}),t(E,{label:"\u4E8B\u4EF6\u5B9A\u4E49",name:"event"},{default:o(()=>[l("div",Qt,[Xt,l("div",null,[t(c,{type:"primary",onClick:s[6]||(s[6]=a=>e.onOpenEditEvent())},{default:o(()=>[Zt]),_:1})])]),e.activetab=="event"?(p(),m(w,{key:0,style:{width:"100%"},data:e.tableData.data},{default:o(()=>[t(u,{label:"\u4E8B\u4EF6\u6807\u8BC6",align:"center",prop:"key"}),t(u,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":!0}),t(u,{prop:"level",label:"\u4E8B\u4EF6\u7EA7\u522B",width:"120",align:"center"},{default:o(a=>[a.row.level==0?(p(),m(D,{key:0,type:"primary",size:"small"},{default:o(()=>[Gt]),_:1})):g("",!0),a.row.level==1?(p(),m(D,{key:1,type:"warning",size:"small"},{default:o(()=>[Ht]),_:1})):g("",!0),a.row.level==2?(p(),m(D,{key:2,type:"danger",size:"small"},{default:o(()=>[Wt]),_:1})):g("",!0)]),_:1}),t(u,{label:"\u63CF\u8FF0",prop:"desc","show-overflow-tooltip":!0}),t(u,{label:"\u64CD\u4F5C",width:"300",align:"center",fixed:"right"},{default:o(a=>[t(c,{size:"small",text:"",type:"warning",onClick:v=>e.onEditEvent(a.row)},{default:o(()=>[xt]),_:2},1032,["onClick"]),t(c,{size:"small",text:"",type:"danger",onClick:v=>e.onRowDel(a.row.key,"event")},{default:o(()=>[ea]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])):g("",!0)]),_:1}),t(E,{label:"\u6807\u7B7E\u5B9A\u4E49",name:"tab"},{default:o(()=>[l("div",ta,[aa,l("div",null,[t(c,{type:"primary",onClick:s[7]||(s[7]=a=>e.onOpenEditTab())},{default:o(()=>[oa]),_:1})])]),e.activetab=="tab"?(p(),m(w,{key:0,style:{width:"100%"},data:e.tableData.data},{default:o(()=>[t(u,{label:"\u5C5E\u6027\u6807\u8BC6",align:"center",prop:"key"}),t(u,{label:"\u5C5E\u6027\u540D\u79F0",prop:"name","show-overflow-tooltip":!0}),t(u,{prop:"valueType",label:"\u6570\u636E\u7C7B\u578B",width:"120",align:"center"},{default:o(a=>[l("span",null,_(a.row.valueType.type),1)]),_:1}),t(u,{prop:"accessMode",label:"\u662F\u5426\u53EA\u8BFB",width:"120",align:"center"},{default:o(a=>[a.row.accessMode?(p(),m(D,{key:0,type:"info",size:"small"},{default:o(()=>[la]),_:1})):(p(),m(D,{key:1,type:"success",size:"small"},{default:o(()=>[na]),_:1}))]),_:1}),t(u,{label:"\u63CF\u8FF0",prop:"desc","show-overflow-tooltip":!0}),t(u,{label:"\u64CD\u4F5C",width:"300",align:"center",fixed:"right"},{default:o(a=>[t(c,{size:"small",text:"",type:"warning",onClick:v=>e.onEditTag(a.row)},{default:o(()=>[ia]),_:2},1032,["onClick"]),t(c,{size:"small",text:"",type:"danger",onClick:v=>e.onRowDel(a.row.key,"tab")},{default:o(()=>[sa]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])):g("",!0)]),_:1})]),_:1},8,["modelValue","onTabClick"]),k(t(N,{total:e.tableData.total,page:e.tableData.param.pageNum,"onUpdate:page":s[9]||(s[9]=a=>e.tableData.param.pageNum=a),limit:e.tableData.param.pageSize,"onUpdate:limit":s[10]||(s[10]=a=>e.tableData.param.pageSize=a),onPagination:e.getList},null,8,["total","page","limit","onPagination"]),[[ie,e.tableData.total>0]])])]),_:1}),t(E,{label:"\u8BBE\u5907\u529F\u80FD",name:"5"},{default:o(()=>[e.detail.key&&e.prodetail.key&&e.activeName==="5"?(p(),m(Q,{key:0,"device-key":e.detail.key,"product-key":e.prodetail.key},null,8,["device-key","product-key"])):g("",!0)]),_:1}),t(E,{label:"\u65E5\u5FD7\u7BA1\u7406",name:"4"},{default:o(()=>[l("div",ua,[t(W,{model:e.logtableData.param,ref:"queryRef",inline:!0,"label-width":"68px"},{default:o(()=>[t(U,{label:"\u65E5\u5FD7\u7C7B\u578B",prop:"types"},{default:o(()=>[t(Z,{modelValue:e.logtableData.param.types,"onUpdate:modelValue":s[11]||(s[11]=a=>e.logtableData.param.types=a),placeholder:"\u65E5\u5FD7\u7C7B\u578B",clearable:"",size:"default"},{default:o(()=>[(p(!0),A(re,null,pe(e.logTypeData,a=>(p(),m(X,{key:a,label:a,value:a},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(U,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"dateRange"},{default:o(()=>[t(G,{modelValue:e.logtableData.param.dateRange,"onUpdate:modelValue":s[12]||(s[12]=a=>e.logtableData.param.dateRange=a),size:"default","value-format":"YYYY-MM-DD",type:"daterange","range-separator":"-","start-placeholder":"\u5F00\u59CB\u65E5\u671F","end-placeholder":"\u7ED3\u675F\u65E5\u671F"},null,8,["modelValue"])]),_:1}),t(U,null,{default:o(()=>[t(c,{size:"default",type:"primary",class:"ml10",onClick:e.getlog},{default:o(()=>[t(F,null,{default:o(()=>[t(H)]),_:1}),da]),_:1},8,["onClick"]),t(c,{size:"default",onClick:s[13]||(s[13]=a=>e.resetQuery(e.queryRef))},{default:o(()=>[t(F,null,{default:o(()=>[t(C)]),_:1}),ra]),_:1})]),_:1})]),_:1},8,["model"])]),t(w,{style:{width:"100%"},data:e.logtableData.data},{default:o(()=>[t(u,{label:"\u7C7B\u578B",align:"center",prop:"type"}),t(u,{label:"\u65F6\u95F4",prop:"ts","show-overflow-tooltip":!0}),t(u,{label:"\u5185\u5BB9",prop:"content","show-overflow-tooltip":!0}),t(u,{label:"\u64CD\u4F5C",width:"300",align:"center",fixed:"right"},{default:o(a=>[t(c,{size:"small",text:"",type:"warning",onClick:v=>e.onLogDetail(a.row)},{default:o(()=>[pa]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"]),k(t(N,{total:e.logtableData.total,page:e.logtableData.param.pageNum,"onUpdate:page":s[14]||(s[14]=a=>e.logtableData.param.pageNum=a),limit:e.logtableData.param.pageSize,"onUpdate:limit":s[15]||(s[15]=a=>e.logtableData.param.pageSize=a),onPagination:e.getlog},null,8,["total","page","limit","onPagination"]),[[ie,e.logtableData.total>0]])]),_:1}),e.prodetail.deviceType=="\u7F51\u5173"?(p(),m(E,{key:0,label:"\u5B50\u8BBE\u5907",name:"6"},{default:o(()=>[l("div",ca,[l("div",ma,[_a,l("div",null,[k((p(),m(c,{type:"primary",onClick:s[16]||(s[16]=a=>e.onOpenMutipleBind())},{default:o(()=>[fa]),_:1})),[[$,"mutipleBind"]]),k((p(),m(c,{disabled:!e.deviceKeyList.length,type:"primary",onClick:s[17]||(s[17]=a=>e.mutipleUnbind())},{default:o(()=>[va]),_:1},8,["disabled"])),[[$,"cancleMutipleBind"]])])]),k((p(),m(w,{data:e.deviceTableData.data,style:{width:"100%"},onSelectionChange:e.handleSelectionChange},{default:o(()=>[t(u,{type:"selection",width:"55",align:"center"}),t(u,{label:"\u6807\u8BC6",prop:"key",width:"130","show-overflow-tooltip":!0}),t(u,{label:"\u8BBE\u5907\u540D\u79F0",prop:"name","show-overflow-tooltip":!0}),t(u,{label:"\u4EA7\u54C1\u540D\u79F0",prop:"productName","show-overflow-tooltip":!0}),t(u,{prop:"status",label:"\u72B6\u6001",width:"100",align:"center"},{default:o(a=>[a.row.status==1?(p(),m(D,{key:0,type:"info",size:"small"},{default:o(()=>[ba]),_:1})):g("",!0),a.row.status==2?(p(),m(D,{key:1,type:"success",size:"small"},{default:o(()=>[ga]),_:1})):g("",!0),a.row.status==0?(p(),m(D,{key:2,type:"info",size:"small"},{default:o(()=>[Da]),_:1})):g("",!0)]),_:1}),t(u,{prop:"registryTime",label:"\u6FC0\u6D3B\u65F6\u95F4",align:"center",width:"150"}),t(u,{prop:"desc",label:"\u8BF4\u660E"}),t(u,{label:"\u64CD\u4F5C",width:"160",align:"center",fixed:"right"},{default:o(a=>[k((p(),m(c,{size:"small",text:"",type:"danger",onClick:v=>e.deleteSubDevice(a.row)},{default:o(()=>[ya]),_:2},1032,["onClick"])),[[$,"del"]]),k((p(),m(c,{size:"small",text:"",type:"warning",onClick:v=>e.onOpenDetail(a.row)},{default:o(()=>[Ea]),_:2},1032,["onClick"])),[[$,"detail"]])]),_:1})]),_:1},8,["data","onSelectionChange"])),[[ne,e.deviceTableData.loading]]),k(t(N,{total:e.deviceTableData.total,page:e.deviceTableData.param.pageNum,"onUpdate:page":s[18]||(s[18]=a=>e.deviceTableData.param.pageNum=a),limit:e.deviceTableData.param.pageSize,"onUpdate:limit":s[19]||(s[19]=a=>e.deviceTableData.param.pageSize=a),onPagination:e.getDeviceTableData},null,8,["total","page","limit","onPagination"]),[[ie,e.deviceTableData.total>0]])])]),_:1})):g("",!0)]),_:1},8,["modelValue","onTabClick"])]),t(x,{ref:"editDicRef",onTypeList:e.typeList},null,8,["onTypeList"]),t(ee,{ref:"editAttrRef",onTypeList:e.getproperty},null,8,["onTypeList"]),t(te,{ref:"editFunRef",onTypeList:e.getfunction},null,8,["onTypeList"]),t(ae,{ref:"editEventRef",onTypeList:e.getevent},null,8,["onTypeList"]),t(oe,{ref:"editTabRef",onTypeList:e.gettab},null,8,["onTypeList"]),t(le,{ref:"listDicRef"},null,512),t(j,{ref:"subDeviceRef"},null,512),t(z,{"device-key":e.detail.key,ref:"setAttrRef"},null,8,["device-key"]),t(R,{ref:"mutipleBindRef",onBindSuccess:e.getDeviceTableData},null,8,["onBindSuccess"]),t(M,{modelValue:e.dialogVisible,"onUpdate:modelValue":s[22]||(s[22]=a=>e.dialogVisible=a),title:"\u8FD4\u56DEJson\u6570\u636E",width:"30%"},{footer:o(()=>[l("span",ha,[t(c,{onClick:s[21]||(s[21]=a=>e.dialogVisible=!1)},{default:o(()=>[Fa]),_:1})])]),default:o(()=>[t(S,{value:e.jsonData,boxed:"",sort:"",theme:"jv-dark",onClick:e.onKeyclick},null,8,["value","onClick"])]),_:1},8,["modelValue"])])}var Qa=Se($e,[["render",Ba]]);export{Qa as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046953.css b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046953.css new file mode 100644 index 0000000..a8702c9 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046953.css @@ -0,0 +1 @@ +.CodeMirror{width:100%;height:600px;font-size:16px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046953.js b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046953.js new file mode 100644 index 0000000..3c07461 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046953.js @@ -0,0 +1 @@ +import{L as P,h as y,a2 as U,k as X,ab as Y,a as Z,b as l,Z as c,O as j,Y as u,_ as e,T as n,aD as q,ai as p,o as m,S as b,X as C,U as G,V as H,aB as J,aC as K}from"./vue.1701184304695.js";import{_ as Q,F as W,E as D,h as x}from"./index.1701184304695.js";import tt from"./editPro.1701184304695.js";import et from"./deviceIn.1701184304695.js";import at from"./dataParse.1701184304695.js";import ot from"./editAttr.1701184304695.js";import nt from"./editFun.1701184304695.js";import lt from"./editEvent.1701184304695.js";import st from"./editTab.1701184304695.js";import{a as f}from"./index.170118430469519.js";import"./index.170118430469522.js";import"./index.170118430469524.js";import"./editOption.1701184304695.js";const it=P({name:"deviceEditPro",components:{EditDic:tt,EditAttr:ot,EditFun:nt,EditEvent:lt,EditTab:st,deviceIn:et,dataParse:at},setup(t,i){const d=q(),T=y(),w=y(),k=y(),r=y(),_=y(),a=U({isShowDialog:!1,activeName:"1",activetab:"attr",detail:{},developer_status:0,tableData:{data:[],total:0,loading:!1,param:{pageNum:1,productId:d.params&&d.params.id,pageSize:10,status:"",dateRange:[]}}});X(()=>{const s=d.params&&d.params.id;f.product.detail(s).then(E=>{a.detail=E.data,a.developer_status=E.data.status}),f.model.property(a.tableData.param).then(E=>{a.tableData.data=E.Data,a.tableData.total=E.Total})});const F=s=>{w.value.openDialog(s,d.params.id)},g=s=>{k.value.openDialog(s,d.params.id)},B=s=>{r.value.openDialog(s,d.params.id)},z=s=>{_.value.openDialog(s,d.params.id)},R=()=>{w.value.openDialog({product_id:d.params.id,id:0,accessMode:0})},$=()=>{k.value.openDialog({product_id:d.params.id,id:0})},O=()=>{r.value.openDialog({product_id:d.params.id,id:0,level:0})},S=()=>{_.value.openDialog({product_id:d.params.id,id:0,accessMode:0})},L=s=>{T.value.openDialog(s)},N=(s,E)=>{let M="\u6B64\u64CD\u4F5C\u5C06\u6C38\u4E45\u5220\u9664\u8BE5\u6570\u636E\u5417\uFF1F\uFF0C\u662F\u5426\u7EE7\u7EED?";if(s.length===0){D.error("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u6570\u636E\u3002");return}x.confirm(M,"\u63D0\u793A",{confirmButtonText:"\u786E\u8BA4",cancelButtonText:"\u53D6\u6D88",type:"warning"}).then(()=>{E=="attr"&&f.model.propertydel(d.params.id,s).then(()=>{D.success("\u5220\u9664\u6210\u529F"),o()}),E=="fun"&&f.model.functiondel(d.params.id,s).then(()=>{D.success("\u5220\u9664\u6210\u529F"),v()}),E=="event"&&f.model.eventdel(d.params.id,s).then(()=>{D.success("\u5220\u9664\u6210\u529F"),A()}),E=="tab"&&f.model.tagdel(d.params.id,s).then(()=>{D.success("\u5220\u9664\u6210\u529F"),tagdel()})}).catch(()=>{})},V=()=>{switch(a.activetab){case"attr":o();break;case"fun":v();break;case"event":A();break;case"tab":I();break}},o=()=>{f.model.property(a.tableData.param).then(s=>{a.tableData.data=s.Data,a.tableData.total=s.Total})},v=()=>{f.model.function(a.tableData.param).then(s=>{a.tableData.data=s.Data,a.tableData.total=s.Total})},A=()=>{f.model.event(a.tableData.param).then(s=>{a.tableData.data=s.Data,a.tableData.total=s.Total})},I=()=>{f.model.tag(a.tableData.param).then(s=>{a.tableData.data=s.Data,a.tableData.total=s.Total})};return{Edit:W,updateScript:s=>{a.detail.scriptInfo=s},editDicRef:T,editAttrRef:w,editFunRef:k,editEventRef:r,editTabRef:_,CkOption:()=>{a.developer_status==1?f.product.undeploy({id:d.params.id}).then(s=>{D.success("\u64CD\u4F5C\u6210\u529F"),a.developer_status=0}):f.product.deploy({id:d.params.id}).then(s=>{D.success("\u64CD\u4F5C\u6210\u529F"),a.developer_status=1})},onRowDel:N,onEditFun:g,onEditEvent:B,onEditTag:z,onEditAttr:F,getList:V,getproperty:o,getfunction:v,getevent:A,gettab:I,wuhandleClick:s=>{switch(a.activetab=s.props.name,s.props.name){case"attr":o();break;case"fun":v();break;case"event":A();break;case"tab":I();break}},onOpenEditTab:S,onOpenEditEvent:O,onOpenEditAttr:R,onOpenEditFun:$,onOpenEditDic:L,handleClick:(s,E)=>{},...Y(a)}}}),h=t=>(J("data-v-4f4d1e27"),t=t(),K(),t),ut={class:"system-dic-container"},dt={class:"content"},rt={class:"cont_box"},pt={class:"title"},ct={class:"pro-status"},mt={class:"content-box"},_t={class:"pro-box"},vt=h(()=>l("div",{class:"protitle"},"\u4EA7\u54C1\u4FE1\u606F",-1)),bt=u("\u7F16\u8F91"),ft={class:"ant-descriptions-view"},Et={class:"ant-descriptions-row"},ht=h(()=>l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u4EA7\u54C1\u6807\u8BC6",-1)),Ft={class:"ant-descriptions-item-content",colspan:"1"},Ct=h(()=>l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u6240\u5C5E\u54C1\u7C7B",-1)),Dt={class:"ant-descriptions-item-content",colspan:"1"},gt=h(()=>l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u8BBE\u5907\u7C7B\u578B",-1)),yt={class:"ant-descriptions-item-content",colspan:"1"},wt={class:"ant-descriptions-row"},kt=h(()=>l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u6D88\u606F\u534F\u8BAE",-1)),Bt={class:"ant-descriptions-item-content",colspan:"1"},At=h(()=>l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u94FE\u63A5\u534F\u8BAE",-1)),Tt={class:"ant-descriptions-item-content",colspan:"1"},zt={class:"ant-descriptions-row"},Rt=h(()=>l("th",{class:"ant-descriptions-item-label ant-descriptions-item-colon"},"\u63CF\u8FF0",-1)),$t={class:"ant-descriptions-item-content",colspan:"5"},Ot={class:"wu-box"},St={class:"wu-title"},Lt=h(()=>l("div",{class:"title"},"\u5C5E\u6027\u5B9A\u4E49",-1)),Nt=u("\u6DFB\u52A0"),Vt=u("\u53EA\u8BFB"),It=u("\u8BFB\u5199"),Mt=u("\u4FEE\u6539"),Pt=u("\u5220\u9664"),Ut={class:"wu-title"},Xt=h(()=>l("div",{class:"title"},"\u529F\u80FD\u5B9A\u4E49",-1)),Yt=u("\u6DFB\u52A0"),Zt=u("\u4FEE\u6539"),jt=u("\u5220\u9664"),qt={class:"wu-title"},Gt=h(()=>l("div",{class:"title"},"\u4E8B\u4EF6\u5B9A\u4E49",-1)),Ht=u("\u6DFB\u52A0"),Jt=u("\u666E\u901A"),Kt=u("\u8B66\u544A"),Qt=u("\u7D27\u6025"),Wt=u("\u4FEE\u6539"),xt=u("\u5220\u9664"),te={class:"wu-title"},ee=h(()=>l("div",{class:"title"},"\u6807\u7B7E\u5B9A\u4E49",-1)),ae=u("\u6DFB\u52A0"),oe=u("\u53EA\u8BFB"),ne=u("\u8BFB\u5199"),le=u("\u4FEE\u6539"),se=u("\u5220\u9664");function ie(t,i,d,T,w,k){const r=p("el-button"),_=p("el-tab-pane"),a=p("el-table-column"),F=p("el-tag"),g=p("el-table"),B=p("el-tabs"),z=p("pagination"),R=p("deviceIn"),$=p("dataParse"),O=p("EditDic"),S=p("EditAttr"),L=p("EditFun"),N=p("EditEvent"),V=p("EditTab");return m(),Z("div",ut,[l("div",dt,[l("div",rt,[l("div",pt,"\u4EA7\u54C1\uFF1A"+c(t.detail.name),1),l("div",ct,[l("span",{class:j(t.developer_status==1?"on":"off")},null,2),u(c(t.developer_status==1?"\u5DF2\u53D1\u5E03":"\u672A\u53D1\u5E03"),1)]),l("div",{class:"pro-option",onClick:i[0]||(i[0]=(...o)=>t.CkOption&&t.CkOption(...o))},c(t.developer_status==1?"\u505C\u7528":"\u542F\u7528"),1)])]),l("div",mt,[e(B,{modelValue:t.activeName,"onUpdate:modelValue":i[9]||(i[9]=o=>t.activeName=o),class:"demo-tabs",onTabClick:t.handleClick},{default:n(()=>[e(_,{label:"\u4EA7\u54C1\u4FE1\u606F",name:"1"},{default:n(()=>[l("div",_t,[vt,e(r,{type:"",icon:t.Edit,class:"buttonedit",onClick:i[1]||(i[1]=o=>t.onOpenEditDic(t.detail))},{default:n(()=>[bt]),_:1},8,["icon"])]),l("div",ft,[l("table",null,[l("tbody",null,[l("tr",Et,[ht,l("td",Ft,c(t.detail.key),1),Ct,l("td",Dt,c(t.detail.categoryName),1),gt,l("td",yt,c(t.detail.deviceType),1)]),l("tr",wt,[kt,l("td",Bt,c(t.detail.messageProtocol),1),At,l("td",Tt,c(t.detail.transportProtocol),1)]),l("tr",zt,[Rt,l("td",$t,c(t.detail.desc),1)])])])])]),_:1}),e(_,{label:"\u7269\u6A21\u578B",name:"2"},{default:n(()=>[l("div",Ot,[e(B,{type:"border-card",modelValue:t.activetab,"onUpdate:modelValue":i[6]||(i[6]=o=>t.activetab=o),onTabClick:t.wuhandleClick},{default:n(()=>[e(_,{label:"\u5C5E\u6027\u5B9A\u4E49",name:"attr"},{default:n(()=>[l("div",St,[Lt,l("div",null,[e(r,{type:"primary",onClick:i[2]||(i[2]=o=>t.onOpenEditAttr())},{default:n(()=>[Nt]),_:1})])]),t.activetab=="attr"?(m(),b(g,{key:0,style:{width:"100%"},data:t.tableData.data},{default:n(()=>[e(a,{label:"\u5C5E\u6027\u6807\u8BC6",align:"center",prop:"key"}),e(a,{label:"\u5C5E\u6027\u540D\u79F0",prop:"name","show-overflow-tooltip":!0}),e(a,{prop:"valueType",label:"\u6570\u636E\u7C7B\u578B",width:"100",align:"center"},{default:n(o=>[l("span",null,c(o.row.valueType.type),1)]),_:1}),e(a,{prop:"decimals",label:"\u7CBE\u5EA6",width:"60",align:"center"},{default:n(o=>[l("span",null,c(o.row.valueType.decimals),1)]),_:1}),e(a,{prop:"unit",label:"\u5355\u4F4D",width:"60",align:"center"},{default:n(o=>[l("span",null,c(o.row.valueType.unit),1)]),_:1}),e(a,{prop:"accessMode",label:"\u662F\u5426\u53EA\u8BFB",width:"120",align:"center"},{default:n(o=>[o.row.accessMode?(m(),b(F,{key:0,type:"info",size:"small"},{default:n(()=>[Vt]),_:1})):(m(),b(F,{key:1,type:"success",size:"small"},{default:n(()=>[It]),_:1}))]),_:1}),e(a,{label:"\u8BF4\u660E",prop:"desc","show-overflow-tooltip":!0}),e(a,{label:"\u64CD\u4F5C",width:"300",align:"center",fixed:"right"},{default:n(o=>[e(r,{size:"small",text:"",type:"warning",onClick:v=>t.onEditAttr(o.row)},{default:n(()=>[Mt]),_:2},1032,["onClick"]),e(r,{size:"small",text:"",type:"danger",onClick:v=>t.onRowDel(o.row.key,"attr")},{default:n(()=>[Pt]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])):C("",!0)]),_:1}),e(_,{label:"\u529F\u80FD\u5B9A\u4E49",name:"fun"},{default:n(()=>[l("div",Ut,[Xt,l("div",null,[e(r,{type:"primary",onClick:i[3]||(i[3]=o=>t.onOpenEditFun())},{default:n(()=>[Yt]),_:1})])]),t.activetab=="fun"?(m(),b(g,{key:0,style:{width:"100%"},data:t.tableData.data},{default:n(()=>[e(a,{label:"\u529F\u80FD\u6807\u8BC6",align:"center",prop:"key"}),e(a,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":!0}),e(a,{label:"\u63CF\u8FF0",prop:"desc","show-overflow-tooltip":!0}),e(a,{label:"\u64CD\u4F5C",width:"300",align:"center",fixed:"right"},{default:n(o=>[e(r,{size:"small",text:"",type:"warning",onClick:v=>t.onEditFun(o.row)},{default:n(()=>[Zt]),_:2},1032,["onClick"]),e(r,{size:"small",text:"",type:"danger",onClick:v=>t.onRowDel(o.row.key,"fun")},{default:n(()=>[jt]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])):C("",!0)]),_:1}),e(_,{label:"\u4E8B\u4EF6\u5B9A\u4E49",name:"event"},{default:n(()=>[l("div",qt,[Gt,l("div",null,[e(r,{type:"primary",onClick:i[4]||(i[4]=o=>t.onOpenEditEvent())},{default:n(()=>[Ht]),_:1})])]),t.activetab=="event"?(m(),b(g,{key:0,style:{width:"100%"},data:t.tableData.data},{default:n(()=>[e(a,{label:"\u4E8B\u4EF6\u6807\u8BC6",align:"center",prop:"key"}),e(a,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":!0}),e(a,{prop:"level",label:"\u4E8B\u4EF6\u7EA7\u522B",width:"120",align:"center"},{default:n(o=>[o.row.level==0?(m(),b(F,{key:0,type:"primary",size:"small"},{default:n(()=>[Jt]),_:1})):C("",!0),o.row.level==1?(m(),b(F,{key:1,type:"warning",size:"small"},{default:n(()=>[Kt]),_:1})):C("",!0),o.row.level==2?(m(),b(F,{key:2,type:"danger",size:"small"},{default:n(()=>[Qt]),_:1})):C("",!0)]),_:1}),e(a,{label:"\u63CF\u8FF0",prop:"desc","show-overflow-tooltip":!0}),e(a,{label:"\u64CD\u4F5C",width:"300",align:"center",fixed:"right"},{default:n(o=>[e(r,{size:"small",text:"",type:"warning",onClick:v=>t.onEditEvent(o.row)},{default:n(()=>[Wt]),_:2},1032,["onClick"]),e(r,{size:"small",text:"",type:"danger",onClick:v=>t.onRowDel(o.row.key,"event")},{default:n(()=>[xt]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])):C("",!0)]),_:1}),e(_,{label:"\u6807\u7B7E\u5B9A\u4E49",name:"tab"},{default:n(()=>[l("div",te,[ee,l("div",null,[e(r,{type:"primary",onClick:i[5]||(i[5]=o=>t.onOpenEditTab())},{default:n(()=>[ae]),_:1})])]),t.activetab=="tab"?(m(),b(g,{key:0,style:{width:"100%"},data:t.tableData.data},{default:n(()=>[e(a,{label:"\u5C5E\u6027\u6807\u8BC6",align:"center",prop:"key"}),e(a,{label:"\u5C5E\u6027\u540D\u79F0",prop:"name","show-overflow-tooltip":!0}),e(a,{prop:"valueType",label:"\u6570\u636E\u7C7B\u578B",width:"120",align:"center"},{default:n(o=>[l("span",null,c(o.row.valueType.type),1)]),_:1}),e(a,{prop:"accessMode",label:"\u662F\u5426\u53EA\u8BFB",width:"120",align:"center"},{default:n(o=>[o.row.accessMode?(m(),b(F,{key:0,type:"info",size:"small"},{default:n(()=>[oe]),_:1})):(m(),b(F,{key:1,type:"success",size:"small"},{default:n(()=>[ne]),_:1}))]),_:1}),e(a,{label:"\u63CF\u8FF0",prop:"desc","show-overflow-tooltip":!0}),e(a,{label:"\u64CD\u4F5C",width:"300",align:"center",fixed:"right"},{default:n(o=>[e(r,{size:"small",text:"",type:"warning",onClick:v=>t.onEditTag(o.row)},{default:n(()=>[le]),_:2},1032,["onClick"]),e(r,{size:"small",text:"",type:"danger",onClick:v=>t.onRowDel(o.row.key,"tab")},{default:n(()=>[se]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])):C("",!0)]),_:1})]),_:1},8,["modelValue","onTabClick"]),G(e(z,{total:t.tableData.total,page:t.tableData.param.pageNum,"onUpdate:page":i[7]||(i[7]=o=>t.tableData.param.pageNum=o),limit:t.tableData.param.pageSize,"onUpdate:limit":i[8]||(i[8]=o=>t.tableData.param.pageSize=o),onPagination:t.getList},null,8,["total","page","limit","onPagination"]),[[H,t.tableData.total>0]])])]),_:1}),e(_,{label:"\u8BBE\u5907\u63A5\u5165",name:"3"},{default:n(()=>[e(R)]),_:1}),e(_,{label:"\u6570\u636E\u89E3\u6790",name:"4",lazy:""},{default:n(()=>[t.activeName==="4"?(m(),b($,{key:0,script:t.detail.scriptInfo,onUpdateScript:t.updateScript},null,8,["script","onUpdateScript"])):C("",!0)]),_:1})]),_:1},8,["modelValue","onTabClick"])]),e(O,{ref:"editDicRef",onTypeList:t.typeList},null,8,["onTypeList"]),e(S,{ref:"editAttrRef",onTypeList:t.getproperty},null,8,["onTypeList"]),e(L,{ref:"editFunRef",onTypeList:t.getfunction},null,8,["onTypeList"]),e(N,{ref:"editEventRef",onTypeList:t.getevent},null,8,["onTypeList"]),e(V,{ref:"editTabRef",onTypeList:t.gettab},null,8,["onTypeList"])])}var we=Q(it,[["render",ie],["__scopeId","data-v-4f4d1e27"]]);export{we as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046954.css b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046954.css new file mode 100644 index 0000000..58a444c --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046954.css @@ -0,0 +1 @@ +.my-header[data-v-7f2f5c47]{display:flex;flex-direction:row;justify-content:space-between} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046954.js b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046954.js new file mode 100644 index 0000000..4d0b800 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046954.js @@ -0,0 +1 @@ +import b from"./serverDetail.1701184304695.js";import{L as g,a2 as k,h as D,k as y,ab as f,S as E,T as o,aD as B,aF as R,ai as a,o as x,_ as e,b as N,Y as h}from"./vue.1701184304695.js";import{a as V}from"./index.170118430469527.js";import{_ as $,E as F}from"./index.1701184304695.js";const T=g({name:"tunnelDetail",components:{serverDetail:b},props:{type:{type:String,default:""}},setup(t,c){const l=B(),p=R(),u=k({resourceModalPro:{mode:"",content:""},detail:{}}),_=D("first"),i=()=>{const s=l.params&&l.params.id;V.server.getDetail({id:s}).then(n=>{console.log(n),u.detail=n})},r=()=>{i(),F.success("\u5237\u65B0\u6210\u529F")},d=()=>{p.push(`/iotmanager/network/server/edit/${l.params&&l.params.id}`)};return y(()=>{i()}),{toEdit:d,activeName:_,freshData:r,getDetail:i,handleClick:(s,n)=>{console.log(s,n)},...f(t),...f(u)}}}),A=h("\u76F8\u5173\u8BE6\u60C5"),M=h("\u901A\u9053"),w={style:{position:"absolute",right:"20px",top:"34px"}};function z(t,c,l,p,u,_){const i=a("serverDetail"),r=a("el-tab-pane"),d=a("el-tabs"),m=a("ele-RefreshRight"),s=a("el-icon"),n=a("ele-Edit"),v=a("el-card");return x(),E(v,{class:"system-dic-container",style:{position:"relative"}},{default:o(()=>[e(d,{modelValue:t.activeName,"onUpdate:modelValue":c[0]||(c[0]=C=>t.activeName=C),class:"demo-tabs",onTabClick:t.handleClick},{default:o(()=>[e(r,{label:"\u670D\u52A1\u5668\u8BE6\u60C5",name:"first"},{default:o(()=>[e(i,{detail:t.detail},null,8,["detail"])]),_:1}),e(r,{label:"\u76F8\u5173\u8BE6\u60C5",name:"second"},{default:o(()=>[A]),_:1}),e(r,{label:"\u901A\u9053",name:"third"},{default:o(()=>[M]),_:1})]),_:1},8,["modelValue","onTabClick"]),N("div",w,[e(s,{onClick:t.freshData,style:{"font-size":"16px","margin-right":"6px"}},{default:o(()=>[e(m)]),_:1},8,["onClick"]),e(s,{onClick:t.toEdit,style:{cursor:"pointer","font-size":"16px"}},{default:o(()=>[e(n)]),_:1},8,["onClick"])])]),_:1})}var Y=$(T,[["render",z]]);export{Y as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046955.css b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046955.css new file mode 100644 index 0000000..ea8833f --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046955.css @@ -0,0 +1 @@ +.content{background:#fff;width:100%;padding:20px}.content-box{background:#fff;width:100%;padding:20px;margin-top:20px}.cont_box{display:flex}.cont_box .title{font-size:18px}.cont_box .pro-status{line-height:30px;margin-left:30px}.cont_box .pro-status .on{background:#52c41a}.cont_box .pro-status .off{background:#c41a1a}.cont_box .pro-status span{position:relative;top:-1px;display:inline-block;width:6px;height:6px;vertical-align:middle;border-radius:50%;margin-right:5px}.cont_box .pro-option{line-height:30px;margin-left:10px;color:#1890ff;cursor:pointer}.content-box .pro-box{display:flex;padding:10px}.content-box .pro-box .protitle{font-size:18px;font-weight:700;line-height:35px}.content-box .pro-box .buttonedit{border:0px;color:#1890ff}table{border-collapse:collapse;text-indent:initial;border-spacing:2px}tbody{box-sizing:border-box;display:table-row-group;vertical-align:middle;border-color:inherit}tr{display:table-row;vertical-align:inherit;border-color:inherit}.ant-descriptions-view{width:100%;overflow:hidden;border-radius:4px}.ant-descriptions-view{border:1px solid #e8e8e8}.ant-descriptions-view table{width:100%;table-layout:fixed}.ant-descriptions-view>table{table-layout:auto}.ant-descriptions-row{border-bottom:1px solid #e8e8e8}.ant-descriptions-item-label{color:#000000d9;font-weight:400;font-size:14px;line-height:1.5}.ant-descriptions-item-label{padding:16px 24px;border-right:1px solid #e8e8e8}.ant-descriptions-item-label{background-color:#fafafa}.ant-descriptions-item-content{padding:16px 24px;border-right:1px solid #e8e8e8;display:table-cell;color:#000000a6;font-size:14px;line-height:1.5}.wu-box{border:#e8e8e8 solid 1px;padding:20px;width:100%}.wu-box .wu-title{display:flex;flex-direction:row;justify-content:space-between;padding:20px;border-bottom:#e8e8e8 1px solid}.wu-box .wu-title .title{font-size:18px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046955.js b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046955.js new file mode 100644 index 0000000..6a17323 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046955.js @@ -0,0 +1 @@ +import g from"./serverDetail.17011843046952.js";import{L as C,a2 as D,h as E,k,ab as _,S as y,T as o,aD as B,aF as R,ai as a,o as x,_ as e,b as N,Y as f}from"./vue.1701184304695.js";import{a as V}from"./index.170118430469527.js";import{_ as $,E as F}from"./index.1701184304695.js";const A=C({name:"tunnelDetail",components:{serverDetail:g},props:{type:{type:String,default:""}},setup(t,l){const s=B(),p=R(),c=D({resourceModalPro:{mode:"",content:""},detail:{}}),m=E("first"),n=()=>{const d=s.params&&s.params.id;V.tunnel.getDetail({id:d}).then(i=>{c.detail=i})},r=()=>{n(),F.success("\u5237\u65B0\u6210\u529F")},u=()=>{p.push(`/iotmanager/network/tunnel/edit/${s.params&&s.params.id}`)};return k(()=>{n()}),{activeName:m,toEdit:u,freshData:r,getDetail:n,..._(t),..._(c)}}}),M=f("\u76F8\u5173\u8BE6\u60C5"),w=f("\u901A\u9053"),z={style:{position:"absolute",right:"20px",top:"34px"}};function S(t,l,s,p,c,m){const n=a("serverDetail"),r=a("el-tab-pane"),u=a("el-tabs"),d=a("ele-RefreshRight"),i=a("el-icon"),h=a("ele-Edit"),b=a("el-card");return x(),y(b,{class:"system-dic-container",style:{position:"relative"}},{default:o(()=>[e(u,{modelValue:t.activeName,"onUpdate:modelValue":l[0]||(l[0]=v=>t.activeName=v),class:"demo-tabs"},{default:o(()=>[e(r,{label:"\u901A\u9053\u8BE6\u60C5",name:"first"},{default:o(()=>[e(n,{detail:t.detail},null,8,["detail"])]),_:1}),e(r,{label:"\u76F8\u5173\u8BE6\u60C5",name:"second"},{default:o(()=>[M]),_:1}),e(r,{label:"\u901A\u9053",name:"third"},{default:o(()=>[w]),_:1})]),_:1},8,["modelValue"]),N("div",z,[e(i,{onClick:t.freshData,style:{cursor:"pointer","font-size":"16px","margin-right":"6px"}},{default:o(()=>[e(d)]),_:1},8,["onClick"]),e(i,{onClick:t.toEdit,style:{cursor:"pointer","font-size":"16px"}},{default:o(()=>[e(h)]),_:1},8,["onClick"])])]),_:1})}var Y=$(A,[["render",S]]);export{Y as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046956.css b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046956.css new file mode 100644 index 0000000..3e2f876 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046956.css @@ -0,0 +1 @@ +.content{background:#fff;width:100%;padding:20px}.content-box{background:#fff;width:100%;padding:20px;margin-top:20px}.cont_box{display:flex}.cont_box .title{font-size:18px}.cont_box .pro-status{line-height:30px;margin-left:30px}.cont_box .pro-status .on{background:#52c41a}.cont_box .pro-status .off{background:#c41a1a}.cont_box .pro-status span{position:relative;top:-1px;display:inline-block;width:6px;height:6px;vertical-align:middle;border-radius:50%;margin-right:5px}.cont_box .pro-option{line-height:30px;margin-left:10px;color:#1890ff;cursor:pointer}.content-box .pro-box{display:flex;padding:10px}.content-box .pro-box .protitle{font-size:18px;font-weight:700;line-height:35px}.content-box .pro-box .buttonedit{border:0px;color:#1890ff} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046956.js b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046956.js new file mode 100644 index 0000000..9512ad9 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046956.js @@ -0,0 +1 @@ +import{_ as p}from"./index.1701184304695.js";import{L as h,h as D,a2 as g,ab as C,a as w,_ as n,T as t,ai as a,o as b,b as f,Y as B}from"./vue.1701184304695.js";const V=h({name:"Edit",setup(e,{emit:s}){const c=D(null),o=g({isShowDialog:!1,content:""}),r=i=>{o.content=i.content,o.isShowDialog=!0},l=()=>{o.isShowDialog=!1};return{openDialog:r,closeDialog:l,onCancel:()=>{l()},formRef:c,...C(o)}}}),v={class:"system-edit-dic-container"},S=["innerHTML"],k={class:"dialog-footer"},E=B("\u53D6 \u6D88");function T(e,s,c,o,r,l){const d=a("el-form-item"),i=a("el-form"),_=a("el-button"),u=a("el-dialog");return b(),w("div",v,[n(u,{title:"\u65E5\u5FD7\u8BE6\u60C5",modelValue:e.isShowDialog,"onUpdate:modelValue":s[0]||(s[0]=m=>e.isShowDialog=m),width:"769px"},{footer:t(()=>[f("span",k,[n(_,{onClick:e.onCancel,size:"default"},{default:t(()=>[E]),_:1},8,["onClick"])])]),default:t(()=>[n(i,{ref:"formRef",size:"default","label-width":"110px"},{default:t(()=>[n(d,{label:"\u5185\u5BB9"},{default:t(()=>[f("div",{innerHTML:e.content},null,8,S)]),_:1})]),_:1},512)]),_:1},8,["modelValue"])])}var L=p(V,[["render",T]]);export{L as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046957.js b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046957.js new file mode 100644 index 0000000..50adb84 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046957.js @@ -0,0 +1 @@ +import{L as M,h as O,a2 as U,k as q,ab as I,a as T,b as p,Z as y,O as Q,Y as v,_ as t,T as o,U as i,S as B,aD as X,ai as d,as as A,o as _,aa as V,X as E}from"./vue.1701184304695.js";import{_ as Y,F as Z,E as w,h as j}from"./index.1701184304695.js";import G from"./editNode.1701184304695.js";import H from"./relation.1701184304695.js";import{a as h}from"./index.17011843046957.js";const J=M({name:"dataDetail",components:{EditDic:G,RelationDic:H},setup(e,c){const b=O(),g=O(),r=X(),u=U({config:{},isShowDialog:!1,detail:[],developer_status:0,tableData:{data:[],total:0,loading:!1,param:{pageNum:1,pageSize:10,tid:r.params&&r.params.id,status:"",dateRange:[]}}});q(()=>{const a=r.params&&r.params.id;h.template.detail(a).then(s=>{u.detail=s.data,u.developer_status=s.data.status}),f()});const f=()=>{u.tableData.loading=!0,h.tnode.getList(u.tableData.param).then(a=>{u.tableData.data=a.list}).finally(()=>u.tableData.loading=!1)};return{Edit:Z,CkOption:()=>{h.template.relation_check(r.params.id).then(a=>{if(a.yes&&u.developer_status==0){let s={id:r.params.id};g.value.openDialog(s)}else u.developer_status==1?h.tnode.undeploy({id:r.params.id}).then(s=>{w.success("\u64CD\u4F5C\u6210\u529F"),u.developer_status=0}):h.tnode.deploy({id:r.params.id}).then(s=>{w.success("\u64CD\u4F5C\u6210\u529F"),u.developer_status=1})})},relationRef:g,editDicRef:b,onOpenAdd:()=>{b.value.openDialog({tid:r.params.id,id:0,from:1,isSorting:0,isDesc:1})},typeList:f,onRowDel:a=>{let s="\u4F60\u786E\u5B9A\u8981\u5220\u9664\u6240\u9009\u6570\u636E\uFF1F",l=[];if(a?(s=`\u6B64\u64CD\u4F5C\u5C06\u6C38\u4E45\u5220\u9664\u6570\u636E\u8282\u70B9\uFF1A\u201C${a.name}\u201D\uFF0C\u662F\u5426\u7EE7\u7EED?`,l=a.id):l=u.ids,l.length===0){w.error("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u6570\u636E\u3002");return}j.confirm(s,"\u63D0\u793A",{confirmButtonText:"\u786E\u8BA4",cancelButtonText:"\u53D6\u6D88",type:"warning"}).then(()=>{h.tnode.delete(l).then(()=>{w.success("\u5220\u9664\u6210\u529F"),f()})}).catch(()=>{})},onOpenEdit:a=>{b.value.openDialog(a)},handleClick:(a,s)=>{console.log(a,s)},...I(u)}}}),P={class:"system-dic-container"},W={class:"content"},x={class:"cont_box"},ee={class:"title"},te={class:"title",style:{"margin-left":"20px"}},ae={class:"pro-status"},oe={class:"content-box"},le={class:"wu-box"},ue={class:"system-user-search mb15"},se=v(" \u67E5\u8BE2 "),ne=v(" \u91CD\u7F6E "),ie=v(" \u65B0\u589E\u5B57\u6BB5\u8282\u70B9 "),de={key:0},re=v("\u4FEE\u6539"),pe=v("\u5220\u9664");function ce(e,c,b,g,r,u){const f=d("el-input"),C=d("el-form-item"),R=d("ele-Search"),F=d("el-icon"),D=d("el-button"),L=d("ele-Refresh"),a=d("ele-FolderAdd"),s=d("el-form"),l=d("el-table-column"),z=d("el-table"),$=d("EditDic"),S=d("RelationDic"),k=A("auth"),m=A("col"),K=A("loading");return _(),T("div",P,[p("div",W,[p("div",x,[p("div",ee,"\u6A21\u578B\u6807\u8BC6\uFF1A"+y(e.detail.key),1),p("div",te,"\u6A21\u578B\u8868\u540D\uFF1A"+y(e.detail.name),1),p("div",ae,[p("span",{class:Q(e.developer_status==1?"on":"off")},null,2),v(y(e.developer_status==1?"\u5DF2\u53D1\u5E03":"\u672A\u53D1\u5E03"),1)]),p("div",{class:"pro-option",onClick:c[0]||(c[0]=(...n)=>e.CkOption&&e.CkOption(...n))},y(e.developer_status==1?"\u505C\u7528":"\u53D1\u5E03"),1)])]),p("div",oe,[p("div",le,[p("div",ue,[t(s,{model:e.tableData.param,ref:"queryRef",inline:!0,"label-width":"130px"},{default:o(()=>[t(C,{label:"\u5B57\u6BB5\u6807\u9898",prop:"key"},{default:o(()=>[t(f,{modelValue:e.tableData.param.key,"onUpdate:modelValue":c[1]||(c[1]=n=>e.tableData.param.key=n),placeholder:"\u8BF7\u8F93\u5165\u5B57\u6BB5\u6807\u9898",clearable:"",size:"default",style:{width:"240px"},onKeyup:V(e.typeList,["enter","native"])},null,8,["modelValue","onKeyup"])]),_:1}),t(C,{label:"\u5B57\u6BB5\u540D\u79F0",prop:"name"},{default:o(()=>[t(f,{modelValue:e.tableData.param.name,"onUpdate:modelValue":c[2]||(c[2]=n=>e.tableData.param.name=n),placeholder:"\u8BF7\u8F93\u5165\u5B57\u6BB5\u540D\u79F0",clearable:"",size:"default",style:{width:"240px"},onKeyup:V(e.typeList,["enter","native"])},null,8,["modelValue","onKeyup"])]),_:1}),t(C,null,{default:o(()=>[t(D,{size:"default",type:"primary",class:"ml10",onClick:e.typeList},{default:o(()=>[t(F,null,{default:o(()=>[t(R)]),_:1}),se]),_:1},8,["onClick"]),t(D,{size:"default",onClick:c[3]||(c[3]=n=>e.resetQuery(e.queryRef))},{default:o(()=>[t(F,null,{default:o(()=>[t(L)]),_:1}),ne]),_:1}),e.developer_status==0?i((_(),B(D,{key:0,size:"default",type:"success",class:"ml10",onClick:e.onOpenAdd},{default:o(()=>[t(F,null,{default:o(()=>[t(a)]),_:1}),ie]),_:1},8,["onClick"])),[[k,"add"]]):E("",!0)]),_:1})]),_:1},8,["model"])]),i((_(),B(z,{data:e.tableData.data,style:{width:"100%"}},{default:o(()=>[i(t(l,{label:"ID",align:"center",prop:"id",width:"60"},null,512),[[m,"id"]]),i(t(l,{label:"\u5B57\u6BB5\u540D\u79F0",prop:"key",width:"120","show-overflow-tooltip":!0},null,512),[[m,"key"]]),i(t(l,{label:"\u5B57\u6BB5\u6807\u9898",prop:"name",width:"120","show-overflow-tooltip":!0},null,512),[[m,"name"]]),i(t(l,{label:"\u7C7B\u578B",prop:"dataType",width:"85","show-overflow-tooltip":!0},null,512),[[m,"dataType"]]),i((_(),B(l,{label:"\u6570\u636E\u6E90\u540D\u79F0",align:"center"},{default:o(n=>[n.row.from==2?(_(),T("span",de,y(n.row.source.name),1)):E("",!0)]),_:1})),[[m,"from"]]),i(t(l,{label:"\u9ED8\u8BA4\u503C",prop:"default",width:"80","show-overflow-tooltip":!0},null,512),[[m,"default"]]),i(t(l,{label:"\u5907\u6CE8\u8BF4\u660E",prop:"value",width:"100","show-overflow-tooltip":!0},null,512),[[m,"value"]]),i(t(l,{prop:"createdAt",label:"\u521B\u5EFA\u65F6\u95F4",align:"center",width:"160"},null,512),[[m,"createdAt"]]),t(l,{label:"\u64CD\u4F5C",width:"100",align:"center",fixed:"right"},{default:o(n=>[e.developer_status==0?i((_(),B(D,{key:0,size:"small",text:"",type:"warning",onClick:N=>e.onOpenEdit(n.row)},{default:o(()=>[re]),_:2},1032,["onClick"])),[[k,"edit"]]):E("",!0),e.developer_status==0?i((_(),B(D,{key:1,size:"small",text:"",type:"danger",onClick:N=>e.onRowDel(n.row)},{default:o(()=>[pe]),_:2},1032,["onClick"])),[[k,"del"]]):E("",!0)]),_:1})]),_:1},8,["data"])),[[K,e.tableData.loading]])])]),t($,{ref:"editDicRef",onTypeList:e.typeList},null,8,["onTypeList"]),t(S,{ref:"relationRef",onTypeList:e.typeList},null,8,["onTypeList"])])}var ve=Y(J,[["render",ce]]);export{ve as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046958.js b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046958.js new file mode 100644 index 0000000..2bc142d --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046958.js @@ -0,0 +1 @@ +import{L as y,h as C,a2 as F,ab as j,a as m,_ as f,T as p,ai as d,o as c,b as n,O as v,F as k,a8 as N,S as z,Z as S,X as B,Y as L,U as V,V as q,aB as E,aC as I}from"./vue.1701184304695.js";import{a as w}from"./index.17011843046957.js";import{_ as U}from"./index.1701184304695.js";const $=y({name:"deviceEditPro",setup(a,{emit:o}){const D=C(null),t=F({isShowDialog:!1,dialogFullScreen:!1,titleData:{},jsonsData:[],jData:[],tableData:{data:[],total:0,loading:!1,param:{pageNum:1,pageSize:10,id:0}}}),_=e=>{g(),e&&(t.tableData.param.id=e.id,w.tnode.getList({tid:e.id}).then(l=>{l.list.forEach((s,r)=>{t.titleData[s.key]=s.name}),console.log(t.titleData)}),u()),t.isShowDialog=!0},u=()=>{console.log(t.tableData.param),w.template.getdata(t.tableData.param).then(e=>{const l=JSON.parse(e.data);t.tableData.data=l,t.jData=Object.keys(l[0]),console.log(l),t.jData.forEach((s,r)=>{t.jsonsData[r]=l[s]}),t.tableData.total=e.Total})},g=()=>{t.jsonsData=[],t.jData=[],t.tableData={data:[],total:0,loading:!1,param:{pageNum:1,pageSize:10}}},i=()=>{t.isShowDialog=!1};return{quanping:()=>{t.dialogFullScreen=!t.dialogFullScreen},typeList:u,openDialog:_,closeDialog:i,onCancel:()=>{i()},formRef:D,...j(t)}}}),O=a=>(E("data-v-7f2f5c47"),a=a(),I(),a),P={class:"system-edit-dic-container"},T={class:"my-header"},R=["id"],J=["onClick"],M=O(()=>n("svg",{viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg","data-v-029747aa":""},[n("path",{fill:"currentColor",d:"M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"})],-1)),X=[M],Y={key:0};function Z(a,o,D,t,_,u){const g=d("el-table-column"),i=d("el-table"),h=d("pagination"),b=d("el-dialog");return c(),m("div",P,[f(b,{modelValue:a.isShowDialog,"onUpdate:modelValue":o[3]||(o[3]=e=>a.isShowDialog=e),"show-close":!1,width:"75%",fullscreen:a.dialogFullScreen},{header:p(({close:e,titleId:l,titleClass:s})=>[n("div",T,[n("h4",{id:l,class:v(s)},"\u6570\u636E\u8BB0\u5F55",10,R),n("div",null,[n("i",{class:v(["iconfont",a.dialogFullScreen?"icon-tuichuquanping":"icon-fullscreen"]),onClick:o[0]||(o[0]=(...r)=>a.quanping&&a.quanping(...r)),style:{"font-size":"22px",cursor:"pointer"}},null,2),n("i",{class:"el-icon",onClick:e,style:{"font-size":"22px",cursor:"pointer","margin-left":"10px",position:"relative",top:"3px"}},X,8,J)])])]),default:p(()=>[f(i,{data:a.tableData.data,style:{width:"100%"}},{default:p(()=>[(c(!0),m(k,null,N(a.jData,(e,l)=>(c(),z(g,{key:e,label:e,prop:e,"show-overflow-tooltip":"",align:"center"},{header:p(()=>[n("div",null,S(e),1),n("div",null,[e=="created_at"?(c(),m("span",Y,"\u65F6\u95F4")):B("",!0),L(" "+S(a.titleData[e]),1)])]),_:2},1032,["label","prop"]))),128))]),_:1},8,["data"]),V(f(h,{total:a.tableData.total,page:a.tableData.param.pageNum,"onUpdate:page":o[1]||(o[1]=e=>a.tableData.param.pageNum=e),limit:a.tableData.param.pageSize,"onUpdate:limit":o[2]||(o[2]=e=>a.tableData.param.pageSize=e),onPagination:a.typeList},null,8,["total","page","limit","onPagination"]),[[q,a.tableData.total>0]])]),_:1},8,["modelValue","fullscreen"])])}var K=U($,[["render",Z],["__scopeId","data-v-7f2f5c47"]]);export{K as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046959.js b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046959.js new file mode 100644 index 0000000..d67b01d --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/detail.17011843046959.js @@ -0,0 +1 @@ +import{L as J,h as K,a2 as q,k as U,ab as M,a as d,b,Z as o,O as X,Y as u,U as c,_ as t,T as a,aD as Y,ai as f,as as A,o as i,X as _,F as O,a8 as T,S as V,V as Z}from"./vue.1701184304695.js";import{_ as G,F as H,E as N,h as Q}from"./index.1701184304695.js";/* empty css */import W from"./editNode.17011843046952.js";import{a as C}from"./index.17011843046957.js";const x=J({name:"dataDetail",components:{EditDic:W},setup(e,E){const D=K(),v=Y(),n=q({config:{},jsonData:{},ruledata:[{expression:"",params:{}}],rule:[{expression:"",params:{name:"",value:""}}],requestParams:[{type:"",key:"",name:"",value:""}],isShowDialog:!1,detail:[],activeName:"1",developer_status:0,tableData:{data:[],total:0,loading:!1,param:{pageNum:1,pageSize:10,sourceId:v.params&&v.params.sourceId,status:"",dateRange:[]}}});U(()=>{const s=v.params&&v.params.sourceId;C.common.detail(s).then(m=>{n.detail=m.data,n.developer_status=m.data.status,n.config=m.data.apiConfig,n.requestParams=m.data.apiConfig.requestParams}),h()});const h=()=>{n.tableData.loading=!0,C.node.getList(n.tableData.param).then(s=>{n.tableData.data=s.list,n.tableData.total=s.Total}).finally(()=>n.tableData.loading=!1)};return{Edit:H,editDicRef:D,typeList:h,onRowDel:s=>{let m="\u4F60\u786E\u5B9A\u8981\u5220\u9664\u6240\u9009\u6570\u636E\uFF1F",r=[];if(s?(m=`\u6B64\u64CD\u4F5C\u5C06\u6C38\u4E45\u5220\u9664\u6570\u636E\u8282\u70B9\uFF1A\u201C${s.name}\u201D\uFF0C\u662F\u5426\u7EE7\u7EED?`,r=s.nodeId):r=n.ids,r.length===0){N.error("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u6570\u636E\u3002");return}Q.confirm(m,"\u63D0\u793A",{confirmButtonText:"\u786E\u8BA4",cancelButtonText:"\u53D6\u6D88",type:"warning"}).then(()=>{C.node.delete(r).then(()=>{N.success("\u5220\u9664\u6210\u529F"),h()})}).catch(()=>{})},onOpenEdit:()=>{D.value.openDialog({sourceId:v.params.sourceId,nodeId:0,isPk:0})},onOpenEdit1:s=>{D.value.openDialog(s)},handleClick:(s,m)=>{console.log(s.props.name,m),s.props.name==3&&(n.detail.from==1?C.common.api(n.detail.sourceId).then(r=>{n.jsonData=JSON.parse(r.data),console.log(r)}):n.detail.from==4?C.common.devapi(n.detail.sourceId).then(r=>{n.jsonData=JSON.parse(r.data),console.log(r)}):n.detail.from==2&&C.common.devdb(n.detail.sourceId).then(r=>{n.jsonData=JSON.parse(r.data),console.log(r)}))},CkOption:()=>{n.developer_status==1?C.common.undeploy({sourceId:v.params.sourceId}).then(s=>{N.success("\u64CD\u4F5C\u6210\u529F"),n.developer_status=0}):C.common.deploy({sourceId:v.params.sourceId}).then(s=>{N.success("\u64CD\u4F5C\u6210\u529F"),n.developer_status=1})},...M(n)}}}),ee={class:"system-dic-container"},te={class:"content"},ae={class:"cont_box"},ue={class:"title"},oe={class:"pro-status"},le={class:"content-box"},ne=u("\u57FA\u672C\u4FE1\u606F"),se={key:0},ie={key:1},de={key:2},re={key:3},pe={key:0},ce=u("\u6570\u636E\u6E90\u914D\u7F6E"),me={key:1},fe=u("\u6570\u636E\u6E90\u914D\u7F6E"),_e={key:2},be=u("\u89C4\u5219\u8868\u8FBE\u5F0F"),Ee=u("\u6570\u636E\u6E90\u914D\u7F6E"),ve=u("\u8BF7\u6C42\u53C2\u6570"),Ce={class:"wu-box"},Fe={class:"wu-title"},ge=b("div",{class:"title"},"\u6570\u636E\u8282\u70B9",-1),De={key:0},he=u("\u6DFB\u52A0"),ye=u("\u4FEE\u6539"),ke=u("\u5220\u9664"),Be={class:"wu-box"};function we(e,E,D,v,n,h){const F=f("el-divider"),l=f("el-form-item"),L=f("el-form"),y=f("el-tab-pane"),k=f("el-button"),s=f("el-table-column"),m=f("el-table"),r=f("pagination"),R=f("JsonViewer"),S=f("el-tabs"),$=f("EditDic"),B=A("auth"),g=A("col"),P=A("loading");return i(),d("div",ee,[b("div",te,[b("div",ae,[b("div",ue,"\u6570\u636E\u6E90\u540D\u79F0\uFF1A"+o(e.detail.name),1),b("div",oe,[b("span",{class:X(e.developer_status==1?"on":"off")},null,2),u(o(e.developer_status==1?"\u5DF2\u53D1\u5E03":"\u672A\u53D1\u5E03"),1)]),c((i(),d("div",{class:"pro-option",onClick:E[0]||(E[0]=(...p)=>e.CkOption&&e.CkOption(...p))},[u(o(e.developer_status==1?"\u505C\u7528":"\u53D1\u5E03"),1)])),[[B,"pro-status"]])])]),b("div",le,[t(S,{modelValue:e.activeName,"onUpdate:modelValue":E[3]||(E[3]=p=>e.activeName=p),class:"demo-tabs",onTabClick:e.handleClick},{default:a(()=>[t(y,{label:"\u6570\u636E\u6E90\u4FE1\u606F",name:"1"},{default:a(()=>[t(L,{size:"default","label-width":"110px",inline:!0},{default:a(()=>[t(F,{"content-position":"left"},{default:a(()=>[ne]),_:1}),t(l,{label:"\u6570\u636E\u6E90\u6807\u8BC6:"},{default:a(()=>[u(o(e.detail.key),1)]),_:1}),t(l,{label:"\u6570\u636E\u6E90\u540D\u79F0:"},{default:a(()=>[u(o(e.detail.name),1)]),_:1}),t(l,{label:"\u6570\u636E\u6E90\u63CF\u8FF0:"},{default:a(()=>[u(o(e.detail.desc),1)]),_:1}),t(l,{label:"\u6570\u636E\u6765\u6E90:"},{default:a(()=>[e.detail.from==1?(i(),d("span",se,"api\u5BFC\u5165")):_("",!0),e.detail.from==2?(i(),d("span",ie,"\u6570\u636E\u5E93")):_("",!0),e.detail.from==3?(i(),d("span",de,"\u6587\u4EF6")):_("",!0),e.detail.from==4?(i(),d("span",re,"\u8BBE\u5907")):_("",!0)]),_:1}),e.detail.from==4?(i(),d("div",pe,[t(F,{"content-position":"left"},{default:a(()=>[ce]),_:1}),t(l,{label:"\u8BBE\u5907key:",prop:"deviceKey"},{default:a(()=>[u(o(e.detail.deviceConfig.deviceKey),1)]),_:1}),t(l,{label:"\u4EA7\u54C1key:",prop:"productKey"},{default:a(()=>[u(o(e.detail.deviceConfig.productKey),1)]),_:1})])):_("",!0),e.detail.from==2?(i(),d("div",me,[t(F,{"content-position":"left"},{default:a(()=>[fe]),_:1}),t(l,{label:"\u6570\u636E\u6765\u6E90:",prop:"type"},{default:a(()=>[u(o(e.detail.dbConfig.type),1)]),_:1}),t(l,{label:"\u4E3B\u673A\u5730\u5740:",prop:"host"},{default:a(()=>[u(o(e.detail.dbConfig.host),1)]),_:1}),t(l,{label:"\u7AEF\u53E3\u53F7:",prop:"port"},{default:a(()=>[u(o(e.detail.dbConfig.port),1)]),_:1}),t(l,{label:"\u7528\u6237\u540D:",prop:"user"},{default:a(()=>[u(o(e.detail.dbConfig.user),1)]),_:1}),t(l,{label:"\u5BC6\u7801:",prop:"passwd"},{default:a(()=>[u(o(e.detail.dbConfig.passwd),1)]),_:1}),t(l,{label:"\u6570\u636E\u5E93\u540D\u79F0:",prop:"dbName"},{default:a(()=>[u(o(e.detail.dbConfig.dbName),1)]),_:1}),t(l,{label:"\u8868\u540D\u79F0:",prop:"tableName"},{default:a(()=>[u(o(e.detail.dbConfig.tableName),1)]),_:1}),t(l,{label:"\u4E3B\u952E\u5B57\u6BB5:",prop:"pk"},{default:a(()=>[u(o(e.detail.dbConfig.pk),1)]),_:1}),t(l,{label:"\u6BCF\u6B21\u83B7\u53D6\u6570\u91CF:",prop:"num"},{default:a(()=>[u(o(e.detail.dbConfig.num),1)]),_:1}),t(l,{label:"\u4EFB\u52A1\u8868\u8FBE\u5F0F:",prop:"cronExpression"},{default:a(()=>[u(o(e.detail.dbConfig.cronExpression),1)]),_:1})])):_("",!0),e.detail.from==1?(i(),d("div",_e,[t(F,{"content-position":"left"},{default:a(()=>[be]),_:1}),(i(!0),d(O,null,T(e.rule,(p,I)=>(i(),d("div",{key:I},[t(l,{label:"\u8868\u8FBE\u5F0F:"},{default:a(()=>[u(o(p.expression),1)]),_:2},1024),t(l,{label:"\u53C2\u6570:"},{default:a(()=>[u(o(p.params.name)+"~ "+o(p.params.value),1)]),_:2},1024),t(F,{"content-position":"left"},{default:a(()=>[Ee]),_:1}),t(l,{label:"\u8BF7\u6C42\u65B9\u6CD5:",prop:"method"},{default:a(()=>[u(o(e.config.method),1)]),_:1}),t(l,{label:"\u8BF7\u6C42\u5730\u5740:",prop:"method"},{default:a(()=>[u(o(e.config.url),1)]),_:1}),t(l,{label:"\u66F4\u65B0\u65F6\u95F4:",prop:"method"},{default:a(()=>[u(o(e.config.interval)+" "+o(e.config.intervalUnit),1)]),_:1}),t(F,{"content-position":"left"},{default:a(()=>[ve]),_:1}),(i(!0),d(O,null,T(e.requestParams,(j,z)=>(i(),d("div",{class:"content-f",key:z,style:{border:"1px solid #d9d9d9",padding:"10px","margin-bottom":"10px"}},[(i(!0),d(O,null,T(j,(w,Ne)=>(i(),d("div",{key:e.inbbdex},[t(l,{label:"\u53C2\u6570\u7C7B\u578B:"},{default:a(()=>[u(o(w.type),1)]),_:2},1024),t(l,{label:"\u53C2\u6570\u6807\u9898:"},{default:a(()=>[u(o(w.name),1)]),_:2},1024),t(l,{label:"\u53C2\u6570\u540D:"},{default:a(()=>[u(o(w.key),1)]),_:2},1024),t(l,{label:"\u53C2\u6570\u503C:"},{default:a(()=>[u(o(w.value),1)]),_:2},1024)]))),128))]))),128))]))),128))])):_("",!0)]),_:1})]),_:1}),t(y,{label:"\u6570\u636E\u8282\u70B9",name:"2"},{default:a(()=>[b("div",Ce,[b("div",Fe,[ge,e.developer_status==0?c((i(),d("div",De,[t(k,{type:"primary",onClick:E[1]||(E[1]=p=>e.onOpenEdit())},{default:a(()=>[he]),_:1})])),[[B,"add"]]):_("",!0)]),c((i(),V(m,{data:e.tableData.data,style:{width:"100%"}},{default:a(()=>[c(t(s,{label:"ID",align:"center",prop:"nodeId",width:"80"},null,512),[[g,"id"]]),c(t(s,{label:"\u6570\u636E\u6807\u8BC6",prop:"key","show-overflow-tooltip":!0},null,512),[[g,"key"]]),c(t(s,{label:"\u6570\u636E\u540D\u79F0",prop:"name","show-overflow-tooltip":!0},null,512),[[g,"name"]]),c(t(s,{label:"\u6570\u636E\u7C7B\u578B",prop:"dataType","show-overflow-tooltip":!0},null,512),[[g,"dataType"]]),c(t(s,{label:"\u6570\u636E\u53D6\u503C\u9879",prop:"value","show-overflow-tooltip":!0},null,512),[[g,"value"]]),c(t(s,{prop:"createdAt",label:"\u521B\u5EFA\u65F6\u95F4",align:"center",width:"180"},null,512),[[g,"createdAt"]]),t(s,{label:"\u64CD\u4F5C",width:"200",align:"center",fixed:"right"},{default:a(p=>[e.developer_status==0?c((i(),V(k,{key:0,size:"small",text:"",type:"warning",onClick:I=>e.onOpenEdit1(p.row)},{default:a(()=>[ye]),_:2},1032,["onClick"])),[[B,"edit"]]):_("",!0),e.developer_status==0?c((i(),V(k,{key:1,size:"small",text:"",type:"danger",onClick:I=>e.onRowDel(p.row)},{default:a(()=>[ke]),_:2},1032,["onClick"])),[[B,"del"]]):_("",!0)]),_:1})]),_:1},8,["data"])),[[P,e.tableData.loading]]),c(t(r,{total:e.tableData.total,page:e.tableData.param.pageNum,"onUpdate:page":E[2]||(E[2]=p=>e.tableData.param.pageNum=p),onPagination:e.typeList},null,8,["total","page","onPagination"]),[[Z,e.tableData.total>0]])])]),_:1}),t(y,{label:"\u67E5\u770B\u6570\u636E",name:"3"},{default:a(()=>[b("div",Be,[t(R,{value:e.jsonData,boxed:"",sort:"",theme:"jv-dark",onClick:e.onKeyclick},null,8,["value","onClick"])])]),_:1})]),_:1},8,["modelValue","onTabClick"])]),t($,{ref:"editDicRef",onTypeList:e.typeList},null,8,["onTypeList"])])}var Le=G(x,[["render",we]]);export{Le as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/deviceIn.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/deviceIn.1701184304695.css new file mode 100644 index 0000000..0781bb1 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/deviceIn.1701184304695.css @@ -0,0 +1 @@ +.title[data-v-04614424]{font-weight:700;line-height:1.2;border-left:4px solid #409eff;padding-left:8px;margin:20px 0 14px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/deviceIn.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/deviceIn.1701184304695.js new file mode 100644 index 0000000..223a761 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/deviceIn.1701184304695.js @@ -0,0 +1 @@ +import{L as h,a2 as m,a as d,b as a,Z as t,F as _,_ as n,T as u,S as r,X as B,Y as o,aD as v,ai as f,o as s,aB as y,aC as k}from"./vue.1701184304695.js";import{_ as F}from"./index.1701184304695.js";const i=l=>(y("data-v-04614424"),l=l(),k(),l),T=i(()=>a("div",{class:"title"},"\u63A5\u5165\u65B9\u5F0F",-1)),x={class:"text"},C=i(()=>a("div",{class:"title"},"\u6D88\u606F\u534F\u8BAE",-1)),b={class:"text"},A=i(()=>a("div",{class:"title"},"\u8BA4\u8BC1\u8BF4\u660E",-1)),I={class:"text"},w=i(()=>a("div",{class:"title"},"\u94FE\u63A5\u4FE1\u606F",-1)),E={class:"text"},N=i(()=>a("div",{class:"title"},"\u8BA4\u8BC1\u914D\u7F6E",-1)),g=o("\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458"),S=h({__name:"deviceIn",setup(l){v();const p=localStorage.userId=="1",e=m({name:"",protocol:"",description:"",link:"",authType:0,authUser:"",authPasswd:"",accessToken:"",certificateName:"",certificateId:0});return(D,V)=>{const c=f("el-form-item");return s(),d(_,null,[T,a("div",x,t(e.name),1),C,a("div",b,t(e.protocol),1),A,a("div",I,t(e.description),1),w,a("div",E,t(e.link),1),N,p?e.authType===1||e.authType===2?(s(),d(_,{key:1},[n(c,{label:"\u8BA4\u8BC1\u65B9\u5F0F",prop:"authType","label-width":"80px",style:{"margin-bottom":"0"}},{default:u(()=>[o(t(e.authType===1?"Basic":"AccessToken"),1)]),_:1}),e.authType===1?(s(),d(_,{key:0},[n(c,{label:"\u7528\u6237\u540D",prop:"authUser","label-width":"80px",style:{"margin-bottom":"0"}},{default:u(()=>[o(t(e.authUser),1)]),_:1}),n(c,{label:"\u5BC6\u7801",prop:"authPasswd","label-width":"80px"},{default:u(()=>[o(t(e.authPasswd),1)]),_:1})],64)):(s(),r(c,{key:1,label:"Aceess Token",prop:"accessToken"},{default:u(()=>[o(t(e.accessToken),1)]),_:1}))],64)):e.authType===3?(s(),r(c,{key:2,label:"\u8BA4\u8BC1\u8BC1\u4E66",prop:"certificateName"},{default:u(()=>[o(t(e.certificateName),1)]),_:1})):B("",!0):(s(),d(_,{key:0},[g],64))],64)}}});var L=F(S,[["__scopeId","data-v-04614424"]]);export{L as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/echarts.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/echarts.1701184304695.js new file mode 100644 index 0000000..a9ca613 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/echarts.1701184304695.js @@ -0,0 +1,73 @@ +/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */var Qc=function(r,e){return Qc=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,a){t.__proto__=a}||function(t,a){for(var i in a)Object.prototype.hasOwnProperty.call(a,i)&&(t[i]=a[i])},Qc(r,e)};function O(r,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");Qc(r,e);function t(){this.constructor=r}r.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}var QL=function(){function r(){this.firefox=!1,this.ie=!1,this.edge=!1,this.newEdge=!1,this.weChat=!1}return r}(),JL=function(){function r(){this.browser=new QL,this.node=!1,this.wxa=!1,this.worker=!1,this.svgSupported=!1,this.touchEventsSupported=!1,this.pointerEventsSupported=!1,this.domSupported=!1,this.transformSupported=!1,this.transform3dSupported=!1,this.hasGlobalWindow=typeof window!="undefined"}return r}(),Ci=new JL;typeof wx=="object"&&typeof wx.getSystemInfoSync=="function"?(Ci.wxa=!0,Ci.touchEventsSupported=!0):typeof document=="undefined"&&typeof self!="undefined"?Ci.worker=!0:typeof navigator=="undefined"?(Ci.node=!0,Ci.svgSupported=!0):jL(navigator.userAgent,Ci);function jL(r,e){var t=e.browser,a=r.match(/Firefox\/([\d.]+)/),i=r.match(/MSIE\s([\d.]+)/)||r.match(/Trident\/.+?rv:(([\d.]+))/),n=r.match(/Edge?\/([\d.]+)/),o=/micromessenger/i.test(r);a&&(t.firefox=!0,t.version=a[1]),i&&(t.ie=!0,t.version=i[1]),n&&(t.edge=!0,t.version=n[1],t.newEdge=+n[1].split(".")[0]>18),o&&(t.weChat=!0),e.svgSupported=typeof SVGRect!="undefined",e.touchEventsSupported="ontouchstart"in window&&!t.ie&&!t.edge,e.pointerEventsSupported="onpointerdown"in window&&(t.edge||t.ie&&+t.version>=11),e.domSupported=typeof document!="undefined";var s=document.documentElement.style;e.transform3dSupported=(t.ie&&"transition"in s||t.edge||"WebKitCSSMatrix"in window&&"m11"in new WebKitCSSMatrix||"MozPerspective"in s)&&!("OTransition"in s),e.transformSupported=e.transform3dSupported||t.ie&&+t.version>=9}var Ct=Ci,Bd=12,Yw="sans-serif",Ha=Bd+"px "+Yw,tI=20,eI=100,rI="007LLmW'55;N0500LLLLLLLLLL00NNNLzWW\\\\WQb\\0FWLg\\bWb\\WQ\\WrWWQ000CL5LLFLL0LL**F*gLLLL5F0LF\\FFF5.5N";function aI(r){var e={};if(typeof JSON=="undefined")return e;for(var t=0;t=0)s=o*t.length;else for(var l=0;l>1)%2;s.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",a[l]+":0",i[u]+":0",a[1-l]+":auto",i[1-u]+":auto",""].join("!important;"),r.appendChild(o),t.push(o)}return t}function TI(r,e,t){for(var a=t?"invTrans":"trans",i=e[a],n=e.srcCoords,o=[],s=[],l=!0,u=0;u<4;u++){var f=r[u].getBoundingClientRect(),h=2*u,v=f.left,c=f.top;o.push(v,c),l=l&&n&&v===n[h]&&c===n[h+1],s.push(r[u].offsetLeft,r[u].offsetTop)}return l&&i?i:(e.srcCoords=o,e[a]=t?Xy(s,o):Xy(o,s))}function Jw(r){return r.nodeName.toUpperCase()==="CANVAS"}var CI=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Rh=[],AI=Ct.browser.firefox&&+Ct.browser.version.split(".")[0]<39;function np(r,e,t,a){return t=t||{},a?Ky(r,e,t):AI&&e.layerX!=null&&e.layerX!==e.offsetX?(t.zrX=e.layerX,t.zrY=e.layerY):e.offsetX!=null?(t.zrX=e.offsetX,t.zrY=e.offsetY):Ky(r,e,t),t}function Ky(r,e,t){if(Ct.domSupported&&r.getBoundingClientRect){var a=e.clientX,i=e.clientY;if(Jw(r)){var n=r.getBoundingClientRect();t.zrX=a-n.left,t.zrY=i-n.top;return}else if(ip(Rh,r,a,i)){t.zrX=Rh[0],t.zrY=Rh[1];return}}t.zrX=t.zrY=0}function Ud(r){return r||window.event}function Xe(r,e,t){if(e=Ud(e),e.zrX!=null)return e;var a=e.type,i=a&&a.indexOf("touch")>=0;if(i){var o=a!=="touchend"?e.targetTouches[0]:e.changedTouches[0];o&&np(r,o,e,t)}else{np(r,e,e,t);var n=MI(e);e.zrDelta=n?n/120:-(e.detail||0)/3}var s=e.button;return e.which==null&&s!==void 0&&CI.test(e.type)&&(e.which=s&1?1:s&2?3:s&4?2:0),e}function MI(r){var e=r.wheelDelta;if(e)return e;var t=r.deltaX,a=r.deltaY;if(t==null||a==null)return e;var i=Math.abs(a!==0?a:t),n=a>0?-1:a<0?1:t>0?-1:1;return 3*i*n}function op(r,e,t,a){r.addEventListener(e,t,a)}function DI(r,e,t,a){r.removeEventListener(e,t,a)}var na=function(r){r.preventDefault(),r.stopPropagation(),r.cancelBubble=!0};function Qy(r){return r.which===2||r.which===3}var LI=function(){function r(){this._track=[]}return r.prototype.recognize=function(e,t,a){return this._doTrack(e,t,a),this._recognize(e)},r.prototype.clear=function(){return this._track.length=0,this},r.prototype._doTrack=function(e,t,a){var i=e.touches;if(!!i){for(var n={points:[],touches:[],target:t,event:e},o=0,s=i.length;o1&&a&&a.length>1){var n=Jy(a)/Jy(i);!isFinite(n)&&(n=1),e.pinchScale=n;var o=II(a);return e.pinchX=o[0],e.pinchY=o[1],{type:"pinch",target:r[0].target,event:e}}}}},jw="silent";function PI(r,e,t){return{type:r,event:t,target:e.target,topTarget:e.topTarget,cancelBubble:!1,offsetX:t.zrX,offsetY:t.zrY,gestureEvent:t.gestureEvent,pinchX:t.pinchX,pinchY:t.pinchY,pinchScale:t.pinchScale,wheelDelta:t.zrDelta,zrByTouch:t.zrByTouch,which:t.which,stop:RI}}function RI(){na(this.event)}var EI=function(r){Nt(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.handler=null,t}return e.prototype.dispose=function(){},e.prototype.setCursor=function(){},e}(or),bo=function(){function r(e,t){this.x=e,this.y=t}return r}(),kI=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],tb=function(r){Nt(e,r);function e(t,a,i,n){var o=r.call(this)||this;return o._hovered=new bo(0,0),o.storage=t,o.painter=a,o.painterRoot=n,i=i||new EI,o.proxy=null,o.setHandlerProxy(i),o._draggingMgr=new _I(o),o}return e.prototype.setHandlerProxy=function(t){this.proxy&&this.proxy.dispose(),t&&(A(kI,function(a){t.on&&t.on(a,this[a],this)},this),t.handler=this),this.proxy=t},e.prototype.mousemove=function(t){var a=t.zrX,i=t.zrY,n=eb(this,a,i),o=this._hovered,s=o.target;s&&!s.__zr&&(o=this.findHover(o.x,o.y),s=o.target);var l=this._hovered=n?new bo(a,i):this.findHover(a,i),u=l.target,f=this.proxy;f.setCursor&&f.setCursor(u?u.cursor:"default"),s&&u!==s&&this.dispatchToElement(o,"mouseout",t),this.dispatchToElement(l,"mousemove",t),u&&u!==s&&this.dispatchToElement(l,"mouseover",t)},e.prototype.mouseout=function(t){var a=t.zrEventControl;a!=="only_globalout"&&this.dispatchToElement(this._hovered,"mouseout",t),a!=="no_globalout"&&this.trigger("globalout",{type:"globalout",event:t})},e.prototype.resize=function(){this._hovered=new bo(0,0)},e.prototype.dispatch=function(t,a){var i=this[t];i&&i.call(this,a)},e.prototype.dispose=function(){this.proxy.dispose(),this.storage=null,this.proxy=null,this.painter=null},e.prototype.setCursorStyle=function(t){var a=this.proxy;a.setCursor&&a.setCursor(t)},e.prototype.dispatchToElement=function(t,a,i){t=t||{};var n=t.target;if(!(n&&n.silent)){for(var o="on"+a,s=PI(a,t,i);n&&(n[o]&&(s.cancelBubble=!!n[o].call(n,s)),n.trigger(a,s),n=n.__hostTarget?n.__hostTarget:n.parent,!s.cancelBubble););s.cancelBubble||(this.trigger(a,s),this.painter&&this.painter.eachOtherLayer&&this.painter.eachOtherLayer(function(l){typeof l[o]=="function"&&l[o].call(l,s),l.trigger&&l.trigger(a,s)}))}},e.prototype.findHover=function(t,a,i){for(var n=this.storage.getDisplayList(),o=new bo(t,a),s=n.length-1;s>=0;s--){var l=void 0;if(n[s]!==i&&!n[s].ignore&&(l=OI(n[s],t,a))&&(!o.topTarget&&(o.topTarget=n[s]),l!==jw)){o.target=n[s];break}}return o},e.prototype.processGesture=function(t,a){this._gestureMgr||(this._gestureMgr=new LI);var i=this._gestureMgr;a==="start"&&i.clear();var n=i.recognize(t,this.findHover(t.zrX,t.zrY,null).target,this.proxy.dom);if(a==="end"&&i.clear(),n){var o=n.type;t.gestureEvent=o;var s=new bo;s.target=n.target,this.dispatchToElement(s,o,n.event)}},e}(or);A(["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],function(r){tb.prototype[r]=function(e){var t=e.zrX,a=e.zrY,i=eb(this,t,a),n,o;if((r!=="mouseup"||!i)&&(n=this.findHover(t,a),o=n.target),r==="mousedown")this._downEl=o,this._downPoint=[e.zrX,e.zrY],this._upEl=o;else if(r==="mouseup")this._upEl=o;else if(r==="click"){if(this._downEl!==this._upEl||!this._downPoint||Da(this._downPoint,[e.zrX,e.zrY])>4)return;this._downPoint=null}this.dispatchToElement(n,r,e)}});function OI(r,e,t){if(r[r.rectHover?"rectContain":"contain"](e,t)){for(var a=r,i=void 0,n=!1;a;){if(a.ignoreClip&&(n=!0),!n){var o=a.getClipPath();if(o&&!o.contain(e,t))return!1;a.silent&&(i=!0)}var s=a.__hostTarget;a=s||a.parent}return i?jw:!0}return!1}function eb(r,e,t){var a=r.painter;return e<0||e>a.getWidth()||t<0||t>a.getHeight()}var NI=tb,rb=32,To=7;function VI(r){for(var e=0;r>=rb;)e|=r&1,r>>=1;return r+e}function jy(r,e,t,a){var i=e+1;if(i===t)return 1;if(a(r[i++],r[e])<0){for(;i=0;)i++;return i-e}function BI(r,e,t){for(t--;e>>1,i(n,r[l])<0?s=l:o=l+1;var u=a-o;switch(u){case 3:r[o+3]=r[o+2];case 2:r[o+2]=r[o+1];case 1:r[o+1]=r[o];break;default:for(;u>0;)r[o+u]=r[o+u-1],u--}r[o]=n}}function kh(r,e,t,a,i,n){var o=0,s=0,l=1;if(n(r,e[t+i])>0){for(s=a-i;l0;)o=l,l=(l<<1)+1,l<=0&&(l=s);l>s&&(l=s),o+=i,l+=i}else{for(s=i+1;ls&&(l=s);var u=o;o=i-l,l=i-u}for(o++;o>>1);n(r,e[t+f])>0?o=f+1:l=f}return l}function Oh(r,e,t,a,i,n){var o=0,s=0,l=1;if(n(r,e[t+i])<0){for(s=i+1;ls&&(l=s);var u=o;o=i-l,l=i-u}else{for(s=a-i;l=0;)o=l,l=(l<<1)+1,l<=0&&(l=s);l>s&&(l=s),o+=i,l+=i}for(o++;o>>1);n(r,e[t+f])<0?l=f:o=f+1}return l}function zI(r,e){var t=To,a,i,n=0;r.length;var o=[];a=[],i=[];function s(c,p){a[n]=c,i[n]=p,n+=1}function l(){for(;n>1;){var c=n-2;if(c>=1&&i[c-1]<=i[c]+i[c+1]||c>=2&&i[c-2]<=i[c]+i[c-1])i[c-1]i[c+1])break;f(c)}}function u(){for(;n>1;){var c=n-2;c>0&&i[c-1]=To||b>=To);if(T)break;w<0&&(w=0),w+=2}if(t=w,t<1&&(t=1),p===1){for(y=0;y=0;y--)r[x+y]=r[w+y];r[S]=o[_];return}for(var b=t;;){var T=0,C=0,M=!1;do if(e(o[_],r[m])<0){if(r[S--]=r[m--],T++,C=0,--p===0){M=!0;break}}else if(r[S--]=o[_--],C++,T=0,--g===1){M=!0;break}while((T|C)=0;y--)r[x+y]=r[w+y];if(p===0){M=!0;break}}if(r[S--]=o[_--],--g===1){M=!0;break}if(C=g-kh(r[m],o,0,g,g-1,e),C!==0){for(S-=C,_-=C,g-=C,x=S+1,w=_+1,y=0;y=To||C>=To);if(M)break;b<0&&(b=0),b+=2}if(t=b,t<1&&(t=1),g===1){for(S-=p,m-=p,x=S+1,w=m+1,y=p-1;y>=0;y--)r[x+y]=r[w+y];r[S]=o[_]}else{if(g===0)throw new Error;for(w=S-(g-1),y=0;ys&&(l=s),tm(r,t,t+l,t+n,e),n=l}o.pushRun(t,n),o.mergeRuns(),i-=n,t+=n}while(i!==0);o.forceMergeRuns()}}var Be=1,Jo=2,En=4,em=!1;function Nh(){em||(em=!0,console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"))}function rm(r,e){return r.zlevel===e.zlevel?r.z===e.z?r.z2-e.z2:r.z-e.z:r.zlevel-e.zlevel}var GI=function(){function r(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=rm}return r.prototype.traverse=function(e,t){for(var a=0;a0&&(f.__clipPaths=[]),isNaN(f.z)&&(Nh(),f.z=0),isNaN(f.z2)&&(Nh(),f.z2=0),isNaN(f.zlevel)&&(Nh(),f.zlevel=0),this._displayList[this._displayListLen++]=f}var h=e.getDecalElement&&e.getDecalElement();h&&this._updateAndAddDisplayable(h,t,a);var v=e.getTextGuideLine();v&&this._updateAndAddDisplayable(v,t,a);var c=e.getTextContent();c&&this._updateAndAddDisplayable(c,t,a)}},r.prototype.addRoot=function(e){e.__zr&&e.__zr.storage===this||this._roots.push(e)},r.prototype.delRoot=function(e){if(e instanceof Array){for(var t=0,a=e.length;t=0&&this._roots.splice(i,1)},r.prototype.delAllRoots=function(){this._roots=[],this._displayList=[],this._displayListLen=0},r.prototype.getRoots=function(){return this._roots},r.prototype.dispose=function(){this._displayList=null,this._roots=null},r}(),FI=GI,ab;ab=Ct.hasGlobalWindow&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(r){return setTimeout(r,16)};var sp=ab,Lu={linear:function(r){return r},quadraticIn:function(r){return r*r},quadraticOut:function(r){return r*(2-r)},quadraticInOut:function(r){return(r*=2)<1?.5*r*r:-.5*(--r*(r-2)-1)},cubicIn:function(r){return r*r*r},cubicOut:function(r){return--r*r*r+1},cubicInOut:function(r){return(r*=2)<1?.5*r*r*r:.5*((r-=2)*r*r+2)},quarticIn:function(r){return r*r*r*r},quarticOut:function(r){return 1- --r*r*r*r},quarticInOut:function(r){return(r*=2)<1?.5*r*r*r*r:-.5*((r-=2)*r*r*r-2)},quinticIn:function(r){return r*r*r*r*r},quinticOut:function(r){return--r*r*r*r*r+1},quinticInOut:function(r){return(r*=2)<1?.5*r*r*r*r*r:.5*((r-=2)*r*r*r*r+2)},sinusoidalIn:function(r){return 1-Math.cos(r*Math.PI/2)},sinusoidalOut:function(r){return Math.sin(r*Math.PI/2)},sinusoidalInOut:function(r){return .5*(1-Math.cos(Math.PI*r))},exponentialIn:function(r){return r===0?0:Math.pow(1024,r-1)},exponentialOut:function(r){return r===1?1:1-Math.pow(2,-10*r)},exponentialInOut:function(r){return r===0?0:r===1?1:(r*=2)<1?.5*Math.pow(1024,r-1):.5*(-Math.pow(2,-10*(r-1))+2)},circularIn:function(r){return 1-Math.sqrt(1-r*r)},circularOut:function(r){return Math.sqrt(1- --r*r)},circularInOut:function(r){return(r*=2)<1?-.5*(Math.sqrt(1-r*r)-1):.5*(Math.sqrt(1-(r-=2)*r)+1)},elasticIn:function(r){var e,t=.1,a=.4;return r===0?0:r===1?1:(!t||t<1?(t=1,e=a/4):e=a*Math.asin(1/t)/(2*Math.PI),-(t*Math.pow(2,10*(r-=1))*Math.sin((r-e)*(2*Math.PI)/a)))},elasticOut:function(r){var e,t=.1,a=.4;return r===0?0:r===1?1:(!t||t<1?(t=1,e=a/4):e=a*Math.asin(1/t)/(2*Math.PI),t*Math.pow(2,-10*r)*Math.sin((r-e)*(2*Math.PI)/a)+1)},elasticInOut:function(r){var e,t=.1,a=.4;return r===0?0:r===1?1:(!t||t<1?(t=1,e=a/4):e=a*Math.asin(1/t)/(2*Math.PI),(r*=2)<1?-.5*(t*Math.pow(2,10*(r-=1))*Math.sin((r-e)*(2*Math.PI)/a)):t*Math.pow(2,-10*(r-=1))*Math.sin((r-e)*(2*Math.PI)/a)*.5+1)},backIn:function(r){var e=1.70158;return r*r*((e+1)*r-e)},backOut:function(r){var e=1.70158;return--r*r*((e+1)*r+e)+1},backInOut:function(r){var e=2.5949095;return(r*=2)<1?.5*(r*r*((e+1)*r-e)):.5*((r-=2)*r*((e+1)*r+e)+2)},bounceIn:function(r){return 1-Lu.bounceOut(1-r)},bounceOut:function(r){return r<1/2.75?7.5625*r*r:r<2/2.75?7.5625*(r-=1.5/2.75)*r+.75:r<2.5/2.75?7.5625*(r-=2.25/2.75)*r+.9375:7.5625*(r-=2.625/2.75)*r+.984375},bounceInOut:function(r){return r<.5?Lu.bounceIn(r*2)*.5:Lu.bounceOut(r*2-1)*.5+.5}},ib=Lu,Tl=Math.pow,Ba=Math.sqrt,Xu=1e-8,nb=1e-4,am=Ba(3),Cl=1/3,Ir=nn(),Je=nn(),$n=nn();function Pa(r){return r>-Xu&&rXu||r<-Xu}function te(r,e,t,a,i){var n=1-i;return n*n*(n*r+3*i*e)+i*i*(i*a+3*n*t)}function im(r,e,t,a,i){var n=1-i;return 3*(((e-r)*n+2*(t-e)*i)*n+(a-t)*i*i)}function qu(r,e,t,a,i,n){var o=a+3*(e-t)-r,s=3*(t-e*2+r),l=3*(e-r),u=r-i,f=s*s-3*o*l,h=s*l-9*o*u,v=l*l-3*s*u,c=0;if(Pa(f)&&Pa(h))if(Pa(s))n[0]=0;else{var p=-l/s;p>=0&&p<=1&&(n[c++]=p)}else{var d=h*h-4*f*v;if(Pa(d)){var g=h/f,p=-s/o+g,y=-g/2;p>=0&&p<=1&&(n[c++]=p),y>=0&&y<=1&&(n[c++]=y)}else if(d>0){var m=Ba(d),_=f*s+1.5*o*(-h+m),S=f*s+1.5*o*(-h-m);_<0?_=-Tl(-_,Cl):_=Tl(_,Cl),S<0?S=-Tl(-S,Cl):S=Tl(S,Cl);var p=(-s-(_+S))/(3*o);p>=0&&p<=1&&(n[c++]=p)}else{var w=(2*f*s-3*o*h)/(2*Ba(f*f*f)),x=Math.acos(w)/3,b=Ba(f),T=Math.cos(x),p=(-s-2*b*T)/(3*o),y=(-s+b*(T+am*Math.sin(x)))/(3*o),C=(-s+b*(T-am*Math.sin(x)))/(3*o);p>=0&&p<=1&&(n[c++]=p),y>=0&&y<=1&&(n[c++]=y),C>=0&&C<=1&&(n[c++]=C)}}return c}function sb(r,e,t,a,i){var n=6*t-12*e+6*r,o=9*e+3*a-3*r-9*t,s=3*e-3*r,l=0;if(Pa(o)){if(ob(n)){var u=-s/n;u>=0&&u<=1&&(i[l++]=u)}}else{var f=n*n-4*o*s;if(Pa(f))i[0]=-n/(2*o);else if(f>0){var h=Ba(f),u=(-n+h)/(2*o),v=(-n-h)/(2*o);u>=0&&u<=1&&(i[l++]=u),v>=0&&v<=1&&(i[l++]=v)}}return l}function $a(r,e,t,a,i,n){var o=(e-r)*i+r,s=(t-e)*i+e,l=(a-t)*i+t,u=(s-o)*i+o,f=(l-s)*i+s,h=(f-u)*i+u;n[0]=r,n[1]=o,n[2]=u,n[3]=h,n[4]=h,n[5]=f,n[6]=l,n[7]=a}function lb(r,e,t,a,i,n,o,s,l,u,f){var h,v=.005,c=1/0,p,d,g,y;Ir[0]=l,Ir[1]=u;for(var m=0;m<1;m+=.05)Je[0]=te(r,t,i,o,m),Je[1]=te(e,a,n,s,m),g=Hi(Ir,Je),g=0&&g=0&&u<=1&&(i[l++]=u)}}else{var f=o*o-4*n*s;if(Pa(f)){var u=-o/(2*n);u>=0&&u<=1&&(i[l++]=u)}else if(f>0){var h=Ba(f),u=(-o+h)/(2*n),v=(-o-h)/(2*n);u>=0&&u<=1&&(i[l++]=u),v>=0&&v<=1&&(i[l++]=v)}}return l}function ub(r,e,t){var a=r+t-2*e;return a===0?.5:(r-e)/a}function Ds(r,e,t,a,i){var n=(e-r)*a+r,o=(t-e)*a+e,s=(o-n)*a+n;i[0]=r,i[1]=n,i[2]=s,i[3]=s,i[4]=o,i[5]=t}function fb(r,e,t,a,i,n,o,s,l){var u,f=.005,h=1/0;Ir[0]=o,Ir[1]=s;for(var v=0;v<1;v+=.05){Je[0]=ae(r,t,i,v),Je[1]=ae(e,a,n,v);var c=Hi(Ir,Je);c=0&&c=1?1:qu(0,a,n,1,l,s)&&te(0,i,o,1,s[0])}}}var YI=function(){function r(e){this._inited=!1,this._startTime=0,this._pausedTime=0,this._paused=!1,this._life=e.life||1e3,this._delay=e.delay||0,this.loop=e.loop||!1,this.onframe=e.onframe||qt,this.ondestroy=e.ondestroy||qt,this.onrestart=e.onrestart||qt,e.easing&&this.setEasing(e.easing)}return r.prototype.step=function(e,t){if(this._inited||(this._startTime=e+this._delay,this._inited=!0),this._paused){this._pausedTime+=t;return}var a=this._life,i=e-this._startTime-this._pausedTime,n=i/a;n<0&&(n=0),n=Math.min(n,1);var o=this.easingFunc,s=o?o(n):n;if(this.onframe(s),n===1)if(this.loop){var l=i%a;this._startTime=e-l,this._pausedTime=0,this.onrestart()}else return!0;return!1},r.prototype.pause=function(){this._paused=!0},r.prototype.resume=function(){this._paused=!1},r.prototype.setEasing=function(e){this.easing=e,this.easingFunc=K(e)?e:ib[e]||Yd(e)},r}(),ZI=YI,hb=function(){function r(e){this.value=e}return r}(),XI=function(){function r(){this._len=0}return r.prototype.insert=function(e){var t=new hb(e);return this.insertEntry(t),t},r.prototype.insertEntry=function(e){this.head?(this.tail.next=e,e.prev=this.tail,e.next=null,this.tail=e):this.head=this.tail=e,this._len++},r.prototype.remove=function(e){var t=e.prev,a=e.next;t?t.next=a:this.head=a,a?a.prev=t:this.tail=t,e.next=e.prev=null,this._len--},r.prototype.len=function(){return this._len},r.prototype.clear=function(){this.head=this.tail=null,this._len=0},r}(),qI=function(){function r(e){this._list=new XI,this._maxSize=10,this._map={},this._maxSize=e}return r.prototype.put=function(e,t){var a=this._list,i=this._map,n=null;if(i[e]==null){var o=a.len(),s=this._lastRemovedEntry;if(o>=this._maxSize&&o>0){var l=a.head;a.remove(l),delete i[l.key],n=l.value,this._lastRemovedEntry=l}s?s.value=t:s=new hb(t),s.key=e,a.insertEntry(s),i[e]=s}return n},r.prototype.get=function(e){var t=this._map[e],a=this._list;if(t!=null)return t!==a.tail&&(a.remove(t),a.insertEntry(t)),t.value},r.prototype.clear=function(){this._list.clear(),this._map={}},r.prototype.len=function(){return this._list.len()},r}(),el=qI,nm={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};function gr(r){return r=Math.round(r),r<0?0:r>255?255:r}function KI(r){return r=Math.round(r),r<0?0:r>360?360:r}function Ls(r){return r<0?0:r>1?1:r}function Vh(r){var e=r;return e.length&&e.charAt(e.length-1)==="%"?gr(parseFloat(e)/100*255):gr(parseInt(e,10))}function qn(r){var e=r;return e.length&&e.charAt(e.length-1)==="%"?Ls(parseFloat(e)/100):Ls(parseFloat(e))}function Bh(r,e,t){return t<0?t+=1:t>1&&(t-=1),t*6<1?r+(e-r)*t*6:t*2<1?e:t*3<2?r+(e-r)*(2/3-t)*6:r}function Ra(r,e,t){return r+(e-r)*t}function Ze(r,e,t,a,i){return r[0]=e,r[1]=t,r[2]=a,r[3]=i,r}function up(r,e){return r[0]=e[0],r[1]=e[1],r[2]=e[2],r[3]=e[3],r}var vb=new el(20),Al=null;function cn(r,e){Al&&up(Al,e),Al=vb.put(r,Al||e.slice())}function ze(r,e){if(!!r){e=e||[];var t=vb.get(r);if(t)return up(e,t);r=r+"";var a=r.replace(/ /g,"").toLowerCase();if(a in nm)return up(e,nm[a]),cn(r,e),e;var i=a.length;if(a.charAt(0)==="#"){if(i===4||i===5){var n=parseInt(a.slice(1,4),16);if(!(n>=0&&n<=4095)){Ze(e,0,0,0,1);return}return Ze(e,(n&3840)>>4|(n&3840)>>8,n&240|(n&240)>>4,n&15|(n&15)<<4,i===5?parseInt(a.slice(4),16)/15:1),cn(r,e),e}else if(i===7||i===9){var n=parseInt(a.slice(1,7),16);if(!(n>=0&&n<=16777215)){Ze(e,0,0,0,1);return}return Ze(e,(n&16711680)>>16,(n&65280)>>8,n&255,i===9?parseInt(a.slice(7),16)/255:1),cn(r,e),e}return}var o=a.indexOf("("),s=a.indexOf(")");if(o!==-1&&s+1===i){var l=a.substr(0,o),u=a.substr(o+1,s-(o+1)).split(","),f=1;switch(l){case"rgba":if(u.length!==4)return u.length===3?Ze(e,+u[0],+u[1],+u[2],1):Ze(e,0,0,0,1);f=qn(u.pop());case"rgb":if(u.length!==3){Ze(e,0,0,0,1);return}return Ze(e,Vh(u[0]),Vh(u[1]),Vh(u[2]),f),cn(r,e),e;case"hsla":if(u.length!==4){Ze(e,0,0,0,1);return}return u[3]=qn(u[3]),fp(u,e),cn(r,e),e;case"hsl":if(u.length!==3){Ze(e,0,0,0,1);return}return fp(u,e),cn(r,e),e;default:return}}Ze(e,0,0,0,1)}}function fp(r,e){var t=(parseFloat(r[0])%360+360)%360/360,a=qn(r[1]),i=qn(r[2]),n=i<=.5?i*(a+1):i+a-i*a,o=i*2-n;return e=e||[],Ze(e,gr(Bh(o,n,t+1/3)*255),gr(Bh(o,n,t)*255),gr(Bh(o,n,t-1/3)*255),1),r.length===4&&(e[3]=r[3]),e}function QI(r){if(!!r){var e=r[0]/255,t=r[1]/255,a=r[2]/255,i=Math.min(e,t,a),n=Math.max(e,t,a),o=n-i,s=(n+i)/2,l,u;if(o===0)l=0,u=0;else{s<.5?u=o/(n+i):u=o/(2-n-i);var f=((n-e)/6+o/2)/o,h=((n-t)/6+o/2)/o,v=((n-a)/6+o/2)/o;e===n?l=v-h:t===n?l=1/3+f-v:a===n&&(l=2/3+h-f),l<0&&(l+=1),l>1&&(l-=1)}var c=[l*360,u,s];return r[3]!=null&&c.push(r[3]),c}}function hp(r,e){var t=ze(r);if(t){for(var a=0;a<3;a++)e<0?t[a]=t[a]*(1-e)|0:t[a]=(255-t[a])*e+t[a]|0,t[a]>255?t[a]=255:t[a]<0&&(t[a]=0);return ea(t,t.length===4?"rgba":"rgb")}}function zh(r,e,t){if(!(!(e&&e.length)||!(r>=0&&r<=1))){t=t||[];var a=r*(e.length-1),i=Math.floor(a),n=Math.ceil(a),o=e[i],s=e[n],l=a-i;return t[0]=gr(Ra(o[0],s[0],l)),t[1]=gr(Ra(o[1],s[1],l)),t[2]=gr(Ra(o[2],s[2],l)),t[3]=Ls(Ra(o[3],s[3],l)),t}}function JI(r,e,t){if(!(!(e&&e.length)||!(r>=0&&r<=1))){var a=r*(e.length-1),i=Math.floor(a),n=Math.ceil(a),o=ze(e[i]),s=ze(e[n]),l=a-i,u=ea([gr(Ra(o[0],s[0],l)),gr(Ra(o[1],s[1],l)),gr(Ra(o[2],s[2],l)),Ls(Ra(o[3],s[3],l))],"rgba");return t?{color:u,leftIndex:i,rightIndex:n,value:a}:u}}function hs(r,e,t,a){var i=ze(r);if(r)return i=QI(i),e!=null&&(i[0]=KI(e)),t!=null&&(i[1]=qn(t)),a!=null&&(i[2]=qn(a)),ea(fp(i),"rgba")}function Ku(r,e){var t=ze(r);if(t&&e!=null)return t[3]=Ls(e),ea(t,"rgba")}function ea(r,e){if(!(!r||!r.length)){var t=r[0]+","+r[1]+","+r[2];return(e==="rgba"||e==="hsva"||e==="hsla")&&(t+=","+r[3]),e+"("+t+")"}}function Qu(r,e){var t=ze(r);return t?(.299*t[0]+.587*t[1]+.114*t[2])*t[3]/255+(1-t[3])*e:0}var Ju=Math.round;function Kn(r){var e;if(!r||r==="transparent")r="none";else if(typeof r=="string"&&r.indexOf("rgba")>-1){var t=ze(r);t&&(r="rgb("+t[0]+","+t[1]+","+t[2]+")",e=t[3])}return{color:r,opacity:e==null?1:e}}var om=1e-4;function Ea(r){return r-om}function Ml(r){return Ju(r*1e3)/1e3}function vp(r){return Ju(r*1e4)/1e4}function jI(r){return"matrix("+Ml(r[0])+","+Ml(r[1])+","+Ml(r[2])+","+Ml(r[3])+","+vp(r[4])+","+vp(r[5])+")"}var t2={left:"start",right:"end",center:"middle",middle:"middle"};function e2(r,e,t){return t==="top"?r+=e/2:t==="bottom"&&(r-=e/2),r}function r2(r){return r&&(r.shadowBlur||r.shadowOffsetX||r.shadowOffsetY)}function a2(r){var e=r.style,t=r.getGlobalScale();return[e.shadowColor,(e.shadowBlur||0).toFixed(2),(e.shadowOffsetX||0).toFixed(2),(e.shadowOffsetY||0).toFixed(2),t[0],t[1]].join(",")}function cb(r){return r&&!!r.image}function i2(r){return r&&!!r.svgElement}function n2(r){return cb(r)||i2(r)}function pb(r){return r.type==="linear"}function db(r){return r.type==="radial"}function o2(r){return r&&(r.type==="linear"||r.type==="radial")}function Yf(r){return"url(#"+r+")"}function gb(r){var e=r.getGlobalScale(),t=Math.max(e[0],e[1]);return Math.max(Math.ceil(Math.log(t)/Math.log(10)),1)}function yb(r){var e=r.x||0,t=r.y||0,a=(r.rotation||0)*Au,i=vt(r.scaleX,1),n=vt(r.scaleY,1),o=r.skewX||0,s=r.skewY||0,l=[];return(e||t)&&l.push("translate("+e+"px,"+t+"px)"),a&&l.push("rotate("+a+")"),(i!==1||n!==1)&&l.push("scale("+i+","+n+")"),(o||s)&&l.push("skew("+Ju(o*Au)+"deg, "+Ju(s*Au)+"deg)"),l.join(" ")}var s2=function(){return Ct.hasGlobalWindow&&K(window.btoa)?function(r){return window.btoa(unescape(r))}:typeof Buffer!="undefined"?function(r){return Buffer.from(r).toString("base64")}:function(r){return null}}(),cp=Array.prototype.slice;function qr(r,e,t){return(e-r)*t+r}function Gh(r,e,t,a){for(var i=e.length,n=0;na?e:r,n=Math.min(t,a),o=i[n-1]||{color:[0,0,0,0],offset:0},s=n;so;if(s)a.length=o;else for(var l=n;l=1},r.prototype.getAdditiveTrack=function(){return this._additiveTrack},r.prototype.addKeyframe=function(e,t,a){this._needsSort=!0;var i=this.keyframes,n=i.length,o=!1,s=lm,l=t;if(ge(t)){var u=h2(t);s=u,(u===1&&!xt(t[0])||u===2&&!xt(t[0][0]))&&(o=!0)}else if(xt(t)&&!Ms(t))s=Ll;else if($(t))if(!isNaN(+t))s=Ll;else{var f=ze(t);f&&(l=f,s=jo)}else if($f(t)){var h=B({},l);h.colorStops=G(t.colorStops,function(c){return{offset:c.offset,color:ze(c.color)}}),pb(t)?s=pp:db(t)&&(s=dp),l=h}n===0?this.valType=s:(s!==this.valType||s===lm)&&(o=!0),this.discrete=this.discrete||o;var v={time:e,value:l,rawValue:t,percent:0};return a&&(v.easing=a,v.easingFunc=K(a)?a:ib[a]||Yd(a)),i.push(v),v},r.prototype.prepare=function(e,t){var a=this.keyframes;this._needsSort&&a.sort(function(d,g){return d.time-g.time});for(var i=this.valType,n=a.length,o=a[n-1],s=this.discrete,l=Il(i),u=um(i),f=0;f=0&&!(o[f].percent<=t);f--);f=v(f,s-2)}else{for(f=h;ft);f++);f=v(f-1,s-2)}p=o[f+1],c=o[f]}if(!!(c&&p)){this._lastFr=f,this._lastFrP=t;var g=p.percent-c.percent,y=g===0?1:v((t-c.percent)/g,1);p.easingFunc&&(y=p.easingFunc(y));var m=a?this._additiveValue:u?Co:e[l];if((Il(n)||u)&&!m&&(m=this._additiveValue=[]),this.discrete)e[l]=y<1?c.rawValue:p.rawValue;else if(Il(n))n===Pu?Gh(m,c[i],p[i],y):l2(m,c[i],p[i],y);else if(um(n)){var _=c[i],S=p[i],w=n===pp;e[l]={type:w?"linear":"radial",x:qr(_.x,S.x,y),y:qr(_.y,S.y,y),colorStops:G(_.colorStops,function(b,T){var C=S.colorStops[T];return{offset:qr(b.offset,C.offset,y),color:Iu(Gh([],b.color,C.color,y))}}),global:S.global},w?(e[l].x2=qr(_.x2,S.x2,y),e[l].y2=qr(_.y2,S.y2,y)):e[l].r=qr(_.r,S.r,y)}else if(u)Gh(m,c[i],p[i],y),a||(e[l]=Iu(m));else{var x=qr(c[i],p[i],y);a?this._additiveValue=x:e[l]=x}a&&this._addToTarget(e)}}},r.prototype._addToTarget=function(e){var t=this.valType,a=this.propName,i=this._additiveValue;t===Ll?e[a]=e[a]+i:t===jo?(ze(e[a],Co),Dl(Co,Co,i,1),e[a]=Iu(Co)):t===Pu?Dl(e[a],e[a],i,1):t===mb&&sm(e[a],e[a],i,1)},r}(),c2=function(){function r(e,t,a,i){if(this._tracks={},this._trackKeys=[],this._maxTime=0,this._started=0,this._clip=null,this._target=e,this._loop=t,t&&i){Fd("Can' use additive animation on looped animation.");return}this._additiveAnimators=i,this._allowDiscrete=a}return r.prototype.getMaxTime=function(){return this._maxTime},r.prototype.getDelay=function(){return this._delay},r.prototype.getLoop=function(){return this._loop},r.prototype.getTarget=function(){return this._target},r.prototype.changeTarget=function(e){this._target=e},r.prototype.when=function(e,t,a){return this.whenWithKeys(e,t,yt(t),a)},r.prototype.whenWithKeys=function(e,t,a,i){for(var n=this._tracks,o=0;o0&&l.addKeyframe(0,vs(u),i),this._trackKeys.push(s)}l.addKeyframe(e,vs(t[s]),i)}return this._maxTime=Math.max(this._maxTime,e),this},r.prototype.pause=function(){this._clip.pause(),this._paused=!0},r.prototype.resume=function(){this._clip.resume(),this._paused=!1},r.prototype.isPaused=function(){return!!this._paused},r.prototype.duration=function(e){return this._maxTime=e,this._force=!0,this},r.prototype._doneCallback=function(){this._setTracksFinished(),this._clip=null;var e=this._doneCbs;if(e)for(var t=e.length,a=0;a0)){this._started=1;for(var t=this,a=[],i=this._maxTime||0,n=0;n1){var s=o.pop();n.addKeyframe(s.time,e[i]),n.prepare(this._maxTime,n.getAdditiveTrack())}}}},r}(),Zd=c2;function Bn(){return new Date().getTime()}var p2=function(r){Nt(e,r);function e(t){var a=r.call(this)||this;return a._running=!1,a._time=0,a._pausedTime=0,a._pauseStart=0,a._paused=!1,t=t||{},a.stage=t.stage||{},a}return e.prototype.addClip=function(t){t.animation&&this.removeClip(t),this._head?(this._tail.next=t,t.prev=this._tail,t.next=null,this._tail=t):this._head=this._tail=t,t.animation=this},e.prototype.addAnimator=function(t){t.animation=this;var a=t.getClip();a&&this.addClip(a)},e.prototype.removeClip=function(t){if(!!t.animation){var a=t.prev,i=t.next;a?a.next=i:this._head=i,i?i.prev=a:this._tail=a,t.next=t.prev=t.animation=null}},e.prototype.removeAnimator=function(t){var a=t.getClip();a&&this.removeClip(a),t.animation=null},e.prototype.update=function(t){for(var a=Bn()-this._pausedTime,i=a-this._time,n=this._head;n;){var o=n.next,s=n.step(a,i);s&&(n.ondestroy(),this.removeClip(n)),n=o}this._time=a,t||(this.trigger("frame",i),this.stage.update&&this.stage.update())},e.prototype._startLoop=function(){var t=this;this._running=!0;function a(){t._running&&(sp(a),!t._paused&&t.update())}sp(a)},e.prototype.start=function(){this._running||(this._time=Bn(),this._pausedTime=0,this._startLoop())},e.prototype.stop=function(){this._running=!1},e.prototype.pause=function(){this._paused||(this._pauseStart=Bn(),this._paused=!0)},e.prototype.resume=function(){this._paused&&(this._pausedTime+=Bn()-this._pauseStart,this._paused=!1)},e.prototype.clear=function(){for(var t=this._head;t;){var a=t.next;t.prev=t.next=t.animation=null,t=a}this._head=this._tail=null},e.prototype.isFinished=function(){return this._head==null},e.prototype.animate=function(t,a){a=a||{},this.start();var i=new Zd(t,a.loop);return this.addAnimator(i),i},e}(or),d2=p2,g2=300,Fh=Ct.domSupported,Hh=function(){var r=["click","dblclick","mousewheel","wheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],e=["touchstart","touchend","touchmove"],t={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},a=G(r,function(i){var n=i.replace("mouse","pointer");return t.hasOwnProperty(n)?n:i});return{mouse:r,touch:e,pointer:a}}(),fm={mouse:["mousemove","mouseup"],pointer:["pointermove","pointerup"]},hm=!1;function gp(r){var e=r.pointerType;return e==="pen"||e==="touch"}function y2(r){r.touching=!0,r.touchTimer!=null&&(clearTimeout(r.touchTimer),r.touchTimer=null),r.touchTimer=setTimeout(function(){r.touching=!1,r.touchTimer=null},700)}function Wh(r){r&&(r.zrByTouch=!0)}function m2(r,e){return Xe(r.dom,new _2(r,e),!0)}function _b(r,e){for(var t=e,a=!1;t&&t.nodeType!==9&&!(a=t.domBelongToZr||t!==e&&t===r.painterRoot);)t=t.parentNode;return a}var _2=function(){function r(e,t){this.stopPropagation=qt,this.stopImmediatePropagation=qt,this.preventDefault=qt,this.type=t.type,this.target=this.currentTarget=e.dom,this.pointerType=t.pointerType,this.clientX=t.clientX,this.clientY=t.clientY}return r}(),hr={mousedown:function(r){r=Xe(this.dom,r),this.__mayPointerCapture=[r.zrX,r.zrY],this.trigger("mousedown",r)},mousemove:function(r){r=Xe(this.dom,r);var e=this.__mayPointerCapture;e&&(r.zrX!==e[0]||r.zrY!==e[1])&&this.__togglePointerCapture(!0),this.trigger("mousemove",r)},mouseup:function(r){r=Xe(this.dom,r),this.__togglePointerCapture(!1),this.trigger("mouseup",r)},mouseout:function(r){r=Xe(this.dom,r);var e=r.toElement||r.relatedTarget;_b(this,e)||(this.__pointerCapturing&&(r.zrEventControl="no_globalout"),this.trigger("mouseout",r))},wheel:function(r){hm=!0,r=Xe(this.dom,r),this.trigger("mousewheel",r)},mousewheel:function(r){hm||(r=Xe(this.dom,r),this.trigger("mousewheel",r))},touchstart:function(r){r=Xe(this.dom,r),Wh(r),this.__lastTouchMoment=new Date,this.handler.processGesture(r,"start"),hr.mousemove.call(this,r),hr.mousedown.call(this,r)},touchmove:function(r){r=Xe(this.dom,r),Wh(r),this.handler.processGesture(r,"change"),hr.mousemove.call(this,r)},touchend:function(r){r=Xe(this.dom,r),Wh(r),this.handler.processGesture(r,"end"),hr.mouseup.call(this,r),+new Date-+this.__lastTouchMomentpm||r<-pm}var ei=[],pn=[],Uh=ir(),Yh=Math.abs,Qr=function(){function r(){}return r.prototype.getLocalTransform=function(e){return r.getLocalTransform(this,e)},r.prototype.setPosition=function(e){this.x=e[0],this.y=e[1]},r.prototype.setScale=function(e){this.scaleX=e[0],this.scaleY=e[1]},r.prototype.setSkew=function(e){this.skewX=e[0],this.skewY=e[1]},r.prototype.setOrigin=function(e){this.originX=e[0],this.originY=e[1]},r.prototype.needLocalTransform=function(){return ti(this.rotation)||ti(this.x)||ti(this.y)||ti(this.scaleX-1)||ti(this.scaleY-1)||ti(this.skewX)||ti(this.skewY)},r.prototype.updateTransform=function(){var e=this.parent&&this.parent.transform,t=this.needLocalTransform(),a=this.transform;if(!(t||e)){a&&cm(a);return}a=a||ir(),t?this.getLocalTransform(a):cm(a),e&&(t?ra(a,e,a):Xd(a,e)),this.transform=a,this._resolveGlobalScaleRatio(a)},r.prototype._resolveGlobalScaleRatio=function(e){var t=this.globalScaleRatio;if(t!=null&&t!==1){this.getGlobalScale(ei);var a=ei[0]<0?-1:1,i=ei[1]<0?-1:1,n=((ei[0]-a)*t+a)/ei[0]||0,o=((ei[1]-i)*t+i)/ei[1]||0;e[0]*=n,e[1]*=n,e[2]*=o,e[3]*=o}this.invTransform=this.invTransform||ir(),oo(this.invTransform,e)},r.prototype.getComputedTransform=function(){for(var e=this,t=[];e;)t.push(e),e=e.parent;for(;e=t.pop();)e.updateTransform();return this.transform},r.prototype.setLocalTransform=function(e){if(!!e){var t=e[0]*e[0]+e[1]*e[1],a=e[2]*e[2]+e[3]*e[3],i=Math.atan2(e[1],e[0]),n=Math.PI/2+i-Math.atan2(e[3],e[2]);a=Math.sqrt(a)*Math.cos(n),t=Math.sqrt(t),this.skewX=n,this.skewY=0,this.rotation=-i,this.x=+e[4],this.y=+e[5],this.scaleX=t,this.scaleY=a,this.originX=0,this.originY=0}},r.prototype.decomposeTransform=function(){if(!!this.transform){var e=this.parent,t=this.transform;e&&e.transform&&(ra(pn,e.invTransform,t),t=pn);var a=this.originX,i=this.originY;(a||i)&&(Uh[4]=a,Uh[5]=i,ra(pn,t,Uh),pn[4]-=a,pn[5]-=i,t=pn),this.setLocalTransform(t)}},r.prototype.getGlobalScale=function(e){var t=this.transform;return e=e||[],t?(e[0]=Math.sqrt(t[0]*t[0]+t[1]*t[1]),e[1]=Math.sqrt(t[2]*t[2]+t[3]*t[3]),t[0]<0&&(e[0]=-e[0]),t[3]<0&&(e[1]=-e[1]),e):(e[0]=1,e[1]=1,e)},r.prototype.transformCoordToLocal=function(e,t){var a=[e,t],i=this.invTransform;return i&&le(a,a,i),a},r.prototype.transformCoordToGlobal=function(e,t){var a=[e,t],i=this.transform;return i&&le(a,a,i),a},r.prototype.getLineScale=function(){var e=this.transform;return e&&Yh(e[0]-1)>1e-10&&Yh(e[3]-1)>1e-10?Math.sqrt(Yh(e[0]*e[3]-e[2]*e[1])):1},r.prototype.copyTransform=function(e){xb(this,e)},r.getLocalTransform=function(e,t){t=t||[];var a=e.originX||0,i=e.originY||0,n=e.scaleX,o=e.scaleY,s=e.anchorX,l=e.anchorY,u=e.rotation||0,f=e.x,h=e.y,v=e.skewX?Math.tan(e.skewX):0,c=e.skewY?Math.tan(-e.skewY):0;if(a||i||s||l){var p=a+s,d=i+l;t[4]=-p*n-v*d*o,t[5]=-d*o-c*p*n}else t[4]=t[5]=0;return t[0]=n,t[3]=o,t[1]=c*n,t[2]=v*o,u&&on(t,t,u),t[4]+=a+f,t[5]+=i+h,t},r.initDefaultProps=function(){var e=r.prototype;e.scaleX=e.scaleY=e.globalScaleRatio=1,e.x=e.y=e.originX=e.originY=e.skewX=e.skewY=e.rotation=e.anchorX=e.anchorY=0}(),r}(),zr=["x","y","originX","originY","anchorX","anchorY","rotation","scaleX","scaleY","skewX","skewY"];function xb(r,e){for(var t=0;tp&&(p=_,dp&&(p=S,y=a.x&&e<=a.x+a.width&&t>=a.y&&t<=a.y+a.height},r.prototype.clone=function(){return new r(this.x,this.y,this.width,this.height)},r.prototype.copy=function(e){r.copy(this,e)},r.prototype.plain=function(){return{x:this.x,y:this.y,width:this.width,height:this.height}},r.prototype.isFinite=function(){return isFinite(this.x)&&isFinite(this.y)&&isFinite(this.width)&&isFinite(this.height)},r.prototype.isZero=function(){return this.width===0||this.height===0},r.create=function(e){return new r(e.x,e.y,e.width,e.height)},r.copy=function(e,t){e.x=t.x,e.y=t.y,e.width=t.width,e.height=t.height},r.applyTransform=function(e,t,a){if(!a){e!==t&&r.copy(e,t);return}if(a[1]<1e-5&&a[1]>-1e-5&&a[2]<1e-5&&a[2]>-1e-5){var i=a[0],n=a[3],o=a[4],s=a[5];e.x=t.x*i+o,e.y=t.y*n+s,e.width=t.width*i,e.height=t.height*n,e.width<0&&(e.x+=e.width,e.width=-e.width),e.height<0&&(e.y+=e.height,e.height=-e.height);return}ri.x=ii.x=t.x,ri.y=ni.y=t.y,ai.x=ni.x=t.x+t.width,ai.y=ii.y=t.y+t.height,ri.transform(a),ni.transform(a),ai.transform(a),ii.transform(a),e.x=Pl(ri.x,ai.x,ii.x,ni.x),e.y=Pl(ri.y,ai.y,ii.y,ni.y);var l=Rl(ri.x,ai.x,ii.x,ni.x),u=Rl(ri.y,ai.y,ii.y,ni.y);e.width=l-e.x,e.height=u-e.y},r}(),ut=M2,dm={};function Ge(r,e){e=e||Ha;var t=dm[e];t||(t=dm[e]=new el(500));var a=t.get(r);return a==null&&(a=Wa.measureText(r,e).width,t.put(r,a)),a}function gm(r,e,t,a){var i=Ge(r,e),n=Xf(e),o=ts(0,i,t),s=kn(0,n,a),l=new ut(o,s,i,n);return l}function rl(r,e,t,a){var i=((r||"")+"").split(` +`),n=i.length;if(n===1)return gm(i[0],e,t,a);for(var o=new ut(0,0,0,0),s=0;s=0?parseFloat(r)/100*e:parseFloat(r):r}function tf(r,e,t){var a=e.position||"inside",i=e.distance!=null?e.distance:5,n=t.height,o=t.width,s=n/2,l=t.x,u=t.y,f="left",h="top";if(a instanceof Array)l+=mr(a[0],t.width),u+=mr(a[1],t.height),f=null,h=null;else switch(a){case"left":l-=i,u+=s,f="right",h="middle";break;case"right":l+=i+o,u+=s,h="middle";break;case"top":l+=o/2,u-=i,f="center",h="bottom";break;case"bottom":l+=o/2,u+=n+i,f="center";break;case"inside":l+=o/2,u+=s,f="center",h="middle";break;case"insideLeft":l+=i,u+=s,h="middle";break;case"insideRight":l+=o-i,u+=s,f="right",h="middle";break;case"insideTop":l+=o/2,u+=i,f="center";break;case"insideBottom":l+=o/2,u+=n-i,f="center",h="bottom";break;case"insideTopLeft":l+=i,u+=i;break;case"insideTopRight":l+=o-i,u+=i,f="right";break;case"insideBottomLeft":l+=i,u+=n-i,h="bottom";break;case"insideBottomRight":l+=o-i,u+=n-i,f="right",h="bottom";break}return r=r||{},r.x=l,r.y=u,r.align=f,r.verticalAlign=h,r}var Zh="__zr_normal__",Xh=zr.concat(["ignore"]),D2=Vr(zr,function(r,e){return r[e]=!0,r},{ignore:!1}),dn={},L2=new ut(0,0,0,0),Kd=function(){function r(e){this.id=qw(),this.animators=[],this.currentStates=[],this.states={},this._init(e)}return r.prototype._init=function(e){this.attr(e)},r.prototype.drift=function(e,t,a){switch(this.draggable){case"horizontal":t=0;break;case"vertical":e=0;break}var i=this.transform;i||(i=this.transform=[1,0,0,1,0,0]),i[4]+=e,i[5]+=t,this.decomposeTransform(),this.markRedraw()},r.prototype.beforeUpdate=function(){},r.prototype.afterUpdate=function(){},r.prototype.update=function(){this.updateTransform(),this.__dirty&&this.updateInnerText()},r.prototype.updateInnerText=function(e){var t=this._textContent;if(t&&(!t.ignore||e)){this.textConfig||(this.textConfig={});var a=this.textConfig,i=a.local,n=t.innerTransformable,o=void 0,s=void 0,l=!1;n.parent=i?this:null;var u=!1;if(n.copyTransform(t),a.position!=null){var f=L2;a.layoutRect?f.copy(a.layoutRect):f.copy(this.getBoundingRect()),i||f.applyTransform(this.transform),this.calculateTextPosition?this.calculateTextPosition(dn,a,f):tf(dn,a,f),n.x=dn.x,n.y=dn.y,o=dn.align,s=dn.verticalAlign;var h=a.origin;if(h&&a.rotation!=null){var v=void 0,c=void 0;h==="center"?(v=f.width*.5,c=f.height*.5):(v=mr(h[0],f.width),c=mr(h[1],f.height)),u=!0,n.originX=-n.x+v+(i?0:f.x),n.originY=-n.y+c+(i?0:f.y)}}a.rotation!=null&&(n.rotation=a.rotation);var p=a.offset;p&&(n.x+=p[0],n.y+=p[1],u||(n.originX=-p[0],n.originY=-p[1]));var d=a.inside==null?typeof a.position=="string"&&a.position.indexOf("inside")>=0:a.inside,g=this._innerTextDefaultStyle||(this._innerTextDefaultStyle={}),y=void 0,m=void 0,_=void 0;d&&this.canBeInsideText()?(y=a.insideFill,m=a.insideStroke,(y==null||y==="auto")&&(y=this.getInsideTextFill()),(m==null||m==="auto")&&(m=this.getInsideTextStroke(y),_=!0)):(y=a.outsideFill,m=a.outsideStroke,(y==null||y==="auto")&&(y=this.getOutsideFill()),(m==null||m==="auto")&&(m=this.getOutsideStroke(y),_=!0)),y=y||"#000",(y!==g.fill||m!==g.stroke||_!==g.autoStroke||o!==g.align||s!==g.verticalAlign)&&(l=!0,g.fill=y,g.stroke=m,g.autoStroke=_,g.align=o,g.verticalAlign=s,t.setDefaultTextStyle(g)),t.__dirty|=Be,l&&t.dirtyStyle(!0)}},r.prototype.canBeInsideText=function(){return!0},r.prototype.getInsideTextFill=function(){return"#fff"},r.prototype.getInsideTextStroke=function(e){return"#000"},r.prototype.getOutsideFill=function(){return this.__zr&&this.__zr.isDarkMode()?Sp:_p},r.prototype.getOutsideStroke=function(e){var t=this.__zr&&this.__zr.getBackgroundColor(),a=typeof t=="string"&&ze(t);a||(a=[255,255,255,1]);for(var i=a[3],n=this.__zr.isDarkMode(),o=0;o<3;o++)a[o]=a[o]*i+(n?0:255)*(1-i);return a[3]=1,ea(a,"rgba")},r.prototype.traverse=function(e,t){},r.prototype.attrKV=function(e,t){e==="textConfig"?this.setTextConfig(t):e==="textContent"?this.setTextContent(t):e==="clipPath"?this.setClipPath(t):e==="extra"?(this.extra=this.extra||{},B(this.extra,t)):this[e]=t},r.prototype.hide=function(){this.ignore=!0,this.markRedraw()},r.prototype.show=function(){this.ignore=!1,this.markRedraw()},r.prototype.attr=function(e,t){if(typeof e=="string")this.attrKV(e,t);else if(J(e))for(var a=e,i=yt(a),n=0;n0},r.prototype.getState=function(e){return this.states[e]},r.prototype.ensureState=function(e){var t=this.states;return t[e]||(t[e]={}),t[e]},r.prototype.clearStates=function(e){this.useState(Zh,!1,e)},r.prototype.useState=function(e,t,a,i){var n=e===Zh,o=this.hasState();if(!(!o&&n)){var s=this.currentStates,l=this.stateTransition;if(!(ht(s,e)>=0&&(t||s.length===1))){var u;if(this.stateProxy&&!n&&(u=this.stateProxy(e)),u||(u=this.states&&this.states[e]),!u&&!n){Fd("State "+e+" not exists.");return}n||this.saveCurrentToNormalState(u);var f=!!(u&&u.hoverLayer||i);f&&this._toggleHoverLayerFlag(!0),this._applyStateObj(e,u,this._normalState,t,!a&&!this.__inHover&&l&&l.duration>0,l);var h=this._textContent,v=this._textGuide;return h&&h.useState(e,t,a,f),v&&v.useState(e,t,a,f),n?(this.currentStates=[],this._normalState={}):t?this.currentStates.push(e):this.currentStates=[e],this._updateAnimationTargets(),this.markRedraw(),!f&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~Be),u}}},r.prototype.useStates=function(e,t,a){if(!e.length)this.clearStates();else{var i=[],n=this.currentStates,o=e.length,s=o===n.length;if(s){for(var l=0;l0,p);var d=this._textContent,g=this._textGuide;d&&d.useStates(e,t,v),g&&g.useStates(e,t,v),this._updateAnimationTargets(),this.currentStates=e.slice(),this.markRedraw(),!v&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~Be)}},r.prototype._updateAnimationTargets=function(){for(var e=0;e=0){var a=this.currentStates.slice();a.splice(t,1),this.useStates(a)}},r.prototype.replaceState=function(e,t,a){var i=this.currentStates.slice(),n=ht(i,e),o=ht(i,t)>=0;n>=0?o?i.splice(n,1):i[n]=t:a&&!o&&i.push(t),this.useStates(i)},r.prototype.toggleState=function(e,t){t?this.useState(e,!0):this.removeState(e)},r.prototype._mergeStates=function(e){for(var t={},a,i=0;i=0&&n.splice(o,1)}),this.animators.push(e),a&&a.animation.addAnimator(e),a&&a.wakeUp()},r.prototype.updateDuringAnimation=function(e){this.markRedraw()},r.prototype.stopAnimation=function(e,t){for(var a=this.animators,i=a.length,n=[],o=0;o0&&t.during&&n[0].during(function(p,d){t.during(d)});for(var v=0;v0||i.force&&!o.length){var T=void 0,C=void 0,M=void 0;if(s){C={},v&&(T={});for(var S=0;S<_;S++){var y=d[S];C[y]=t[y],v?T[y]=a[y]:t[y]=a[y]}}else if(v){M={};for(var S=0;S<_;S++){var y=d[S];M[y]=vs(t[y]),P2(t,a,y)}}var w=new Zd(t,!1,!1,h?It(p,function(L){return L.targetName===e}):null);w.targetName=e,i.scope&&(w.scope=i.scope),v&&T&&w.whenWithKeys(0,T,d),M&&w.whenWithKeys(0,M,d),w.whenWithKeys(u==null?500:u,s?C:a,d).delay(f||0),r.addAnimator(w,e),o.push(w)}}var bb=Kd,Tb=function(r){Nt(e,r);function e(t){var a=r.call(this)||this;return a.isGroup=!0,a._children=[],a.attr(t),a}return e.prototype.childrenRef=function(){return this._children},e.prototype.children=function(){return this._children.slice()},e.prototype.childAt=function(t){return this._children[t]},e.prototype.childOfName=function(t){for(var a=this._children,i=0;i=0&&(i.splice(n,0,t),this._doAdd(t))}return this},e.prototype.replace=function(t,a){var i=ht(this._children,t);return i>=0&&this.replaceAt(a,i),this},e.prototype.replaceAt=function(t,a){var i=this._children,n=i[a];if(t&&t!==this&&t.parent!==this&&t!==n){i[a]=t,n.parent=null;var o=this.__zr;o&&n.removeSelfFromZr(o),this._doAdd(t)}return this},e.prototype._doAdd=function(t){t.parent&&t.parent.remove(t),t.parent=this;var a=this.__zr;a&&a!==t.__zr&&t.addSelfToZr(a),a&&a.refresh()},e.prototype.remove=function(t){var a=this.__zr,i=this._children,n=ht(i,t);return n<0?this:(i.splice(n,1),t.parent=null,a&&t.removeSelfFromZr(a),a&&a.refresh(),this)},e.prototype.removeAll=function(){for(var t=this._children,a=this.__zr,i=0;i0&&(this._stillFrameAccum++,this._stillFrameAccum>this._sleepAfterStill&&this.animation.stop())},r.prototype.setSleepAfterStill=function(e){this._sleepAfterStill=e},r.prototype.wakeUp=function(){this.animation.start(),this._stillFrameAccum=0},r.prototype.refreshHover=function(){this._needsRefreshHover=!0},r.prototype.refreshHoverImmediately=function(){this._needsRefreshHover=!1,this.painter.refreshHover&&this.painter.getType()==="canvas"&&this.painter.refreshHover()},r.prototype.resize=function(e){e=e||{},this.painter.resize(e.width,e.height),this.handler.resize()},r.prototype.clearAnimation=function(){this.animation.clear()},r.prototype.getWidth=function(){return this.painter.getWidth()},r.prototype.getHeight=function(){return this.painter.getHeight()},r.prototype.setCursorStyle=function(e){this.handler.setCursorStyle(e)},r.prototype.findHover=function(e,t){return this.handler.findHover(e,t)},r.prototype.on=function(e,t,a){return this.handler.on(e,t,a),this},r.prototype.off=function(e,t){this.handler.off(e,t)},r.prototype.trigger=function(e,t){this.handler.trigger(e,t)},r.prototype.clear=function(){for(var e=this.storage.getRoots(),t=0;t0){if(r<=i)return o;if(r>=n)return s}else{if(r>=i)return o;if(r<=n)return s}else{if(r===i)return o;if(r===n)return s}return(r-i)/l*u+o}function H(r,e){switch(r){case"center":case"middle":r="50%";break;case"left":case"top":r="0%";break;case"right":case"bottom":r="100%";break}return $(r)?B2(r).match(/%$/)?parseFloat(r)/100*e:parseFloat(r):r==null?NaN:+r}function $t(r,e,t){return e==null&&(e=10),e=Math.min(Math.max(0,e),Ab),r=(+r).toFixed(e),t?r:+r}function rr(r){return r.sort(function(e,t){return e-t}),r}function Rr(r){if(r=+r,isNaN(r))return 0;if(r>1e-14){for(var e=1,t=0;t<15;t++,e*=10)if(Math.round(r*e)/e===r)return t}return z2(r)}function z2(r){var e=r.toString().toLowerCase(),t=e.indexOf("e"),a=t>0?+e.slice(t+1):0,i=t>0?t:e.length,n=e.indexOf("."),o=n<0?0:i-1-n;return Math.max(0,o-a)}function Mb(r,e){var t=Math.log,a=Math.LN10,i=Math.floor(t(r[1]-r[0])/a),n=Math.round(t(Math.abs(e[1]-e[0]))/a),o=Math.min(Math.max(-i+n,0),20);return isFinite(o)?o:20}function G2(r,e,t){if(!r[e])return 0;var a=Vr(r,function(p,d){return p+(isNaN(d)?0:d)},0);if(a===0)return 0;for(var i=Math.pow(10,t),n=G(r,function(p){return(isNaN(p)?0:p)/a*i*100}),o=i*100,s=G(n,function(p){return Math.floor(p)}),l=Vr(s,function(p,d){return p+d},0),u=G(n,function(p,d){return p-s[d]});lf&&(f=u[v],h=v);++s[h],u[h]=0,++l}return s[e]/i}function F2(r,e){var t=Math.max(Rr(r),Rr(e)),a=r+e;return t>Ab?a:$t(a,t)}var _m=9007199254740991;function Db(r){var e=Math.PI*2;return(r%e+e)%e}function ef(r){return r>-mm&&r=10&&e++,e}function Lb(r,e){var t=Qd(r),a=Math.pow(10,t),i=r/a,n;return e?i<1.5?n=1:i<2.5?n=2:i<4?n=3:i<7?n=5:n=10:i<1?n=1:i<2?n=2:i<3?n=3:i<5?n=5:n=10,r=n*a,t>=-20?+r.toFixed(t<0?-t:0):r}function Qh(r,e){var t=(r.length-1)*e+1,a=Math.floor(t),i=+r[a-1],n=t-a;return n?i+n*(r[a]-i):i}function Sm(r){r.sort(function(l,u){return s(l,u,0)?-1:1});for(var e=-1/0,t=1,a=0;a=0||n&&ht(n,l)<0)){var u=a.getShallow(l,e);u!=null&&(o[r[s][0]]=u)}}return o}}var cP=[["fill","color"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["opacity"],["shadowColor"]],pP=ji(cP),dP=function(){function r(){}return r.prototype.getAreaStyle=function(e,t){return pP(this,e,t)},r}(),wp=new el(50);function gP(r){if(typeof r=="string"){var e=wp.get(r);return e&&e.image}else return r}function eg(r,e,t,a,i){if(r)if(typeof r=="string"){if(e&&e.__zrImageSrc===r||!t)return e;var n=wp.get(r),o={hostEl:t,cb:a,cbPayload:i};return n?(e=n.image,!Kf(e)&&n.pending.push(o)):(e=Wa.loadImage(r,Tm,Tm),e.__zrImageSrc=r,wp.put(r,e.__cachedImgObj={image:e,pending:[o]})),e}else return r;else return e}function Tm(){var r=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var e=0;e=o;l++)s-=o;var u=Ge(t,e);return u>s&&(t="",u=0),s=r-u,i.ellipsis=t,i.ellipsisWidth=u,i.contentWidth=s,i.containerWidth=r,i}function Hb(r,e){var t=e.containerWidth,a=e.font,i=e.contentWidth;if(!t)return"";var n=Ge(r,a);if(n<=t)return r;for(var o=0;;o++){if(n<=i||o>=e.maxIterations){r+=e.ellipsis;break}var s=o===0?mP(r,i,e.ascCharWidth,e.cnCharWidth):n>0?Math.floor(r.length*i/n):0;r=r.substr(0,s),n=Ge(r,a)}return r===""&&(r=e.placeholder),r}function mP(r,e,t,a){for(var i=0,n=0,o=r.length;nc&&u){var p=Math.floor(c/s);h=h.slice(0,p)}if(r&&n&&f!=null)for(var d=Fb(f,i,e.ellipsis,{minChar:e.truncateMinChar,placeholder:e.placeholder}),g=0;gs&&jh(t,r.substring(s,u),e,o),jh(t,l[2],e,o,l[1]),s=Jh.lastIndex}si){w>0?(m.tokens=m.tokens.slice(0,w),g(m,S,_),t.lines=t.lines.slice(0,y+1)):t.lines=t.lines.slice(0,y);break t}var L=b.width,I=L==null||L==="auto";if(typeof L=="string"&&L.charAt(L.length-1)==="%")x.percentWidth=L,f.push(x),x.contentWidth=Ge(x.text,M);else{if(I){var P=b.backgroundColor,R=P&&P.image;R&&(R=gP(R),Kf(R)&&(x.width=Math.max(x.width,R.width*D/R.height)))}var E=p&&a!=null?a-S:null;E!=null&&E0&&p+a.accumWidth>a.width&&(f=e.split(` +`),u=!0),a.accumWidth=p}else{var d=Wb(e,l,a.width,a.breakAll,a.accumWidth);a.accumWidth=d.accumWidth+c,h=d.linesWidths,f=d.lines}}else f=e.split(` +`);for(var g=0;g=33&&e<=383}var TP=Vr(",&?/;] ".split(""),function(r,e){return r[e]=!0,r},{});function CP(r){return bP(r)?!!TP[r]:!0}function Wb(r,e,t,a,i){for(var n=[],o=[],s="",l="",u=0,f=0,h=0;ht:i+f+c>t){f?(s||l)&&(p?(s||(s=l,l="",u=0,f=u),n.push(s),o.push(f-u),l+=v,u+=c,s="",f=u):(l&&(s+=l,l="",u=0),n.push(s),o.push(f),s=v,f=c)):p?(n.push(l),o.push(u),l=v,u=c):(n.push(v),o.push(c));continue}f+=c,p?(l+=v,u+=c):(l&&(s+=l,l="",u=0),s+=v)}return!n.length&&!s&&(s=r,l="",u=0),l&&(s+=l),s&&(n.push(s),o.push(f)),n.length===1&&(f+=i),{accumWidth:f,lines:n,linesWidths:o}}var bp="__zr_style_"+Math.round(Math.random()*10),Wi={shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:"#000",opacity:1,blend:"source-over"},Qf={style:{shadowBlur:!0,shadowOffsetX:!0,shadowOffsetY:!0,shadowColor:!0,opacity:!0}};Wi[bp]=!0;var Am=["z","z2","invisible"],AP=["invisible"],MP=function(r){Nt(e,r);function e(t){return r.call(this,t)||this}return e.prototype._init=function(t){for(var a=yt(t),i=0;i1e-4){s[0]=r-t,s[1]=e-a,l[0]=r+t,l[1]=e+a;return}if(El[0]=av(i)*t+r,El[1]=rv(i)*a+e,kl[0]=av(n)*t+r,kl[1]=rv(n)*a+e,u(s,El,kl),f(l,El,kl),i=i%si,i<0&&(i=i+si),n=n%si,n<0&&(n=n+si),i>n&&!o?n+=si:ii&&(Ol[0]=av(c)*t+r,Ol[1]=rv(c)*a+e,u(s,Ol,s),f(l,Ol,l))}var Et={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},li=[],ui=[],wr=[],ga=[],br=[],Tr=[],iv=Math.min,nv=Math.max,fi=Math.cos,hi=Math.sin,Yr=Math.abs,Tp=Math.PI,Ta=Tp*2,ov=typeof Float32Array!="undefined",Do=[];function sv(r){var e=Math.round(r/Tp*1e8)/1e8;return e%2*Tp}function $b(r,e){var t=sv(r[0]);t<0&&(t+=Ta);var a=t-r[0],i=r[1];i+=a,!e&&i-t>=Ta?i=t+Ta:e&&t-i>=Ta?i=t-Ta:!e&&t>i?i=t+(Ta-sv(t-i)):e&&t0&&(this._ux=Yr(a/ju/e)||0,this._uy=Yr(a/ju/t)||0)},r.prototype.setDPR=function(e){this.dpr=e},r.prototype.setContext=function(e){this._ctx=e},r.prototype.getContext=function(){return this._ctx},r.prototype.beginPath=function(){return this._ctx&&this._ctx.beginPath(),this.reset(),this},r.prototype.reset=function(){this._saveData&&(this._len=0),this._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},r.prototype.moveTo=function(e,t){return this._drawPendingPt(),this.addData(Et.M,e,t),this._ctx&&this._ctx.moveTo(e,t),this._x0=e,this._y0=t,this._xi=e,this._yi=t,this},r.prototype.lineTo=function(e,t){var a=Yr(e-this._xi),i=Yr(t-this._yi),n=a>this._ux||i>this._uy;if(this.addData(Et.L,e,t),this._ctx&&n&&this._ctx.lineTo(e,t),n)this._xi=e,this._yi=t,this._pendingPtDist=0;else{var o=a*a+i*i;o>this._pendingPtDist&&(this._pendingPtX=e,this._pendingPtY=t,this._pendingPtDist=o)}return this},r.prototype.bezierCurveTo=function(e,t,a,i,n,o){return this._drawPendingPt(),this.addData(Et.C,e,t,a,i,n,o),this._ctx&&this._ctx.bezierCurveTo(e,t,a,i,n,o),this._xi=n,this._yi=o,this},r.prototype.quadraticCurveTo=function(e,t,a,i){return this._drawPendingPt(),this.addData(Et.Q,e,t,a,i),this._ctx&&this._ctx.quadraticCurveTo(e,t,a,i),this._xi=a,this._yi=i,this},r.prototype.arc=function(e,t,a,i,n,o){this._drawPendingPt(),Do[0]=i,Do[1]=n,$b(Do,o),i=Do[0],n=Do[1];var s=n-i;return this.addData(Et.A,e,t,a,a,i,s,0,o?0:1),this._ctx&&this._ctx.arc(e,t,a,i,n,o),this._xi=fi(n)*a+e,this._yi=hi(n)*a+t,this},r.prototype.arcTo=function(e,t,a,i,n){return this._drawPendingPt(),this._ctx&&this._ctx.arcTo(e,t,a,i,n),this},r.prototype.rect=function(e,t,a,i){return this._drawPendingPt(),this._ctx&&this._ctx.rect(e,t,a,i),this.addData(Et.R,e,t,a,i),this},r.prototype.closePath=function(){this._drawPendingPt(),this.addData(Et.Z);var e=this._ctx,t=this._x0,a=this._y0;return e&&e.closePath(),this._xi=t,this._yi=a,this},r.prototype.fill=function(e){e&&e.fill(),this.toStatic()},r.prototype.stroke=function(e){e&&e.stroke(),this.toStatic()},r.prototype.len=function(){return this._len},r.prototype.setData=function(e){var t=e.length;!(this.data&&this.data.length===t)&&ov&&(this.data=new Float32Array(t));for(var a=0;af.length&&(this._expandData(),f=this.data);for(var h=0;h0&&(this._ctx&&this._ctx.lineTo(this._pendingPtX,this._pendingPtY),this._pendingPtDist=0)},r.prototype._expandData=function(){if(!(this.data instanceof Array)){for(var e=[],t=0;t11&&(this.data=new Float32Array(e)))}},r.prototype.getBoundingRect=function(){wr[0]=wr[1]=br[0]=br[1]=Number.MAX_VALUE,ga[0]=ga[1]=Tr[0]=Tr[1]=-Number.MAX_VALUE;var e=this.data,t=0,a=0,i=0,n=0,o;for(o=0;oa||Yr(_)>i||v===t-1)&&(d=Math.sqrt(m*m+_*_),n=g,o=y);break}case Et.C:{var S=e[v++],w=e[v++],g=e[v++],y=e[v++],x=e[v++],b=e[v++];d=HI(n,o,S,w,g,y,x,b,10),n=x,o=b;break}case Et.Q:{var S=e[v++],w=e[v++],g=e[v++],y=e[v++];d=$I(n,o,S,w,g,y,10),n=g,o=y;break}case Et.A:var T=e[v++],C=e[v++],M=e[v++],D=e[v++],L=e[v++],I=e[v++],P=I+L;v+=1,e[v++],p&&(s=fi(L)*M+T,l=hi(L)*D+C),d=nv(M,D)*iv(Ta,Math.abs(I)),n=fi(P)*M+T,o=hi(P)*D+C;break;case Et.R:{s=n=e[v++],l=o=e[v++];var R=e[v++],E=e[v++];d=R*2+E*2;break}case Et.Z:{var m=s-n,_=l-o;d=Math.sqrt(m*m+_*_),n=s,o=l;break}}d>=0&&(u[h++]=d,f+=d)}return this._pathLen=f,f},r.prototype.rebuildPath=function(e,t){var a=this.data,i=this._ux,n=this._uy,o=this._len,s,l,u,f,h,v,c=t<1,p,d,g=0,y=0,m,_=0,S,w;if(c&&(this._pathSegLen||this._calculateLength(),p=this._pathSegLen,d=this._pathLen,m=t*d,!m))return;t:for(var x=0;x0&&(e.lineTo(S,w),_=0),b){case Et.M:s=u=a[x++],l=f=a[x++],e.moveTo(u,f);break;case Et.L:{h=a[x++],v=a[x++];var C=Yr(h-u),M=Yr(v-f);if(C>i||M>n){if(c){var D=p[y++];if(g+D>m){var L=(m-g)/D;e.lineTo(u*(1-L)+h*L,f*(1-L)+v*L);break t}g+=D}e.lineTo(h,v),u=h,f=v,_=0}else{var I=C*C+M*M;I>_&&(S=h,w=v,_=I)}break}case Et.C:{var P=a[x++],R=a[x++],E=a[x++],N=a[x++],k=a[x++],V=a[x++];if(c){var D=p[y++];if(g+D>m){var L=(m-g)/D;$a(u,P,E,k,L,li),$a(f,R,N,V,L,ui),e.bezierCurveTo(li[1],ui[1],li[2],ui[2],li[3],ui[3]);break t}g+=D}e.bezierCurveTo(P,R,E,N,k,V),u=k,f=V;break}case Et.Q:{var P=a[x++],R=a[x++],E=a[x++],N=a[x++];if(c){var D=p[y++];if(g+D>m){var L=(m-g)/D;Ds(u,P,E,L,li),Ds(f,R,N,L,ui),e.quadraticCurveTo(li[1],ui[1],li[2],ui[2]);break t}g+=D}e.quadraticCurveTo(P,R,E,N),u=E,f=N;break}case Et.A:var F=a[x++],W=a[x++],Z=a[x++],tt=a[x++],ft=a[x++],Dt=a[x++],At=a[x++],pt=!a[x++],et=Z>tt?Z:tt,gt=Yr(Z-tt)>.001,lt=ft+Dt,X=!1;if(c){var D=p[y++];g+D>m&&(lt=ft+Dt*(m-g)/D,X=!0),g+=D}if(gt&&e.ellipse?e.ellipse(F,W,Z,tt,At,ft,lt,pt):e.arc(F,W,et,ft,lt,pt),X)break t;T&&(s=fi(ft)*Z+F,l=hi(ft)*tt+W),u=fi(lt)*Z+F,f=hi(lt)*tt+W;break;case Et.R:s=u=a[x],l=f=a[x+1],h=a[x++],v=a[x++];var nt=a[x++],zt=a[x++];if(c){var D=p[y++];if(g+D>m){var mt=m-g;e.moveTo(h,v),e.lineTo(h+iv(mt,nt),v),mt-=nt,mt>0&&e.lineTo(h+nt,v+iv(mt,zt)),mt-=zt,mt>0&&e.lineTo(h+nv(nt-mt,0),v+zt),mt-=nt,mt>0&&e.lineTo(h,v+nv(zt-mt,0));break t}g+=D}e.rect(h,v,nt,zt);break;case Et.Z:if(c){var D=p[y++];if(g+D>m){var L=(m-g)/D;e.lineTo(u*(1-L)+s*L,f*(1-L)+l*L);break t}g+=D}e.closePath(),u=s,f=l}}},r.prototype.clone=function(){var e=new r,t=this.data;return e.data=t.slice?t.slice():Array.prototype.slice.call(t),e._len=this._len,e},r.CMD=Et,r.initDefaultProps=function(){var e=r.prototype;e._saveData=!0,e._ux=0,e._uy=0,e._pendingPtDist=0,e._version=0}(),r}(),Fr=RP;function Aa(r,e,t,a,i,n,o){if(i===0)return!1;var s=i,l=0,u=r;if(o>e+s&&o>a+s||or+s&&n>t+s||ne+h&&f>a+h&&f>n+h&&f>s+h||fr+h&&u>t+h&&u>i+h&&u>o+h||ue+u&&l>a+u&&l>n+u||lr+u&&s>t+u&&s>i+u||st||f+ui&&(i+=Lo);var v=Math.atan2(l,s);return v<0&&(v+=Lo),v>=a&&v<=i||v+Lo>=a&&v+Lo<=i}function Kr(r,e,t,a,i,n){if(n>e&&n>a||ni?s:0}var ya=Fr.CMD,vi=Math.PI*2,OP=1e-4;function NP(r,e){return Math.abs(r-e)e&&u>a&&u>n&&u>s||u1&&VP(),c=te(e,a,n,s,Ke[0]),v>1&&(p=te(e,a,n,s,Ke[1]))),v===2?ge&&s>a&&s>n||s=0&&u<=1){for(var f=0,h=ae(e,a,n,u),v=0;vt||s<-t)return 0;var l=Math.sqrt(t*t-s*s);xe[0]=-l,xe[1]=l;var u=Math.abs(a-i);if(u<1e-4)return 0;if(u>=vi-1e-4){a=0,i=vi;var f=n?1:-1;return o>=xe[0]+r&&o<=xe[1]+r?f:0}if(a>i){var h=a;a=i,i=h}a<0&&(a+=vi,i+=vi);for(var v=0,c=0;c<2;c++){var p=xe[c];if(p+r>o){var d=Math.atan2(s,p),f=n?1:-1;d<0&&(d=vi+d),(d>=a&&d<=i||d+vi>=a&&d+vi<=i)&&(d>Math.PI/2&&d1&&(t||(s+=Kr(l,u,f,h,a,i))),g&&(l=n[p],u=n[p+1],f=l,h=u),d){case ya.M:f=n[p++],h=n[p++],l=f,u=h;break;case ya.L:if(t){if(Aa(l,u,n[p],n[p+1],e,a,i))return!0}else s+=Kr(l,u,n[p],n[p+1],a,i)||0;l=n[p++],u=n[p++];break;case ya.C:if(t){if(EP(l,u,n[p++],n[p++],n[p++],n[p++],n[p],n[p+1],e,a,i))return!0}else s+=BP(l,u,n[p++],n[p++],n[p++],n[p++],n[p],n[p+1],a,i)||0;l=n[p++],u=n[p++];break;case ya.Q:if(t){if(Ub(l,u,n[p++],n[p++],n[p],n[p+1],e,a,i))return!0}else s+=zP(l,u,n[p++],n[p++],n[p],n[p+1],a,i)||0;l=n[p++],u=n[p++];break;case ya.A:var y=n[p++],m=n[p++],_=n[p++],S=n[p++],w=n[p++],x=n[p++];p+=1;var b=!!(1-n[p++]);v=Math.cos(w)*_+y,c=Math.sin(w)*S+m,g?(f=v,h=c):s+=Kr(l,u,v,c,a,i);var T=(a-y)*S/_+y;if(t){if(kP(y,m,S,w,w+x,b,e,T,i))return!0}else s+=GP(y,m,S,w,w+x,b,T,i);l=Math.cos(w+x)*_+y,u=Math.sin(w+x)*S+m;break;case ya.R:f=l=n[p++],h=u=n[p++];var C=n[p++],M=n[p++];if(v=f+C,c=h+M,t){if(Aa(f,h,v,h,e,a,i)||Aa(v,h,v,c,e,a,i)||Aa(v,c,f,c,e,a,i)||Aa(f,c,f,h,e,a,i))return!0}else s+=Kr(v,h,v,c,a,i),s+=Kr(f,c,f,h,a,i);break;case ya.Z:if(t){if(Aa(l,u,f,h,e,a,i))return!0}else s+=Kr(l,u,f,h,a,i);l=f,u=h;break}}return!t&&!NP(u,h)&&(s+=Kr(l,u,f,h,a,i)||0),s!==0}function FP(r,e,t){return Yb(r,0,!1,e,t)}function HP(r,e,t,a){return Yb(r,e,!0,t,a)}var rf=Q({fill:"#000",stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:"butt",miterLimit:10,strokeNoScale:!1,strokeFirst:!1},Wi),WP={style:Q({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},Qf.style)},lv=zr.concat(["invisible","culling","z","z2","zlevel","parent"]),$P=function(r){Nt(e,r);function e(t){return r.call(this,t)||this}return e.prototype.update=function(){var t=this;r.prototype.update.call(this);var a=this.style;if(a.decal){var i=this._decalEl=this._decalEl||new e;i.buildPath===e.prototype.buildPath&&(i.buildPath=function(l){t.buildPath(l,t.shape)}),i.silent=!0;var n=i.style;for(var o in a)n[o]!==a[o]&&(n[o]=a[o]);n.fill=a.fill?a.decal:null,n.decal=null,n.shadowColor=null,a.strokeFirst&&(n.stroke=null);for(var s=0;s.5?_p:a>.2?T2:Sp}else if(t)return Sp}return _p},e.prototype.getInsideTextStroke=function(t){var a=this.style.fill;if($(a)){var i=this.__zr,n=!!(i&&i.isDarkMode()),o=Qu(t,0)0))},e.prototype.hasFill=function(){var t=this.style,a=t.fill;return a!=null&&a!=="none"},e.prototype.getBoundingRect=function(){var t=this._rect,a=this.style,i=!t;if(i){var n=!1;this.path||(n=!0,this.createPathProxy());var o=this.path;(n||this.__dirty&En)&&(o.beginPath(),this.buildPath(o,this.shape,!1),this.pathUpdated()),t=o.getBoundingRect()}if(this._rect=t,this.hasStroke()&&this.path&&this.path.len()>0){var s=this._rectStroke||(this._rectStroke=t.clone());if(this.__dirty||i){s.copy(t);var l=a.strokeNoScale?this.getLineScale():1,u=a.lineWidth;if(!this.hasFill()){var f=this.strokeContainThreshold;u=Math.max(u,f==null?4:f)}l>1e-10&&(s.width+=u/l,s.height+=u/l,s.x-=u/l/2,s.y-=u/l/2)}return s}return t},e.prototype.contain=function(t,a){var i=this.transformCoordToLocal(t,a),n=this.getBoundingRect(),o=this.style;if(t=i[0],a=i[1],n.contain(t,a)){var s=this.path;if(this.hasStroke()){var l=o.lineWidth,u=o.strokeNoScale?this.getLineScale():1;if(u>1e-10&&(this.hasFill()||(l=Math.max(l,this.strokeContainThreshold)),HP(s,l/u,t,a)))return!0}if(this.hasFill())return FP(s,t,a)}return!1},e.prototype.dirtyShape=function(){this.__dirty|=En,this._rect&&(this._rect=null),this._decalEl&&this._decalEl.dirtyShape(),this.markRedraw()},e.prototype.dirty=function(){this.dirtyStyle(),this.dirtyShape()},e.prototype.animateShape=function(t){return this.animate("shape",t)},e.prototype.updateDuringAnimation=function(t){t==="style"?this.dirtyStyle():t==="shape"?this.dirtyShape():this.markRedraw()},e.prototype.attrKV=function(t,a){t==="shape"?this.setShape(a):r.prototype.attrKV.call(this,t,a)},e.prototype.setShape=function(t,a){var i=this.shape;return i||(i=this.shape={}),typeof t=="string"?i[t]=a:B(i,t),this.dirtyShape(),this},e.prototype.shapeChanged=function(){return!!(this.__dirty&En)},e.prototype.createStyle=function(t){return Uf(rf,t)},e.prototype._innerSaveToNormal=function(t){r.prototype._innerSaveToNormal.call(this,t);var a=this._normalState;t.shape&&!a.shape&&(a.shape=B({},this.shape))},e.prototype._applyStateObj=function(t,a,i,n,o,s){r.prototype._applyStateObj.call(this,t,a,i,n,o,s);var l=!(a&&n),u;if(a&&a.shape?o?n?u=a.shape:(u=B({},i.shape),B(u,a.shape)):(u=B({},n?this.shape:i.shape),B(u,a.shape)):l&&(u=i.shape),u)if(o){this.shape=B({},this.shape);for(var f={},h=yt(u),v=0;v0},e.prototype.hasFill=function(){var t=this.style,a=t.fill;return a!=null&&a!=="none"},e.prototype.createStyle=function(t){return Uf(UP,t)},e.prototype.setBoundingRect=function(t){this._rect=t},e.prototype.getBoundingRect=function(){var t=this.style;if(!this._rect){var a=t.text;a!=null?a+="":a="";var i=rl(a,t.font,t.textAlign,t.textBaseline);if(i.x+=t.x||0,i.y+=t.y||0,this.hasStroke()){var n=t.lineWidth;i.x-=n/2,i.y-=n/2,i.width+=n,i.height+=n}this._rect=i}return this._rect},e.initDefaultProps=function(){var t=e.prototype;t.dirtyRectTolerance=10}(),e}(nr);Zb.prototype.type="tspan";var Ps=Zb,YP=Q({x:0,y:0},Wi),ZP={style:Q({x:!0,y:!0,width:!0,height:!0,sx:!0,sy:!0,sWidth:!0,sHeight:!0},Qf.style)};function XP(r){return!!(r&&typeof r!="string"&&r.width&&r.height)}var Xb=function(r){Nt(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.createStyle=function(t){return Uf(YP,t)},e.prototype._getSize=function(t){var a=this.style,i=a[t];if(i!=null)return i;var n=XP(a.image)?a.image:this.__image;if(!n)return 0;var o=t==="width"?"height":"width",s=a[o];return s==null?n[t]:n[t]/n[o]*s},e.prototype.getWidth=function(){return this._getSize("width")},e.prototype.getHeight=function(){return this._getSize("height")},e.prototype.getAnimationStyleProps=function(){return ZP},e.prototype.getBoundingRect=function(){var t=this.style;return this._rect||(this._rect=new ut(t.x||0,t.y||0,this.getWidth(),this.getHeight())),this._rect},e}(nr);Xb.prototype.type="image";var he=Xb;function qP(r,e){var t=e.x,a=e.y,i=e.width,n=e.height,o=e.r,s,l,u,f;i<0&&(t=t+i,i=-i),n<0&&(a=a+n,n=-n),typeof o=="number"?s=l=u=f=o:o instanceof Array?o.length===1?s=l=u=f=o[0]:o.length===2?(s=u=o[0],l=f=o[1]):o.length===3?(s=o[0],l=f=o[1],u=o[2]):(s=o[0],l=o[1],u=o[2],f=o[3]):s=l=u=f=0;var h;s+l>i&&(h=s+l,s*=i/h,l*=i/h),u+f>i&&(h=u+f,u*=i/h,f*=i/h),l+u>n&&(h=l+u,l*=n/h,u*=n/h),s+f>n&&(h=s+f,s*=n/h,f*=n/h),r.moveTo(t+s,a),r.lineTo(t+i-l,a),l!==0&&r.arc(t+i-l,a+l,l,-Math.PI/2,0),r.lineTo(t+i,a+n-u),u!==0&&r.arc(t+i-u,a+n-u,u,0,Math.PI/2),r.lineTo(t+f,a+n),f!==0&&r.arc(t+f,a+n-f,f,Math.PI/2,Math.PI),r.lineTo(t,a+s),s!==0&&r.arc(t+s,a+s,s,Math.PI,Math.PI*1.5)}var zn=Math.round;function qb(r,e,t){if(!!e){var a=e.x1,i=e.x2,n=e.y1,o=e.y2;r.x1=a,r.x2=i,r.y1=n,r.y2=o;var s=t&&t.lineWidth;return s&&(zn(a*2)===zn(i*2)&&(r.x1=r.x2=Vi(a,s,!0)),zn(n*2)===zn(o*2)&&(r.y1=r.y2=Vi(n,s,!0))),r}}function Kb(r,e,t){if(!!e){var a=e.x,i=e.y,n=e.width,o=e.height;r.x=a,r.y=i,r.width=n,r.height=o;var s=t&&t.lineWidth;return s&&(r.x=Vi(a,s,!0),r.y=Vi(i,s,!0),r.width=Math.max(Vi(a+n,s,!1)-r.x,n===0?0:1),r.height=Math.max(Vi(i+o,s,!1)-r.y,o===0?0:1)),r}}function Vi(r,e,t){if(!e)return r;var a=zn(r*2);return(a+zn(e))%2===0?a/2:(a+(t?1:-1))/2}var KP=function(){function r(){this.x=0,this.y=0,this.width=0,this.height=0}return r}(),QP={},Qb=function(r){Nt(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultShape=function(){return new KP},e.prototype.buildPath=function(t,a){var i,n,o,s;if(this.subPixelOptimize){var l=Kb(QP,a,this.style);i=l.x,n=l.y,o=l.width,s=l.height,l.r=a.r,a=l}else i=a.x,n=a.y,o=a.width,s=a.height;a.r?qP(t,a):t.rect(i,n,o,s)},e.prototype.isZeroArea=function(){return!this.shape.width||!this.shape.height},e}(dt);Qb.prototype.type="rect";var _t=Qb,Pm={fill:"#000"},Rm=2,JP={style:Q({fill:!0,stroke:!0,fillOpacity:!0,strokeOpacity:!0,lineWidth:!0,fontSize:!0,lineHeight:!0,width:!0,height:!0,textShadowColor:!0,textShadowBlur:!0,textShadowOffsetX:!0,textShadowOffsetY:!0,backgroundColor:!0,padding:!0,borderColor:!0,borderWidth:!0,borderRadius:!0},Qf.style)},Jb=function(r){Nt(e,r);function e(t){var a=r.call(this)||this;return a.type="text",a._children=[],a._defaultStyle=Pm,a.attr(t),a}return e.prototype.childrenRef=function(){return this._children},e.prototype.update=function(){r.prototype.update.call(this),this.styleChanged()&&this._updateSubTexts();for(var t=0;t0,L=t.width!=null&&(t.overflow==="truncate"||t.overflow==="break"||t.overflow==="breakAll"),I=o.calculatedLineHeight,P=0;P=0&&(P=x[I],P.align==="right");)this._placeToken(P,t,T,y,L,"right",_),C-=P.width,L-=P.width,I--;for(D+=(n-(D-g)-(m-L)-C)/2;M<=I;)P=x[M],this._placeToken(P,t,T,y,D+P.width/2,"center",_),D+=P.width,M++;y+=T}},e.prototype._placeToken=function(t,a,i,n,o,s,l){var u=a.rich[t.styleName]||{};u.text=t.text;var f=t.verticalAlign,h=n+i/2;f==="top"?h=n+t.height/2:f==="bottom"&&(h=n+i-t.height/2);var v=!t.isLineHolder&&uv(u);v&&this._renderBackground(u,a,s==="right"?o-t.width:s==="center"?o-t.width/2:o,h-t.height/2,t.width,t.height);var c=!!u.backgroundColor,p=t.textPadding;p&&(o=Bm(o,s,p),h-=t.height/2-p[0]-t.innerHeight/2);var d=this._getOrCreateChild(Ps),g=d.createStyle();d.useStyle(g);var y=this._defaultStyle,m=!1,_=0,S=Vm("fill"in u?u.fill:"fill"in a?a.fill:(m=!0,y.fill)),w=Nm("stroke"in u?u.stroke:"stroke"in a?a.stroke:!c&&!l&&(!y.autoStroke||m)?(_=Rm,y.stroke):null),x=u.textShadowBlur>0||a.textShadowBlur>0;g.text=t.text,g.x=o,g.y=h,x&&(g.shadowBlur=u.textShadowBlur||a.textShadowBlur||0,g.shadowColor=u.textShadowColor||a.textShadowColor||"transparent",g.shadowOffsetX=u.textShadowOffsetX||a.textShadowOffsetX||0,g.shadowOffsetY=u.textShadowOffsetY||a.textShadowOffsetY||0),g.textAlign=s,g.textBaseline="middle",g.font=t.font||Ha,g.opacity=jr(u.opacity,a.opacity,1),km(g,u),w&&(g.lineWidth=jr(u.lineWidth,a.lineWidth,_),g.lineDash=vt(u.lineDash,a.lineDash),g.lineDashOffset=a.lineDashOffset||0,g.stroke=w),S&&(g.fill=S);var b=t.contentWidth,T=t.contentHeight;d.setBoundingRect(new ut(ts(g.x,b,g.textAlign),kn(g.y,T,g.textBaseline),b,T))},e.prototype._renderBackground=function(t,a,i,n,o,s){var l=t.backgroundColor,u=t.borderWidth,f=t.borderColor,h=l&&l.image,v=l&&!h,c=t.borderRadius,p=this,d,g;if(v||t.lineHeight||u&&f){d=this._getOrCreateChild(_t),d.useStyle(d.createStyle()),d.style.fill=null;var y=d.shape;y.x=i,y.y=n,y.width=o,y.height=s,y.r=c,d.dirtyShape()}if(v){var m=d.style;m.fill=l||null,m.fillOpacity=vt(t.fillOpacity,1)}else if(h){g=this._getOrCreateChild(he),g.onload=function(){p.dirtyStyle()};var _=g.style;_.image=l.image,_.x=i,_.y=n,_.width=o,_.height=s}if(u&&f){var m=d.style;m.lineWidth=u,m.stroke=f,m.strokeOpacity=vt(t.strokeOpacity,1),m.lineDash=t.borderDash,m.lineDashOffset=t.borderDashOffset||0,d.strokeContainThreshold=0,d.hasFill()&&d.hasStroke()&&(m.strokeFirst=!0,m.lineWidth*=2)}var S=(d||g).style;S.shadowBlur=t.shadowBlur||0,S.shadowColor=t.shadowColor||"transparent",S.shadowOffsetX=t.shadowOffsetX||0,S.shadowOffsetY=t.shadowOffsetY||0,S.opacity=jr(t.opacity,a.opacity,1)},e.makeFont=function(t){var a="";return tT(t)&&(a=[t.fontStyle,t.fontWeight,jb(t.fontSize),t.fontFamily||"sans-serif"].join(" ")),a&&pr(a)||t.textFont||t.font},e}(nr),jP={left:!0,right:1,center:1},tR={top:1,bottom:1,middle:1},Em=["fontStyle","fontWeight","fontSize","fontFamily"];function jb(r){return typeof r=="string"&&(r.indexOf("px")!==-1||r.indexOf("rem")!==-1||r.indexOf("em")!==-1)?r:isNaN(+r)?Bd+"px":r+"px"}function km(r,e){for(var t=0;t=0,n=!1;if(r instanceof dt){var o=eT(r),s=i&&o.selectFill||o.normalFill,l=i&&o.selectStroke||o.normalStroke;if(gn(s)||gn(l)){a=a||{};var u=a.style||{};u.fill==="inherit"?(n=!0,a=B({},a),u=B({},u),u.fill=s):!gn(u.fill)&&gn(s)?(n=!0,a=B({},a),u=B({},u),u.fill=Wm(s)):!gn(u.stroke)&&gn(l)&&(n||(a=B({},a),u=B({},u)),u.stroke=Wm(l)),a.style=u}}if(a&&a.z2==null){n||(a=B({},a));var f=r.z2EmphasisLift;a.z2=r.z2+(f!=null?f:lo)}return a}function sR(r,e,t){if(t&&t.z2==null){t=B({},t);var a=r.z2SelectLift;t.z2=r.z2+(a!=null?a:rR)}return t}function lR(r,e,t){var a=ht(r.currentStates,e)>=0,i=r.style.opacity,n=a?null:nR(r,["opacity"],e,{opacity:1});t=t||{};var o=t.style||{};return o.opacity==null&&(t=B({},t),o=B({opacity:a?i:n.opacity*.1},o),t.style=o),t}function fv(r,e){var t=this.states[r];if(this.style){if(r==="emphasis")return oR(this,r,e,t);if(r==="blur")return lR(this,r,t);if(r==="select")return sR(this,r,t)}return t}function tn(r){r.stateProxy=fv;var e=r.getTextContent(),t=r.getTextGuideLine();e&&(e.stateProxy=fv),t&&(t.stateProxy=fv)}function Um(r,e){!lT(r,e)&&!r.__highByOuter&&va(r,rT)}function Ym(r,e){!lT(r,e)&&!r.__highByOuter&&va(r,aT)}function sa(r,e){r.__highByOuter|=1<<(e||0),va(r,rT)}function la(r,e){!(r.__highByOuter&=~(1<<(e||0)))&&va(r,aT)}function nT(r){va(r,ig)}function ng(r){va(r,iT)}function oT(r){va(r,aR)}function sT(r){va(r,iR)}function lT(r,e){return r.__highDownSilentOnTouch&&e.zrByTouch}function uT(r){var e=r.getModel(),t=[],a=[];e.eachComponent(function(i,n){var o=rg(n),s=i==="series",l=s?r.getViewOfSeriesModel(n):r.getViewOfComponentModel(n);!s&&a.push(l),o.isBlured&&(l.group.traverse(function(u){iT(u)}),s&&t.push(n)),o.isBlured=!1}),A(a,function(i){i&&i.toggleBlurSeries&&i.toggleBlurSeries(t,!1,e)})}function Ap(r,e,t,a){var i=a.getModel();t=t||"coordinateSystem";function n(u,f){for(var h=0;h0){var s={dataIndex:o,seriesIndex:t.seriesIndex};n!=null&&(s.dataType=n),e.push(s)}})}),e}function Ui(r,e,t){Bi(r,!0),va(r,tn),Dp(r,e,t)}function pR(r){Bi(r,!1)}function Ut(r,e,t,a){a?pR(r):Ui(r,e,t)}function Dp(r,e,t){var a=at(r);e!=null?(a.focus=e,a.blurScope=t):a.focus&&(a.focus=null)}var Xm=["emphasis","blur","select"],dR={itemStyle:"getItemStyle",lineStyle:"getLineStyle",areaStyle:"getAreaStyle"};function fe(r,e,t,a){t=t||"itemStyle";for(var i=0;i1&&(o*=hv(p),s*=hv(p));var d=(i===n?-1:1)*hv((o*o*(s*s)-o*o*(c*c)-s*s*(v*v))/(o*o*(c*c)+s*s*(v*v)))||0,g=d*o*c/s,y=d*-s*v/o,m=(r+t)/2+Vl(h)*g-Nl(h)*y,_=(e+a)/2+Nl(h)*g+Vl(h)*y,S=Jm([1,0],[(v-g)/o,(c-y)/s]),w=[(v-g)/o,(c-y)/s],x=[(-1*v-g)/o,(-1*c-y)/s],b=Jm(w,x);if(Ip(w,x)<=-1&&(b=Io),Ip(w,x)>=1&&(b=0),b<0){var T=Math.round(b/Io*1e6)/1e6;b=Io*2+T%2*Io}f.addData(u,m,_,o,s,S,b,h,n)}var xR=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/ig,wR=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;function bR(r){var e=new Fr;if(!r)return e;var t=0,a=0,i=t,n=a,o,s=Fr.CMD,l=r.match(xR);if(!l)return e;for(var u=0;uP*P+R*R&&(T=M,C=D),{cx:T,cy:C,x0:-f,y0:-h,x1:T*(i/w-1),y1:C*(i/w-1)}}function IR(r){var e;if(z(r)){var t=r.length;if(!t)return r;t===1?e=[r[0],r[0],0,0]:t===2?e=[r[0],r[0],r[1],r[1]]:t===3?e=r.concat(r[2]):e=r}else e=[r,r,r,r];return e}function PR(r,e){var t,a=es(e.r,0),i=es(e.r0||0,0),n=a>0,o=i>0;if(!(!n&&!o)){if(n||(a=i,i=0),i>a){var s=a;a=i,i=s}var l=e.startAngle,u=e.endAngle;if(!(isNaN(l)||isNaN(u))){var f=e.cx,h=e.cy,v=!!e.clockwise,c=t0(u-l),p=c>vv&&c%vv;if(p>fr&&(c=p),!(a>fr))r.moveTo(f,h);else if(c>vv-fr)r.moveTo(f+a*mn(l),h+a*ci(l)),r.arc(f,h,a,l,u,!v),i>fr&&(r.moveTo(f+i*mn(u),h+i*ci(u)),r.arc(f,h,i,u,l,v));else{var d=void 0,g=void 0,y=void 0,m=void 0,_=void 0,S=void 0,w=void 0,x=void 0,b=void 0,T=void 0,C=void 0,M=void 0,D=void 0,L=void 0,I=void 0,P=void 0,R=a*mn(l),E=a*ci(l),N=i*mn(u),k=i*ci(u),V=c>fr;if(V){var F=e.cornerRadius;F&&(t=IR(F),d=t[0],g=t[1],y=t[2],m=t[3]);var W=t0(a-i)/2;if(_=Cr(W,y),S=Cr(W,m),w=Cr(W,d),x=Cr(W,g),C=b=es(_,S),M=T=es(w,x),(b>fr||T>fr)&&(D=a*mn(u),L=a*ci(u),I=i*mn(l),P=i*ci(l),cfr){var gt=Cr(y,C),lt=Cr(m,C),X=Bl(I,P,R,E,a,gt,v),nt=Bl(D,L,N,k,a,lt,v);r.moveTo(f+X.cx+X.x0,h+X.cy+X.y0),C0&&r.arc(f+X.cx,h+X.cy,gt,ce(X.y0,X.x0),ce(X.y1,X.x1),!v),r.arc(f,h,a,ce(X.cy+X.y1,X.cx+X.x1),ce(nt.cy+nt.y1,nt.cx+nt.x1),!v),lt>0&&r.arc(f+nt.cx,h+nt.cy,lt,ce(nt.y1,nt.x1),ce(nt.y0,nt.x0),!v))}else r.moveTo(f+R,h+E),r.arc(f,h,a,l,u,!v);if(!(i>fr)||!V)r.lineTo(f+N,h+k);else if(M>fr){var gt=Cr(d,M),lt=Cr(g,M),X=Bl(N,k,D,L,i,-lt,v),nt=Bl(R,E,I,P,i,-gt,v);r.lineTo(f+X.cx+X.x0,h+X.cy+X.y0),M0&&r.arc(f+X.cx,h+X.cy,lt,ce(X.y0,X.x0),ce(X.y1,X.x1),!v),r.arc(f,h,i,ce(X.cy+X.y1,X.cx+X.x1),ce(nt.cy+nt.y1,nt.cx+nt.x1),v),gt>0&&r.arc(f+nt.cx,h+nt.cy,gt,ce(nt.y1,nt.x1),ce(nt.y0,nt.x0),!v))}else r.lineTo(f+N,h+k),r.arc(f,h,i,u,l,v)}r.closePath()}}}var RR=function(){function r(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=Math.PI*2,this.clockwise=!0,this.cornerRadius=0}return r}(),mT=function(r){Nt(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultShape=function(){return new RR},e.prototype.buildPath=function(t,a){PR(t,a)},e.prototype.isZeroArea=function(){return this.shape.startAngle===this.shape.endAngle||this.shape.r===this.shape.r0},e}(dt);mT.prototype.type="sector";var Re=mT,ER=function(){function r(){this.cx=0,this.cy=0,this.r=0,this.r0=0}return r}(),_T=function(r){Nt(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultShape=function(){return new ER},e.prototype.buildPath=function(t,a){var i=a.cx,n=a.cy,o=Math.PI*2;t.moveTo(i+a.r,n),t.arc(i,n,a.r,0,o,!1),t.moveTo(i+a.r0,n),t.arc(i,n,a.r0,0,o,!0)},e}(dt);_T.prototype.type="ring";var eh=_T;function kR(r,e,t,a){var i=[],n=[],o=[],s=[],l,u,f,h;if(a){f=[1/0,1/0],h=[-1/0,-1/0];for(var v=0,c=r.length;v=2){if(a){var n=kR(i,a,t,e.smoothConstraint);r.moveTo(i[0][0],i[0][1]);for(var o=i.length,s=0;s<(t?o:o-1);s++){var l=n[s*2],u=n[s*2+1],f=i[(s+1)%o];r.bezierCurveTo(l[0],l[1],u[0],u[1],f[0],f[1])}}else{r.moveTo(i[0][0],i[0][1]);for(var s=1,h=i.length;sdi[1]){if(s=!1,n)return s;var f=Math.abs(di[0]-pi[1]),h=Math.abs(pi[0]-di[1]);Math.min(f,h)>i.len()&&(f0){var h=f.duration,v=f.delay,c=f.easing,p={duration:h,delay:v||0,easing:c,done:n,force:!!n||!!o,setToFinal:!u,scope:r,during:o};s?e.animateFrom(t,p):e.animateTo(t,p)}else e.stopAnimation(),!s&&e.attr(t),o&&o(1),n&&n()}function wt(r,e,t,a,i,n){hg("update",r,e,t,a,i,n)}function Gt(r,e,t,a,i,n){hg("enter",r,e,t,a,i,n)}function Un(r){if(!r.__zr)return!0;for(var e=0;eMath.abs(n[1])?n[0]>0?"right":"left":n[1]>0?"bottom":"top"}function a0(r){return!r.isGroup}function eE(r){return r.shape!=null}function ol(r,e,t){if(!r||!e)return;function a(o){var s={};return o.traverse(function(l){a0(l)&&l.anid&&(s[l.anid]=l)}),s}function i(o){var s={x:o.x,y:o.y,rotation:o.rotation};return eE(o)&&(s.shape=B({},o.shape)),s}var n=a(r);e.traverse(function(o){if(a0(o)&&o.anid){var s=n[o.anid];if(s){var l=i(o);o.attr(i(s)),wt(o,l,t,at(o).dataIndex)}}})}function RT(r,e){return G(r,function(t){var a=t[0];a=of(a,e.x),a=sf(a,e.x+e.width);var i=t[1];return i=of(i,e.y),i=sf(i,e.y+e.height),[a,i]})}function rE(r,e){var t=of(r.x,e.x),a=sf(r.x+r.width,e.x+e.width),i=of(r.y,e.y),n=sf(r.y+r.height,e.y+e.height);if(a>=t&&n>=i)return{x:t,y:i,width:a-t,height:n-i}}function sl(r,e,t){var a=B({rectHover:!0},e),i=a.style={strokeNoScale:!0};if(t=t||{x:-1,y:-1,width:2,height:2},r)return r.indexOf("image://")===0?(i.image=r.slice(8),Q(i,t),new he(a)):ah(r.replace("path://",""),a,t,"center")}function rs(r,e,t,a,i){for(var n=0,o=i[i.length-1];n1)return!1;var g=cv(c,p,f,h)/v;return!(g<0||g>1)}function cv(r,e,t,a){return r*a-t*e}function aE(r){return r<=1e-6&&r>=-1e-6}function fo(r){var e=r.itemTooltipOption,t=r.componentModel,a=r.itemName,i=$(e)?{formatter:e}:e,n=t.mainType,o=t.componentIndex,s={componentType:n,name:a,$vars:["name"]};s[n+"Index"]=o;var l=r.formatterParamsExtra;l&&A(yt(l),function(f){Y(s,f)||(s[f]=l[f],s.$vars.push(f))});var u=at(r.el);u.componentMainType=n,u.componentIndex=o,u.tooltipConfig={name:a,option:Q({content:a,formatterParams:s},i)}}function i0(r,e){var t;r.isGroup&&(t=e(r)),t||r.traverse(e)}function Ja(r,e){if(r)if(z(r))for(var t=0;t=0&&s.push(l)}),s}}function ja(r,e){return st(st({},r,!0),e,!0)}var gE={time:{month:["January","February","March","April","May","June","July","August","September","October","November","December"],monthAbbr:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayOfWeek:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayOfWeekAbbr:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]},legend:{selector:{all:"All",inverse:"Inv"}},toolbox:{brush:{title:{rect:"Box Select",polygon:"Lasso Select",lineX:"Horizontally Select",lineY:"Vertically Select",keep:"Keep Selections",clear:"Clear Selections"}},dataView:{title:"Data View",lang:["Data View","Close","Refresh"]},dataZoom:{title:{zoom:"Zoom",back:"Zoom Reset"}},magicType:{title:{line:"Switch to Line Chart",bar:"Switch to Bar Chart",stack:"Stack",tiled:"Tile"}},restore:{title:"Restore"},saveAsImage:{title:"Save as Image",lang:["Right Click to Save Image"]}},series:{typeNames:{pie:"Pie chart",bar:"Bar chart",line:"Line chart",scatter:"Scatter plot",effectScatter:"Ripple scatter plot",radar:"Radar chart",tree:"Tree",treemap:"Treemap",boxplot:"Boxplot",candlestick:"Candlestick",k:"K line chart",heatmap:"Heat map",map:"Map",parallel:"Parallel coordinate map",lines:"Line graph",graph:"Relationship graph",sankey:"Sankey diagram",funnel:"Funnel chart",gauge:"Gauge",pictorialBar:"Pictorial bar",themeRiver:"Theme River Map",sunburst:"Sunburst"}},aria:{general:{withTitle:'This is a chart about "{title}"',withoutTitle:"This is a chart"},series:{single:{prefix:"",withName:" with type {seriesType} named {seriesName}.",withoutName:" with type {seriesType}."},multiple:{prefix:". It consists of {seriesCount} series count.",withName:" The {seriesId} series is a {seriesType} representing {seriesName}.",withoutName:" The {seriesId} series is a {seriesType}.",separator:{middle:"",end:""}}},data:{allData:"The data is as follows: ",partialData:"The first {displayCnt} items are: ",withName:"the data for {name} is {value}",withoutName:"{value}",separator:{middle:", ",end:". "}}}},yE={time:{month:["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"],monthAbbr:["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],dayOfWeek:["\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"],dayOfWeekAbbr:["\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"]},legend:{selector:{all:"\u5168\u9009",inverse:"\u53CD\u9009"}},toolbox:{brush:{title:{rect:"\u77E9\u5F62\u9009\u62E9",polygon:"\u5708\u9009",lineX:"\u6A2A\u5411\u9009\u62E9",lineY:"\u7EB5\u5411\u9009\u62E9",keep:"\u4FDD\u6301\u9009\u62E9",clear:"\u6E05\u9664\u9009\u62E9"}},dataView:{title:"\u6570\u636E\u89C6\u56FE",lang:["\u6570\u636E\u89C6\u56FE","\u5173\u95ED","\u5237\u65B0"]},dataZoom:{title:{zoom:"\u533A\u57DF\u7F29\u653E",back:"\u533A\u57DF\u7F29\u653E\u8FD8\u539F"}},magicType:{title:{line:"\u5207\u6362\u4E3A\u6298\u7EBF\u56FE",bar:"\u5207\u6362\u4E3A\u67F1\u72B6\u56FE",stack:"\u5207\u6362\u4E3A\u5806\u53E0",tiled:"\u5207\u6362\u4E3A\u5E73\u94FA"}},restore:{title:"\u8FD8\u539F"},saveAsImage:{title:"\u4FDD\u5B58\u4E3A\u56FE\u7247",lang:["\u53F3\u952E\u53E6\u5B58\u4E3A\u56FE\u7247"]}},series:{typeNames:{pie:"\u997C\u56FE",bar:"\u67F1\u72B6\u56FE",line:"\u6298\u7EBF\u56FE",scatter:"\u6563\u70B9\u56FE",effectScatter:"\u6D9F\u6F2A\u6563\u70B9\u56FE",radar:"\u96F7\u8FBE\u56FE",tree:"\u6811\u56FE",treemap:"\u77E9\u5F62\u6811\u56FE",boxplot:"\u7BB1\u578B\u56FE",candlestick:"K\u7EBF\u56FE",k:"K\u7EBF\u56FE",heatmap:"\u70ED\u529B\u56FE",map:"\u5730\u56FE",parallel:"\u5E73\u884C\u5750\u6807\u56FE",lines:"\u7EBF\u56FE",graph:"\u5173\u7CFB\u56FE",sankey:"\u6851\u57FA\u56FE",funnel:"\u6F0F\u6597\u56FE",gauge:"\u4EEA\u8868\u76D8\u56FE",pictorialBar:"\u8C61\u5F62\u67F1\u56FE",themeRiver:"\u4E3B\u9898\u6CB3\u6D41\u56FE",sunburst:"\u65ED\u65E5\u56FE"}},aria:{general:{withTitle:"\u8FD9\u662F\u4E00\u4E2A\u5173\u4E8E\u201C{title}\u201D\u7684\u56FE\u8868\u3002",withoutTitle:"\u8FD9\u662F\u4E00\u4E2A\u56FE\u8868\uFF0C"},series:{single:{prefix:"",withName:"\u56FE\u8868\u7C7B\u578B\u662F{seriesType}\uFF0C\u8868\u793A{seriesName}\u3002",withoutName:"\u56FE\u8868\u7C7B\u578B\u662F{seriesType}\u3002"},multiple:{prefix:"\u5B83\u7531{seriesCount}\u4E2A\u56FE\u8868\u7CFB\u5217\u7EC4\u6210\u3002",withName:"\u7B2C{seriesId}\u4E2A\u7CFB\u5217\u662F\u4E00\u4E2A\u8868\u793A{seriesName}\u7684{seriesType}\uFF0C",withoutName:"\u7B2C{seriesId}\u4E2A\u7CFB\u5217\u662F\u4E00\u4E2A{seriesType}\uFF0C",separator:{middle:"\uFF1B",end:"\u3002"}}},data:{allData:"\u5176\u6570\u636E\u662F\u2014\u2014",partialData:"\u5176\u4E2D\uFF0C\u524D{displayCnt}\u9879\u662F\u2014\u2014",withName:"{name}\u7684\u6570\u636E\u662F{value}",withoutName:"{value}",separator:{middle:"\uFF0C",end:""}}}},uf="ZH",cg="EN",Os=cg,Vu={},pg={},GT=Ct.domSupported?function(){var r=(document.documentElement.lang||navigator.language||navigator.browserLanguage).toUpperCase();return r.indexOf(uf)>-1?uf:Os}():Os;function FT(r,e){r=r.toUpperCase(),pg[r]=new Ot(e),Vu[r]=e}function mE(r){if($(r)){var e=Vu[r.toUpperCase()]||{};return r===uf||r===cg?j(e):st(j(e),j(Vu[Os]),!1)}else return st(j(r),j(Vu[Os]),!1)}function Ep(r){return pg[r]}function _E(){return pg[Os]}FT(cg,gE);FT(uf,yE);var dg=1e3,gg=dg*60,ms=gg*60,er=ms*24,u0=er*365,as={year:"{yyyy}",month:"{MMM}",day:"{d}",hour:"{HH}:{mm}",minute:"{HH}:{mm}",second:"{HH}:{mm}:{ss}",millisecond:"{HH}:{mm}:{ss} {SSS}",none:"{yyyy}-{MM}-{dd} {HH}:{mm}:{ss} {SSS}"},Fl="{yyyy}-{MM}-{dd}",f0={year:"{yyyy}",month:"{yyyy}-{MM}",day:Fl,hour:Fl+" "+as.hour,minute:Fl+" "+as.minute,second:Fl+" "+as.second,millisecond:as.none},gv=["year","month","day","hour","minute","second","millisecond"],HT=["year","half-year","quarter","month","week","half-week","day","half-day","quarter-day","hour","minute","second","millisecond"];function gi(r,e){return r+="","0000".substr(0,e-r.length)+r}function Yn(r){switch(r){case"half-year":case"quarter":return"month";case"week":case"half-week":return"day";case"half-day":case"quarter-day":return"hour";default:return r}}function SE(r){return r===Yn(r)}function xE(r){switch(r){case"year":case"month":return"day";case"millisecond":return"millisecond";default:return"second"}}function oh(r,e,t,a){var i=Gr(r),n=i[yg(t)](),o=i[Zn(t)]()+1,s=Math.floor((o-1)/3)+1,l=i[sh(t)](),u=i["get"+(t?"UTC":"")+"Day"](),f=i[Ns(t)](),h=(f-1)%12+1,v=i[lh(t)](),c=i[uh(t)](),p=i[fh(t)](),d=a instanceof Ot?a:Ep(a||GT)||_E(),g=d.getModel("time"),y=g.get("month"),m=g.get("monthAbbr"),_=g.get("dayOfWeek"),S=g.get("dayOfWeekAbbr");return(e||"").replace(/{yyyy}/g,n+"").replace(/{yy}/g,n%100+"").replace(/{Q}/g,s+"").replace(/{MMMM}/g,y[o-1]).replace(/{MMM}/g,m[o-1]).replace(/{MM}/g,gi(o,2)).replace(/{M}/g,o+"").replace(/{dd}/g,gi(l,2)).replace(/{d}/g,l+"").replace(/{eeee}/g,_[u]).replace(/{ee}/g,S[u]).replace(/{e}/g,u+"").replace(/{HH}/g,gi(f,2)).replace(/{H}/g,f+"").replace(/{hh}/g,gi(h+"",2)).replace(/{h}/g,h+"").replace(/{mm}/g,gi(v,2)).replace(/{m}/g,v+"").replace(/{ss}/g,gi(c,2)).replace(/{s}/g,c+"").replace(/{SSS}/g,gi(p,3)).replace(/{S}/g,p+"")}function wE(r,e,t,a,i){var n=null;if($(t))n=t;else if(K(t))n=t(r.value,e,{level:r.level});else{var o=B({},as);if(r.level>0)for(var s=0;s=0;--s)if(l[u]){n=l[u];break}n=n||o.none}if(z(n)){var h=r.level==null?0:r.level>=0?r.level:n.length+r.level;h=Math.min(h,n.length-1),n=n[h]}}return oh(new Date(r.value),n,i,a)}function WT(r,e){var t=Gr(r),a=t[Zn(e)]()+1,i=t[sh(e)](),n=t[Ns(e)](),o=t[lh(e)](),s=t[uh(e)](),l=t[fh(e)](),u=l===0,f=u&&s===0,h=f&&o===0,v=h&&n===0,c=v&&i===1,p=c&&a===1;return p?"year":c?"month":v?"day":h?"hour":f?"minute":u?"second":"millisecond"}function h0(r,e,t){var a=xt(r)?Gr(r):r;switch(e=e||WT(r,t),e){case"year":return a[yg(t)]();case"half-year":return a[Zn(t)]()>=6?1:0;case"quarter":return Math.floor((a[Zn(t)]()+1)/4);case"month":return a[Zn(t)]();case"day":return a[sh(t)]();case"half-day":return a[Ns(t)]()/24;case"hour":return a[Ns(t)]();case"minute":return a[lh(t)]();case"second":return a[uh(t)]();case"millisecond":return a[fh(t)]()}}function yg(r){return r?"getUTCFullYear":"getFullYear"}function Zn(r){return r?"getUTCMonth":"getMonth"}function sh(r){return r?"getUTCDate":"getDate"}function Ns(r){return r?"getUTCHours":"getHours"}function lh(r){return r?"getUTCMinutes":"getMinutes"}function uh(r){return r?"getUTCSeconds":"getSeconds"}function fh(r){return r?"getUTCMilliseconds":"getMilliseconds"}function bE(r){return r?"setUTCFullYear":"setFullYear"}function $T(r){return r?"setUTCMonth":"setMonth"}function UT(r){return r?"setUTCDate":"setDate"}function YT(r){return r?"setUTCHours":"setHours"}function ZT(r){return r?"setUTCMinutes":"setMinutes"}function XT(r){return r?"setUTCSeconds":"setSeconds"}function qT(r){return r?"setUTCMilliseconds":"setMilliseconds"}function KT(r){if(!Ib(r))return $(r)?r:"-";var e=(r+"").split(".");return e[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,"$1,")+(e.length>1?"."+e[1]:"")}function QT(r,e){return r=(r||"").toLowerCase().replace(/-(.)/g,function(t,a){return a.toUpperCase()}),e&&r&&(r=r.charAt(0).toUpperCase()+r.slice(1)),r}var co=$d,TE=/([&<>"'])/g,CE={"&":"&","<":"<",">":">",'"':""","'":"'"};function Ve(r){return r==null?"":(r+"").replace(TE,function(e,t){return CE[t]})}function kp(r,e,t){var a="{yyyy}-{MM}-{dd} {HH}:{mm}:{ss}";function i(f){return f&&pr(f)?f:"-"}function n(f){return!!(f!=null&&!isNaN(f)&&isFinite(f))}var o=e==="time",s=r instanceof Date;if(o||s){var l=o?Gr(r):r;if(isNaN(+l)){if(s)return"-"}else return oh(l,a,t)}if(e==="ordinal")return Jc(r)?i(r):xt(r)&&n(r)?r+"":"-";var u=oa(r);return n(u)?KT(u):Jc(r)?i(r):typeof r=="boolean"?r+"":"-"}var v0=["a","b","c","d","e","f","g"],yv=function(r,e){return"{"+r+(e==null?"":e)+"}"};function JT(r,e,t){z(e)||(e=[e]);var a=e.length;if(!a)return"";for(var i=e[0].$vars||[],n=0;n':'';var o=t.markerId||"markerX";return{renderMode:n,content:"{"+o+"|} ",style:i==="subItem"?{width:4,height:4,borderRadius:2,backgroundColor:a}:{width:10,height:10,borderRadius:5,backgroundColor:a}}}function mZ(r){return r&&r.charAt(0).toUpperCase()+r.substr(1)}function en(r,e){return e=e||"transparent",$(r)?r:J(r)&&r.colorStops&&(r.colorStops[0]||{}).color||e}function ff(r,e){if(e==="_blank"||e==="blank"){var t=window.open();t.opener=null,t.location.href=r}else window.open(r,e)}var Bu=A,jT=["left","right","top","bottom","width","height"],zi=[["width","left","right"],["height","top","bottom"]];function mg(r,e,t,a,i){var n=0,o=0;a==null&&(a=1/0),i==null&&(i=1/0);var s=0;e.eachChild(function(l,u){var f=l.getBoundingRect(),h=e.childAt(u+1),v=h&&h.getBoundingRect(),c,p;if(r==="horizontal"){var d=f.width+(v?-v.x+f.x:0);c=n+d,c>a||l.newline?(n=0,c=d,o+=s+t,s=f.height):s=Math.max(s,f.height)}else{var g=f.height+(v?-v.y+f.y:0);p=o+g,p>i||l.newline?(n+=s+t,o=0,p=g,s=f.width):s=Math.max(s,f.width)}l.newline||(l.x=n,l.y=o,l.markRedraw(),r==="horizontal"?n=c+t:o=p+t)})}var Zi=mg;it(mg,"vertical");it(mg,"horizontal");function DE(r,e,t){var a=e.width,i=e.height,n=H(r.left,a),o=H(r.top,i),s=H(r.right,a),l=H(r.bottom,i);return(isNaN(n)||isNaN(parseFloat(r.left)))&&(n=0),(isNaN(s)||isNaN(parseFloat(r.right)))&&(s=a),(isNaN(o)||isNaN(parseFloat(r.top)))&&(o=0),(isNaN(l)||isNaN(parseFloat(r.bottom)))&&(l=i),t=co(t||0),{width:Math.max(s-n-t[1]-t[3],0),height:Math.max(l-o-t[0]-t[2],0)}}function jt(r,e,t){t=co(t||0);var a=e.width,i=e.height,n=H(r.left,a),o=H(r.top,i),s=H(r.right,a),l=H(r.bottom,i),u=H(r.width,a),f=H(r.height,i),h=t[2]+t[0],v=t[1]+t[3],c=r.aspect;switch(isNaN(u)&&(u=a-s-v-n),isNaN(f)&&(f=i-l-h-o),c!=null&&(isNaN(u)&&isNaN(f)&&(c>a/i?u=a*.8:f=i*.8),isNaN(u)&&(u=c*f),isNaN(f)&&(f=u/c)),isNaN(n)&&(n=a-s-u-v),isNaN(o)&&(o=i-l-f-h),r.left||r.right){case"center":n=a/2-u/2-t[3];break;case"right":n=a-u-v;break}switch(r.top||r.bottom){case"middle":case"center":o=i/2-f/2-t[0];break;case"bottom":o=i-f-h;break}n=n||0,o=o||0,isNaN(u)&&(u=a-v-n-(s||0)),isNaN(f)&&(f=i-h-o-(l||0));var p=new ut(n+t[3],o+t[0],u,f);return p.margin=t,p}function hh(r,e,t,a,i,n){var o=!i||!i.hv||i.hv[0],s=!i||!i.hv||i.hv[1],l=i&&i.boundingMode||"all";if(n=n||r,n.x=r.x,n.y=r.y,!o&&!s)return!1;var u;if(l==="raw")u=r.type==="group"?new ut(0,0,+e.width||0,+e.height||0):r.getBoundingRect();else if(u=r.getBoundingRect(),r.needLocalTransform()){var f=r.getLocalTransform();u=u.clone(),u.applyTransform(f)}var h=jt(Q({width:u.width,height:u.height},e),t,a),v=o?h.x-u.x:0,c=s?h.y-u.y:0;return l==="raw"?(n.x=v,n.y=c):(n.x+=v,n.y+=c),n===r&&r.markRedraw(),!0}function LE(r,e){return r[zi[e][0]]!=null||r[zi[e][1]]!=null&&r[zi[e][2]]!=null}function Vs(r){var e=r.layoutMode||r.constructor.layoutMode;return J(e)?e:e?{type:e}:null}function Ya(r,e,t){var a=t&&t.ignoreSize;!z(a)&&(a=[a,a]);var i=o(zi[0],0),n=o(zi[1],1);u(zi[0],r,i),u(zi[1],r,n);function o(f,h){var v={},c=0,p={},d=0,g=2;if(Bu(f,function(_){p[_]=r[_]}),Bu(f,function(_){s(e,_)&&(v[_]=p[_]=e[_]),l(v,_)&&c++,l(p,_)&&d++}),a[h])return l(e,f[1])?p[f[2]]=null:l(e,f[2])&&(p[f[1]]=null),p;if(d===g||!c)return p;if(c>=g)return v;for(var y=0;y=0;l--)s=st(s,i[l],!0);a.defaultOption=s}return a.defaultOption},e.prototype.getReferringComponents=function(t,a){var i=t+"Index",n=t+"Id";return al(this.ecModel,t,{index:this.get(i,!0),id:this.get(n,!0)},a)},e.prototype.getBoxLayoutParams=function(){var t=this;return{left:t.get("left"),top:t.get("top"),right:t.get("right"),bottom:t.get("bottom"),width:t.get("width"),height:t.get("height")}},e.prototype.getZLevelKey=function(){return""},e.prototype.setZLevel=function(t){this.option.zlevel=t},e.protoInitialize=function(){var t=e.prototype;t.type="component",t.id="",t.name="",t.mainType="",t.subType="",t.componentIndex=0}(),e}(Ot);Gb(go,Ot);qf(go);pE(go);dE(go,PE);function PE(r){var e=[];return A(go.getClassesByMainType(r),function(t){e=e.concat(t.dependencies||t.prototype.dependencies||[])}),e=G(e,function(t){return Er(t).main}),r!=="dataset"&&ht(e,"dataset")<=0&&e.unshift("dataset"),e}var St=go,eC="";typeof navigator!="undefined"&&(eC=navigator.platform||"");var _n="rgba(0, 0, 0, 0.2)",RE={darkMode:"auto",colorBy:"series",color:["#5470c6","#91cc75","#fac858","#ee6666","#73c0de","#3ba272","#fc8452","#9a60b4","#ea7ccc"],gradientColor:["#f6efa6","#d88273","#bf444c"],aria:{decal:{decals:[{color:_n,dashArrayX:[1,0],dashArrayY:[2,5],symbolSize:1,rotation:Math.PI/6},{color:_n,symbol:"circle",dashArrayX:[[8,8],[0,8,8,0]],dashArrayY:[6,0],symbolSize:.8},{color:_n,dashArrayX:[1,0],dashArrayY:[4,3],rotation:-Math.PI/4},{color:_n,dashArrayX:[[6,6],[0,6,6,0]],dashArrayY:[6,0]},{color:_n,dashArrayX:[[1,0],[1,6]],dashArrayY:[1,0,6,0],rotation:Math.PI/4},{color:_n,symbol:"triangle",dashArrayX:[[9,9],[0,9,9,0]],dashArrayY:[7,2],symbolSize:.75}]}},textStyle:{fontFamily:eC.match(/^Win/)?"Microsoft YaHei":"sans-serif",fontSize:12,fontStyle:"normal",fontWeight:"normal"},blendMode:null,stateAnimation:{duration:300,easing:"cubicOut"},animation:"auto",animationDuration:1e3,animationDurationUpdate:500,animationEasing:"cubicInOut",animationEasingUpdate:"cubicInOut",animationThreshold:2e3,progressiveThreshold:3e3,progressive:400,hoverLayerThreshold:3e3,useUTC:!1},rC=q(["tooltip","label","itemName","itemId","itemGroupId","seriesName"]),sr="original",ye="arrayRows",lr="objectRows",Wr="keyedColumns",za="typedArray",aC="unknown",Nr="column",yo="row",se={Must:1,Might:2,Not:3},iC=bt();function EE(r){iC(r).datasetMap=q()}function nC(r,e,t){var a={},i=Sg(e);if(!i||!r)return a;var n=[],o=[],s=e.ecModel,l=iC(s).datasetMap,u=i.uid+"_"+t.seriesLayoutBy,f,h;r=r.slice(),A(r,function(d,g){var y=J(d)?d:r[g]={name:d};y.type==="ordinal"&&f==null&&(f=g,h=p(y)),a[y.name]=[]});var v=l.get(u)||l.set(u,{categoryWayDim:h,valueWayDim:0});A(r,function(d,g){var y=d.name,m=p(d);if(f==null){var _=v.valueWayDim;c(a[y],_,m),c(o,_,m),v.valueWayDim+=m}else if(f===g)c(a[y],0,m),c(n,0,m);else{var _=v.categoryWayDim;c(a[y],_,m),c(o,_,m),v.categoryWayDim+=m}});function c(d,g,y){for(var m=0;me)return r[a];return r[t-1]}function lC(r,e,t,a,i,n,o){n=n||r;var s=e(n),l=s.paletteIdx||0,u=s.paletteNameMap=s.paletteNameMap||{};if(u.hasOwnProperty(i))return u[i];var f=o==null||!a?t:BE(a,o);if(f=f||t,!(!f||!f.length)){var h=f[l];return i&&(u[i]=h),s.paletteIdx=(l+1)%f.length,h}}function zE(r,e){e(r).paletteIdx=0,e(r).paletteNameMap={}}var Hl,Po,p0,d0="\0_ec_inner",GE=1,uC=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.init=function(t,a,i,n,o,s){n=n||{},this.option=null,this._theme=new Ot(n),this._locale=new Ot(o),this._optionManager=s},e.prototype.setOption=function(t,a,i){var n=m0(a);this._optionManager.setOption(t,i,n),this._resetOption(null,n)},e.prototype.resetOption=function(t,a){return this._resetOption(t,m0(a))},e.prototype._resetOption=function(t,a){var i=!1,n=this._optionManager;if(!t||t==="recreate"){var o=n.mountOption(t==="recreate");!this.option||t==="recreate"?p0(this,o):(this.restoreData(),this._mergeOption(o,a)),i=!0}if((t==="timeline"||t==="media")&&this.restoreData(),!t||t==="recreate"||t==="timeline"){var s=n.getTimelineOption(this);s&&(i=!0,this._mergeOption(s,a))}if(!t||t==="recreate"||t==="media"){var l=n.getMediaOption(this);l.length&&A(l,function(u){i=!0,this._mergeOption(u,a)},this)}return i},e.prototype.mergeOption=function(t){this._mergeOption(t,null)},e.prototype._mergeOption=function(t,a){var i=this.option,n=this._componentsMap,o=this._componentsCount,s=[],l=q(),u=a&&a.replaceMergeMainTypeMap;EE(this),A(t,function(h,v){h!=null&&(St.hasClass(v)?v&&(s.push(v),l.set(v,!0)):i[v]=i[v]==null?j(h):st(i[v],h,!0))}),u&&u.each(function(h,v){St.hasClass(v)&&!l.get(v)&&(s.push(v),l.set(v,!0))}),St.topologicalTravel(s,St.getAllClassMainTypes(),f,this);function f(h){var v=NE(this,h,Pt(t[h])),c=n.get(h),p=c?u&&u.get(h)?"replaceMerge":"normalMerge":"replaceAll",d=Ob(c,v,p);J2(d,h,St),i[h]=null,n.set(h,null),o.set(h,0);var g=[],y=[],m=0,_;A(d,function(S,w){var x=S.existing,b=S.newOption;if(!b)x&&(x.mergeOption({},this),x.optionUpdated({},!1));else{var T=h==="series",C=St.getClass(h,S.keyInfo.subType,!T);if(!C)return;if(h==="tooltip"){if(_)return;_=!0}if(x&&x.constructor===C)x.name=S.keyInfo.name,x.mergeOption(b,this),x.optionUpdated(b,!1);else{var M=B({componentIndex:w},S.keyInfo);x=new C(b,this,this,M),B(x,M),S.brandNew&&(x.__requireNewView=!0),x.init(b,this,this),x.optionUpdated(null,!0)}}x?(g.push(x.option),y.push(x),m++):(g.push(void 0),y.push(void 0))},this),i[h]=g,n.set(h,y),o.set(h,m),h==="series"&&Hl(this)}this._seriesIndices||Hl(this)},e.prototype.getOption=function(){var t=j(this.option);return A(t,function(a,i){if(St.hasClass(i)){for(var n=Pt(a),o=n.length,s=!1,l=o-1;l>=0;l--)n[l]&&!Is(n[l])?s=!0:(n[l]=null,!s&&o--);n.length=o,t[i]=n}}),delete t[d0],t},e.prototype.getTheme=function(){return this._theme},e.prototype.getLocaleModel=function(){return this._locale},e.prototype.setUpdatePayload=function(t){this._payload=t},e.prototype.getUpdatePayload=function(){return this._payload},e.prototype.getComponent=function(t,a){var i=this._componentsMap.get(t);if(i){var n=i[a||0];if(n)return n;if(a==null){for(var o=0;o=e:t==="max"?r<=e:r===e}function QE(r,e){return r.join(",")===e.join(",")}var JE=ZE,ur=A,Bs=J,_0=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"];function _v(r){var e=r&&r.itemStyle;if(!!e)for(var t=0,a=_0.length;t=0;g--){var y=r[g];if(s||(p=y.data.rawIndexOf(y.stackedByDimension,c)),p>=0){var m=y.data.getByRawIndex(y.stackResultDimension,p);if(l==="all"||l==="positive"&&m>0||l==="negative"&&m<0||l==="samesign"&&v>=0&&m>0||l==="samesign"&&v<=0&&m<0){v=F2(v,m),d=m;break}}}return a[0]=v,a[1]=d,a})})}var vh=function(){function r(e){this.data=e.data||(e.sourceFormat===Wr?{}:[]),this.sourceFormat=e.sourceFormat||aC,this.seriesLayoutBy=e.seriesLayoutBy||Nr,this.startIndex=e.startIndex||0,this.dimensionsDetectedCount=e.dimensionsDetectedCount,this.metaRawOption=e.metaRawOption;var t=this.dimensionsDefine=e.dimensionsDefine;if(t)for(var a=0;ad&&(d=_)}c[0]=p,c[1]=d}},i=function(){return this._data?this._data.length/this._dimSize:0};A0=(e={},e[ye+"_"+Nr]={pure:!0,appendData:n},e[ye+"_"+yo]={pure:!0,appendData:function(){throw new Error('Do not support appendData when set seriesLayoutBy: "row".')}},e[lr]={pure:!0,appendData:n},e[Wr]={pure:!0,appendData:function(o){var s=this._data;A(o,function(l,u){for(var f=s[u]||(s[u]=[]),h=0;h<(l||[]).length;h++)f.push(l[h])})}},e[sr]={appendData:n},e[za]={persistent:!1,pure:!0,appendData:function(o){this._data=o},clean:function(){this._offset+=this.count(),this._data=null}},e);function n(o){for(var s=0;s=0&&(d=o.interpolatedValue[g])}return d!=null?d+"":""})}},r.prototype.getRawValue=function(e,t){return Qn(this.getData(t),e)},r.prototype.formatTooltip=function(e,t,a){},r}();function I0(r){var e,t;return J(r)?r.type&&(t=r):e=r,{text:e,frag:t}}function _s(r){return new dk(r)}var dk=function(){function r(e){e=e||{},this._reset=e.reset,this._plan=e.plan,this._count=e.count,this._onDirty=e.onDirty,this._dirty=!0}return r.prototype.perform=function(e){var t=this._upstream,a=e&&e.skip;if(this._dirty&&t){var i=this.context;i.data=i.outputData=t.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this);var n;this._plan&&!a&&(n=this._plan(this.context));var o=f(this._modBy),s=this._modDataCount||0,l=f(e&&e.modBy),u=e&&e.modDataCount||0;(o!==l||s!==u)&&(n="reset");function f(m){return!(m>=1)&&(m=1),m}var h;(this._dirty||n==="reset")&&(this._dirty=!1,h=this._doReset(a)),this._modBy=l,this._modDataCount=u;var v=e&&e.step;if(t?this._dueEnd=t._outputDueEnd:this._dueEnd=this._count?this._count(this.context):1/0,this._progress){var c=this._dueIndex,p=Math.min(v!=null?this._dueIndex+v:1/0,this._dueEnd);if(!a&&(h||c1&&a>0?s:o}};return n;function o(){return e=r?null:le},gte:function(r,e){return r>=e}},yk=function(){function r(e,t){if(!xt(t)){var a="";Mt(a)}this._opFn=xC[e],this._rvalFloat=oa(t)}return r.prototype.evaluate=function(e){return xt(e)?this._opFn(e,this._rvalFloat):this._opFn(oa(e),this._rvalFloat)},r}(),wC=function(){function r(e,t){var a=e==="desc";this._resultLT=a?1:-1,t==null&&(t=a?"min":"max"),this._incomparable=t==="min"?-1/0:1/0}return r.prototype.evaluate=function(e,t){var a=xt(e)?e:oa(e),i=xt(t)?t:oa(t),n=isNaN(a),o=isNaN(i);if(n&&(a=this._incomparable),o&&(i=this._incomparable),n&&o){var s=$(e),l=$(t);s&&(a=l?e:0),l&&(i=s?t:0)}return ai?-this._resultLT:0},r}(),mk=function(){function r(e,t){this._rval=t,this._isEQ=e,this._rvalTypeof=typeof t,this._rvalFloat=oa(t)}return r.prototype.evaluate=function(e){var t=e===this._rval;if(!t){var a=typeof e;a!==this._rvalTypeof&&(a==="number"||this._rvalTypeof==="number")&&(t=oa(e)===this._rvalFloat)}return this._isEQ?t:!t},r}();function _k(r,e){return r==="eq"||r==="ne"?new mk(r==="eq",e):Y(xC,r)?new yk(r,e):null}var Sk=function(){function r(){}return r.prototype.getRawData=function(){throw new Error("not supported")},r.prototype.getRawDataItem=function(e){throw new Error("not supported")},r.prototype.cloneRawData=function(){},r.prototype.getDimensionInfo=function(e){},r.prototype.cloneAllDimensionInfo=function(){},r.prototype.count=function(){},r.prototype.retrieveValue=function(e,t){},r.prototype.retrieveValueFromItem=function(e,t){},r.prototype.convertValue=function(e,t){return Ga(e,t)},r}();function xk(r,e){var t=new Sk,a=r.data,i=t.sourceFormat=r.sourceFormat,n=r.startIndex,o="";r.seriesLayoutBy!==Nr&&Mt(o);var s=[],l={},u=r.dimensionsDefine;if(u)A(u,function(d,g){var y=d.name,m={index:g,name:y,displayName:d.displayName};if(s.push(m),y!=null){var _="";Y(l,y)&&Mt(_),l[y]=m}});else for(var f=0;f65535?Lk:Ik}function Sn(){return[1/0,-1/0]}function Pk(r){var e=r.constructor;return e===Array?r.slice():new e(r)}function E0(r,e,t,a,i){var n=CC[t||"float"];if(i){var o=r[e],s=o&&o.length;if(s!==a){for(var l=new n(a),u=0;ug[1]&&(g[1]=d)}return this._rawCount=this._count=l,{start:s,end:l}},r.prototype._initDataFromProvider=function(e,t,a){for(var i=this._provider,n=this._chunks,o=this._dimensions,s=o.length,l=this._rawExtent,u=G(o,function(m){return m.property}),f=0;fy[1]&&(y[1]=g)}}!i.persistent&&i.clean&&i.clean(),this._rawCount=this._count=t,this._extent=[]},r.prototype.count=function(){return this._count},r.prototype.get=function(e,t){if(!(t>=0&&t=0&&t=this._rawCount||e<0)return-1;if(!this._indices)return e;var t=this._indices,a=t[e];if(a!=null&&ae)n=o-1;else return o}return-1},r.prototype.indicesOfNearest=function(e,t,a){var i=this._chunks,n=i[e],o=[];if(!n)return o;a==null&&(a=1/0);for(var s=1/0,l=-1,u=0,f=0,h=this.count();f=0&&l<0)&&(s=p,l=c,u=0),c===l&&(o[u++]=f))}return o.length=u,o},r.prototype.getIndices=function(){var e,t=this._indices;if(t){var a=t.constructor,i=this._count;if(a===Array){e=new a(i);for(var n=0;n=h&&m<=v||isNaN(m))&&(l[u++]=d),d++}p=!0}else if(n===2){for(var g=c[i[0]],_=c[i[1]],S=e[i[1]][0],w=e[i[1]][1],y=0;y=h&&m<=v||isNaN(m))&&(x>=S&&x<=w||isNaN(x))&&(l[u++]=d),d++}p=!0}}if(!p)if(n===1)for(var y=0;y=h&&m<=v||isNaN(m))&&(l[u++]=b)}else for(var y=0;ye[M][1])&&(T=!1)}T&&(l[u++]=t.getRawIndex(y))}return uy[1]&&(y[1]=g)}}}},r.prototype.lttbDownSample=function(e,t){var a=this.clone([e],!0),i=a._chunks,n=i[e],o=this.count(),s=0,l=Math.floor(1/t),u=this.getRawIndex(0),f,h,v,c=new(Eo(this._rawCount))(Math.min((Math.ceil(o/l)+2)*2,o));c[s++]=u;for(var p=1;pf&&(f=h,v=S)}D>0&&Df-p&&(l=f-p,s.length=l);for(var d=0;dh[1]&&(h[1]=y),v[c++]=m}return n._count=c,n._indices=v,n._updateGetRawIdx(),n},r.prototype.each=function(e,t){if(!!this._count)for(var a=e.length,i=this._chunks,n=0,o=this.count();nl&&(l=h)}return o=[s,l],this._extent[e]=o,o},r.prototype.getRawDataItem=function(e){var t=this.getRawIndex(e);if(this._provider.persistent)return this._provider.getItem(t);for(var a=[],i=this._chunks,n=0;n=0?this._indices[e]:-1},r.prototype._updateGetRawIdx=function(){this.getRawIndex=this._indices?this._getRawIdx:this._getRawIdxIdentity},r.internalField=function(){function e(t,a,i,n){return Ga(t[n],this._dimensions[n])}wv={arrayRows:e,objectRows:function(t,a,i,n){return Ga(t[a],this._dimensions[n])},keyedColumns:e,original:function(t,a,i,n){var o=t&&(t.value==null?t:t.value);return Ga(o instanceof Array?o[n]:o,this._dimensions[n])},typedArray:function(t,a,i,n){return t[n]}}}(),r}(),AC=function(){function r(e){this._sourceList=[],this._storeList=[],this._upstreamSignList=[],this._versionSignBase=0,this._dirty=!0,this._sourceHost=e}return r.prototype.dirty=function(){this._setLocalSource([],[]),this._storeList=[],this._dirty=!0},r.prototype._setLocalSource=function(e,t){this._sourceList=e,this._upstreamSignList=t,this._versionSignBase++,this._versionSignBase>9e10&&(this._versionSignBase=0)},r.prototype._getVersionSign=function(){return this._sourceHost.uid+"_"+this._versionSignBase},r.prototype.prepareSource=function(){this._isDirty()&&(this._createSource(),this._dirty=!1)},r.prototype._createSource=function(){this._setLocalSource([],[]);var e=this._sourceHost,t=this._getUpstreamSourceManagers(),a=!!t.length,i,n;if(Wl(e)){var o=e,s=void 0,l=void 0,u=void 0;if(a){var f=t[0];f.prepareSource(),u=f.getSource(),s=u.data,l=u.sourceFormat,n=[f._getVersionSign()]}else s=o.get("data",!0),l=Fe(s)?za:sr,n=[];var h=this._getSourceMetaRawOption()||{},v=u&&u.metaRawOption||{},c=vt(h.seriesLayoutBy,v.seriesLayoutBy)||null,p=vt(h.sourceHeader,v.sourceHeader),d=vt(h.dimensions,v.dimensions),g=c!==v.seriesLayoutBy||!!p!=!!v.sourceHeader||d;i=g?[Vp(s,{seriesLayoutBy:c,sourceHeader:p,dimensions:d},l)]:[]}else{var y=e;if(a){var m=this._applyTransform(t);i=m.sourceList,n=m.upstreamSignList}else{var _=y.get("source",!0);i=[Vp(_,this._getSourceMetaRawOption(),null)],n=[]}}this._setLocalSource(i,n)},r.prototype._applyTransform=function(e){var t=this._sourceHost,a=t.get("transform",!0),i=t.get("fromTransformResult",!0);if(i!=null){var n="";e.length!==1&&O0(n)}var o,s=[],l=[];return A(e,function(u){u.prepareSource();var f=u.getSource(i||0),h="";i!=null&&!f&&O0(h),s.push(f),l.push(u._getVersionSign())}),a?o=Mk(a,s,{datasetIndex:t.componentIndex}):i!=null&&(o=[lk(s[0])]),{sourceList:o,upstreamSignList:l}},r.prototype._isDirty=function(){if(this._dirty)return!0;for(var e=this._getUpstreamSourceManagers(),t=0;t1||t>0&&!r.noHeader;return A(r.blocks,function(i){var n=IC(i);n>=e&&(e=n+ +(a&&(!n||zp(i)&&!i.noHeader)))}),e}return 0}function kk(r,e,t,a){var i=e.noHeader,n=Nk(IC(e)),o=[],s=e.blocks||[];Te(!s||z(s)),s=s||[];var l=r.orderMode;if(e.sortBlocks&&l){s=s.slice();var u={valueAsc:"asc",valueDesc:"desc"};if(Y(u,l)){var f=new wC(u[l],null);s.sort(function(p,d){return f.evaluate(p.sortParam,d.sortParam)})}else l==="seriesDesc"&&s.reverse()}A(s,function(p,d){var g=e.valueFormatter,y=LC(p)(g?B(B({},r),{valueFormatter:g}):r,p,d>0?n.html:0,a);y!=null&&o.push(y)});var h=r.renderMode==="richText"?o.join(n.richText):Gp(o.join(""),i?t:n.html);if(i)return h;var v=kp(e.header,"ordinal",r.useUTC),c=DC(a,r.renderMode).nameStyle;return r.renderMode==="richText"?PC(r,v,c)+n.richText+h:Gp('
'+Ve(v)+"
"+h,t)}function Ok(r,e,t,a){var i=r.renderMode,n=e.noName,o=e.noValue,s=!e.markerType,l=e.name,u=r.useUTC,f=e.valueFormatter||r.valueFormatter||function(S){return S=z(S)?S:[S],G(S,function(w,x){return kp(w,z(c)?c[x]:c,u)})};if(!(n&&o)){var h=s?"":r.markupStyleCreator.makeTooltipMarker(e.markerType,e.markerColor||"#333",i),v=n?"":kp(l,"ordinal",u),c=e.valueType,p=o?[]:f(e.value),d=!s||!n,g=!s&&n,y=DC(a,i),m=y.nameStyle,_=y.valueStyle;return i==="richText"?(s?"":h)+(n?"":PC(r,v,m))+(o?"":zk(r,p,d,g,_)):Gp((s?"":h)+(n?"":Vk(v,!s,m))+(o?"":Bk(p,d,g,_)),t)}}function N0(r,e,t,a,i,n){if(!!r){var o=LC(r),s={useUTC:i,renderMode:t,orderMode:a,markupStyleCreator:e,valueFormatter:r.valueFormatter};return o(s,r,0,n)}}function Nk(r){return{html:Rk[r],richText:Ek[r]}}function Gp(r,e){var t='
',a="margin: "+e+"px 0 0";return'
'+r+t+"
"}function Vk(r,e,t){var a=e?"margin-left:2px":"";return''+Ve(r)+""}function Bk(r,e,t,a){var i=t?"10px":"20px",n=e?"float:right;margin-left:"+i:"";return r=z(r)?r:[r],''+G(r,function(o){return Ve(o)}).join("  ")+""}function PC(r,e,t){return r.markupStyleCreator.wrapRichTextStyle(e,t)}function zk(r,e,t,a,i){var n=[i],o=a?10:20;return t&&n.push({padding:[0,0,0,o],align:"right"}),r.markupStyleCreator.wrapRichTextStyle(z(e)?e.join(" "):e,n)}function RC(r,e){var t=r.getData().getItemVisual(e,"style"),a=t[r.visualDrawType];return en(a)}function EC(r,e){var t=r.get("padding");return t!=null?t:e==="richText"?[8,10]:10}var bv=function(){function r(){this.richTextStyles={},this._nextStyleNameId=Pb()}return r.prototype._generateStyleName=function(){return"__EC_aUTo_"+this._nextStyleNameId++},r.prototype.makeTooltipMarker=function(e,t,a){var i=a==="richText"?this._generateStyleName():null,n=ME({color:t,type:e,renderMode:a,markerId:i});return $(n)?n:(this.richTextStyles[i]=n.style,n.content)},r.prototype.wrapRichTextStyle=function(e,t){var a={};z(t)?A(t,function(n){return B(a,n)}):B(a,t);var i=this._generateStyleName();return this.richTextStyles[i]=a,"{"+i+"|"+e+"}"},r}();function kC(r){var e=r.series,t=r.dataIndex,a=r.multipleSeries,i=e.getData(),n=i.mapDimensionsAll("defaultedTooltip"),o=n.length,s=e.getRawValue(t),l=z(s),u=RC(e,t),f,h,v,c;if(o>1||l&&!o){var p=Gk(s,e,t,n,u);f=p.inlineValues,h=p.inlineValueTypes,v=p.blocks,c=p.inlineValues[0]}else if(o){var d=i.getDimensionInfo(n[0]);c=f=Qn(i,t,n[0]),h=d.type}else c=f=l?s[0]:s;var g=Jd(e),y=g&&e.name||"",m=i.getName(t),_=a?y:m;return re("section",{header:y,noHeader:a||!g,sortParam:c,blocks:[re("nameValue",{markerType:"item",markerColor:u,name:_,noName:!pr(_),value:f,valueType:h})].concat(v||[])})}function Gk(r,e,t,a,i){var n=e.getData(),o=Vr(r,function(h,v,c){var p=n.getDimensionInfo(c);return h=h||p&&p.tooltip!==!1&&p.displayName!=null},!1),s=[],l=[],u=[];a.length?A(a,function(h){f(Qn(n,t,h),h)}):A(r,f);function f(h,v){var c=n.getDimensionInfo(v);!c||c.otherDims.tooltip===!1||(o?u.push(re("nameValue",{markerType:"subItem",markerColor:i,name:c.displayName,value:h,valueType:c.type})):(s.push(h),l.push(c.type)))}return{inlineValues:s,inlineValueTypes:l,blocks:u}}var ma=bt();function $l(r,e){return r.getName(e)||r.getId(e)}var zu="__universalTransitionEnabled",ph=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t._selectedDataIndicesMap={},t}return e.prototype.init=function(t,a,i){this.seriesIndex=this.componentIndex,this.dataTask=_s({count:Hk,reset:Wk}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(t,i);var n=ma(this).sourceManager=new AC(this);n.prepareSource();var o=this.getInitialData(t,i);B0(o,this),this.dataTask.context.data=o,ma(this).dataBeforeProcessed=o,V0(this),this._initSelectedMapFromData(o)},e.prototype.mergeDefaultAndTheme=function(t,a){var i=Vs(this),n=i?po(t):{},o=this.subType;St.hasClass(o)&&(o+="Series"),st(t,a.getTheme().get(this.subType)),st(t,this.getDefaultOption()),Qi(t,"label",["show"]),this.fillDataTextStyle(t.data),i&&Ya(t,n,i)},e.prototype.mergeOption=function(t,a){t=st(this.option,t,!0),this.fillDataTextStyle(t.data);var i=Vs(this);i&&Ya(this.option,t,i);var n=ma(this).sourceManager;n.dirty(),n.prepareSource();var o=this.getInitialData(t,a);B0(o,this),this.dataTask.dirty(),this.dataTask.context.data=o,ma(this).dataBeforeProcessed=o,V0(this),this._initSelectedMapFromData(o)},e.prototype.fillDataTextStyle=function(t){if(t&&!Fe(t))for(var a=["show"],i=0;ithis.getShallow("animationThreshold")&&(a=!1),!!a},e.prototype.restoreData=function(){this.dataTask.dirty()},e.prototype.getColorFromPalette=function(t,a,i){var n=this.ecModel,o=xg.prototype.getColorFromPalette.call(this,t,a,i);return o||(o=n.getColorFromPalette(t,a,i)),o},e.prototype.coordDimToDataDim=function(t){return this.getRawData().mapDimensionsAll(t)},e.prototype.getProgressive=function(){return this.get("progressive")},e.prototype.getProgressiveThreshold=function(){return this.get("progressiveThreshold")},e.prototype.select=function(t,a){this._innerSelect(this.getData(a),t)},e.prototype.unselect=function(t,a){var i=this.option.selectedMap;if(!!i){var n=this.option.selectedMode,o=this.getData(a);if(n==="series"||i==="all"){this.option.selectedMap={},this._selectedDataIndicesMap={};return}for(var s=0;s=0&&i.push(o)}return i},e.prototype.isSelected=function(t,a){var i=this.option.selectedMap;if(!i)return!1;var n=this.getData(a);return(i==="all"||i[$l(n,t)])&&!n.getItemModel(t).get(["select","disabled"])},e.prototype.isUniversalTransitionEnabled=function(){if(this[zu])return!0;var t=this.option.universalTransition;return t?t===!0?!0:t&&t.enabled:!1},e.prototype._innerSelect=function(t,a){var i,n,o=this.option,s=o.selectedMode,l=a.length;if(!(!s||!l)){if(s==="series")o.selectedMap="all";else if(s==="multiple"){J(o.selectedMap)||(o.selectedMap={});for(var u=o.selectedMap,f=0;f0&&this._innerSelect(t,a)}},e.registerClass=function(t){return St.registerClass(t)},e.protoInitialize=function(){var t=e.prototype;t.type="series.__base__",t.seriesIndex=0,t.ignoreStyleOnData=!1,t.hasSymbolVisual=!1,t.defaultSymbol="circle",t.visualStyleAccessPath="itemStyle",t.visualDrawType="fill"}(),e}(St);Qt(ph,Cg);Qt(ph,xg);Gb(ph,St);function V0(r){var e=r.name;Jd(r)||(r.name=Fk(r)||e)}function Fk(r){var e=r.getRawData(),t=e.mapDimensionsAll("seriesName"),a=[];return A(t,function(i){var n=e.getDimensionInfo(i);n.displayName&&a.push(n.displayName)}),a.join(" ")}function Hk(r){return r.model.getRawData().count()}function Wk(r){var e=r.model;return e.setData(e.getRawData().cloneShallow()),$k}function $k(r,e){e.outputData&&r.end>e.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function B0(r,e){A(Zu(r.CHANGABLE_METHODS,r.DOWNSAMPLE_METHODS),function(t){r.wrapMethod(t,it(Uk,e))})}function Uk(r,e){var t=Fp(r);return t&&t.setOutputEnd((e||this).count()),e}function Fp(r){var e=(r.ecModel||{}).scheduler,t=e&&e.getPipeline(r.uid);if(t){var a=t.currentTask;if(a){var i=a.agentStubMap;i&&(a=i.get(r.uid))}return a}}var Vt=ph,Mg=function(){function r(){this.group=new rt,this.uid=vo("viewComponent")}return r.prototype.init=function(e,t){},r.prototype.render=function(e,t,a,i){},r.prototype.dispose=function(e,t){},r.prototype.updateView=function(e,t,a,i){},r.prototype.updateLayout=function(e,t,a,i){},r.prototype.updateVisual=function(e,t,a,i){},r.prototype.toggleBlurSeries=function(e,t,a){},r.prototype.eachRendered=function(e){var t=this.group;t&&t.traverse(e)},r}();tg(Mg);qf(Mg);var Ht=Mg;function mo(){var r=bt();return function(e){var t=r(e),a=e.pipelineContext,i=!!t.large,n=!!t.progressiveRender,o=t.large=!!(a&&a.large),s=t.progressiveRender=!!(a&&a.progressiveRender);return(i!==o||n!==s)&&"reset"}}var OC=bt(),Yk=mo(),Dg=function(){function r(){this.group=new rt,this.uid=vo("viewChart"),this.renderTask=_s({plan:Zk,reset:Xk}),this.renderTask.context={view:this}}return r.prototype.init=function(e,t){},r.prototype.render=function(e,t,a,i){},r.prototype.highlight=function(e,t,a,i){var n=e.getData(i&&i.dataType);!n||G0(n,i,"emphasis")},r.prototype.downplay=function(e,t,a,i){var n=e.getData(i&&i.dataType);!n||G0(n,i,"normal")},r.prototype.remove=function(e,t){this.group.removeAll()},r.prototype.dispose=function(e,t){},r.prototype.updateView=function(e,t,a,i){this.render(e,t,a,i)},r.prototype.updateLayout=function(e,t,a,i){this.render(e,t,a,i)},r.prototype.updateVisual=function(e,t,a,i){this.render(e,t,a,i)},r.prototype.eachRendered=function(e){Ja(this.group,e)},r.markUpdateMethod=function(e,t){OC(e).updateMethod=t},r.protoInitialize=function(){var e=r.prototype;e.type="chart"}(),r}();function z0(r,e,t){r&&Es(r)&&(e==="emphasis"?sa:la)(r,t)}function G0(r,e,t){var a=Ji(r,e),i=e&&e.highlightKey!=null?yR(e.highlightKey):null;a!=null?A(Pt(a),function(n){z0(r.getItemGraphicEl(n),t,i)}):r.eachItemGraphicEl(function(n){z0(n,t,i)})}tg(Dg);qf(Dg);function Zk(r){return Yk(r.model)}function Xk(r){var e=r.model,t=r.ecModel,a=r.api,i=r.payload,n=e.pipelineContext.progressiveRender,o=r.view,s=i&&OC(i).updateMethod,l=n?"incrementalPrepareRender":s&&o[s]?s:"render";return l!=="render"&&o[l](e,t,a,i),qk[l]}var qk={incrementalPrepareRender:{progress:function(r,e){e.view.incrementalRender(r,e.model,e.ecModel,e.api,e.payload)}},render:{forceFirstProgress:!0,progress:function(r,e){e.view.render(e.model,e.ecModel,e.api,e.payload)}}},Rt=Dg,hf="\0__throttleOriginMethod",F0="\0__throttleRate",H0="\0__throttleType";function Lg(r,e,t){var a,i=0,n=0,o=null,s,l,u,f;e=e||0;function h(){n=new Date().getTime(),o=null,r.apply(l,u||[])}var v=function(){for(var c=[],p=0;p=0?h():o=setTimeout(h,-s),i=a};return v.clear=function(){o&&(clearTimeout(o),o=null)},v.debounceNextCall=function(c){f=c},v}function _o(r,e,t,a){var i=r[e];if(!!i){var n=i[hf]||i,o=i[H0],s=i[F0];if(s!==t||o!==a){if(t==null||!a)return r[e]=n;i=r[e]=Lg(n,t,a==="debounce"),i[hf]=n,i[H0]=a,i[F0]=t}return i}}function zs(r,e){var t=r[e];t&&t[hf]&&(t.clear&&t.clear(),r[e]=t[hf])}var W0=bt(),$0={itemStyle:ji(zT,!0),lineStyle:ji(BT,!0)},Kk={lineStyle:"stroke",itemStyle:"fill"};function NC(r,e){var t=r.visualStyleMapper||$0[e];return t||(console.warn("Unkown style type '"+e+"'."),$0.itemStyle)}function VC(r,e){var t=r.visualDrawType||Kk[e];return t||(console.warn("Unkown style type '"+e+"'."),"fill")}var Qk={createOnAllSeries:!0,performRawSeries:!0,reset:function(r,e){var t=r.getData(),a=r.visualStyleAccessPath||"itemStyle",i=r.getModel(a),n=NC(r,a),o=n(i),s=i.getShallow("decal");s&&(t.setVisual("decal",s),s.dirty=!0);var l=VC(r,a),u=o[l],f=K(u)?u:null,h=o.fill==="auto"||o.stroke==="auto";if(!o[l]||f||h){var v=r.getColorFromPalette(r.name,null,e.getSeriesCount());o[l]||(o[l]=v,t.setVisual("colorFromPalette",!0)),o.fill=o.fill==="auto"||K(o.fill)?v:o.fill,o.stroke=o.stroke==="auto"||K(o.stroke)?v:o.stroke}if(t.setVisual("style",o),t.setVisual("drawType",l),!e.isSeriesFiltered(r)&&f)return t.setVisual("colorFromPalette",!1),{dataEach:function(c,p){var d=r.getDataParams(p),g=B({},o);g[l]=f(d),c.setItemVisual(p,"style",g)}}}},ko=new Ot,Jk={createOnAllSeries:!0,performRawSeries:!0,reset:function(r,e){if(!(r.ignoreStyleOnData||e.isSeriesFiltered(r))){var t=r.getData(),a=r.visualStyleAccessPath||"itemStyle",i=NC(r,a),n=t.getVisual("drawType");return{dataEach:t.hasItemOption?function(o,s){var l=o.getRawDataItem(s);if(l&&l[a]){ko.option=l[a];var u=i(ko),f=o.ensureUniqueItemVisual(s,"style");B(f,u),ko.option.decal&&(o.setItemVisual(s,"decal",ko.option.decal),ko.option.decal.dirty=!0),n in u&&o.setItemVisual(s,"colorFromPalette",!1)}}:null}}}},jk={performRawSeries:!0,overallReset:function(r){var e=q();r.eachSeries(function(t){var a=t.getColorBy();if(!t.isColorBySeries()){var i=t.type+"-"+a,n=e.get(i);n||(n={},e.set(i,n)),W0(t).scope=n}}),r.eachSeries(function(t){if(!(t.isColorBySeries()||r.isSeriesFiltered(t))){var a=t.getRawData(),i={},n=t.getData(),o=W0(t).scope,s=t.visualStyleAccessPath||"itemStyle",l=VC(t,s);n.each(function(u){var f=n.getRawIndex(u);i[f]=u}),a.each(function(u){var f=i[u],h=n.getItemVisual(f,"colorFromPalette");if(h){var v=n.ensureUniqueItemVisual(f,"style"),c=a.getName(u)||u+"",p=a.count();v[l]=t.getColorFromPalette(c,o,p)}})}})}},Ul=Math.PI;function tO(r,e){e=e||{},Q(e,{text:"loading",textColor:"#000",fontSize:12,fontWeight:"normal",fontStyle:"normal",fontFamily:"sans-serif",maskColor:"rgba(255, 255, 255, 0.8)",showSpinner:!0,color:"#5470c6",spinnerRadius:10,lineWidth:5,zlevel:0});var t=new rt,a=new _t({style:{fill:e.maskColor},zlevel:e.zlevel,z:1e4});t.add(a);var i=new Tt({style:{text:e.text,fill:e.textColor,fontSize:e.fontSize,fontWeight:e.fontWeight,fontStyle:e.fontStyle,fontFamily:e.fontFamily},zlevel:e.zlevel,z:10001}),n=new _t({style:{fill:"none"},textContent:i,textConfig:{position:"right",distance:10},zlevel:e.zlevel,z:10001});t.add(n);var o;return e.showSpinner&&(o=new ug({shape:{startAngle:-Ul/2,endAngle:-Ul/2+.1,r:e.spinnerRadius},style:{stroke:e.color,lineCap:"round",lineWidth:e.lineWidth},zlevel:e.zlevel,z:10001}),o.animateShape(!0).when(1e3,{endAngle:Ul*3/2}).start("circularInOut"),o.animateShape(!0).when(1e3,{startAngle:Ul*3/2}).delay(300).start("circularInOut"),t.add(o)),t.resize=function(){var s=i.getBoundingRect().width,l=e.showSpinner?e.spinnerRadius:0,u=(r.getWidth()-l*2-(e.showSpinner&&s?10:0)-s)/2-(e.showSpinner&&s?0:5+s/2)+(e.showSpinner?0:s/2)+(s?0:l),f=r.getHeight()/2;e.showSpinner&&o.setShape({cx:u,cy:f}),n.setShape({x:u-l,y:f-l,width:l*2,height:l*2}),a.setShape({x:0,y:0,width:r.getWidth(),height:r.getHeight()})},t.resize(),t}var eO=function(){function r(e,t,a,i){this._stageTaskMap=q(),this.ecInstance=e,this.api=t,a=this._dataProcessorHandlers=a.slice(),i=this._visualHandlers=i.slice(),this._allHandlers=a.concat(i)}return r.prototype.restoreData=function(e,t){e.restoreData(t),this._stageTaskMap.each(function(a){var i=a.overallTask;i&&i.dirty()})},r.prototype.getPerformArgs=function(e,t){if(!!e.__pipeline){var a=this._pipelineMap.get(e.__pipeline.id),i=a.context,n=!t&&a.progressiveEnabled&&(!i||i.progressiveRender)&&e.__idxInPipeline>a.blockIndex,o=n?a.step:null,s=i&&i.modDataCount,l=s!=null?Math.ceil(s/o):null;return{step:o,modBy:l,modDataCount:s}}},r.prototype.getPipeline=function(e){return this._pipelineMap.get(e)},r.prototype.updateStreamModes=function(e,t){var a=this._pipelineMap.get(e.uid),i=e.getData(),n=i.count(),o=a.progressiveEnabled&&t.incrementalPrepareRender&&n>=a.threshold,s=e.get("large")&&n>=e.get("largeThreshold"),l=e.get("progressiveChunkMode")==="mod"?n:null;e.pipelineContext=a.context={progressiveRender:o,modDataCount:l,large:s}},r.prototype.restorePipelines=function(e){var t=this,a=t._pipelineMap=q();e.eachSeries(function(i){var n=i.getProgressive(),o=i.uid;a.set(o,{id:o,head:null,tail:null,threshold:i.getProgressiveThreshold(),progressiveEnabled:n&&!(i.preventIncremental&&i.preventIncremental()),blockIndex:-1,step:Math.round(n||700),count:0}),t._pipe(i,i.dataTask)})},r.prototype.prepareStageTasks=function(){var e=this._stageTaskMap,t=this.api.getModel(),a=this.api;A(this._allHandlers,function(i){var n=e.get(i.uid)||e.set(i.uid,{}),o="";Te(!(i.reset&&i.overallReset),o),i.reset&&this._createSeriesStageTask(i,n,t,a),i.overallReset&&this._createOverallStageTask(i,n,t,a)},this)},r.prototype.prepareView=function(e,t,a,i){var n=e.renderTask,o=n.context;o.model=t,o.ecModel=a,o.api=i,n.__block=!e.incrementalPrepareRender,this._pipe(t,n)},r.prototype.performDataProcessorTasks=function(e,t){this._performStageTasks(this._dataProcessorHandlers,e,t,{block:!0})},r.prototype.performVisualTasks=function(e,t,a){this._performStageTasks(this._visualHandlers,e,t,a)},r.prototype._performStageTasks=function(e,t,a,i){i=i||{};var n=!1,o=this;A(e,function(l,u){if(!(i.visualType&&i.visualType!==l.visualType)){var f=o._stageTaskMap.get(l.uid),h=f.seriesTaskMap,v=f.overallTask;if(v){var c,p=v.agentStubMap;p.each(function(g){s(i,g)&&(g.dirty(),c=!0)}),c&&v.dirty(),o.updatePayload(v,a);var d=o.getPerformArgs(v,i.block);p.each(function(g){g.perform(d)}),v.perform(d)&&(n=!0)}else h&&h.each(function(g,y){s(i,g)&&g.dirty();var m=o.getPerformArgs(g,i.block);m.skip=!l.performRawSeries&&t.isSeriesFiltered(g.context.model),o.updatePayload(g,a),g.perform(m)&&(n=!0)})}});function s(l,u){return l.setDirty&&(!l.dirtyMap||l.dirtyMap.get(u.__pipeline.id))}this.unfinished=n||this.unfinished},r.prototype.performSeriesTasks=function(e){var t;e.eachSeries(function(a){t=a.dataTask.perform()||t}),this.unfinished=t||this.unfinished},r.prototype.plan=function(){this._pipelineMap.each(function(e){var t=e.tail;do{if(t.__block){e.blockIndex=t.__idxInPipeline;break}t=t.getUpstream()}while(t)})},r.prototype.updatePayload=function(e,t){t!=="remain"&&(e.context.payload=t)},r.prototype._createSeriesStageTask=function(e,t,a,i){var n=this,o=t.seriesTaskMap,s=t.seriesTaskMap=q(),l=e.seriesType,u=e.getTargetSeries;e.createOnAllSeries?a.eachRawSeries(f):l?a.eachRawSeriesByType(l,f):u&&u(a,i).each(f);function f(h){var v=h.uid,c=s.set(v,o&&o.get(v)||_s({plan:oO,reset:sO,count:uO}));c.context={model:h,ecModel:a,api:i,useClearVisual:e.isVisual&&!e.isLayout,plan:e.plan,reset:e.reset,scheduler:n},n._pipe(h,c)}},r.prototype._createOverallStageTask=function(e,t,a,i){var n=this,o=t.overallTask=t.overallTask||_s({reset:rO});o.context={ecModel:a,api:i,overallReset:e.overallReset,scheduler:n};var s=o.agentStubMap,l=o.agentStubMap=q(),u=e.seriesType,f=e.getTargetSeries,h=!0,v=!1,c="";Te(!e.createOnAllSeries,c),u?a.eachRawSeriesByType(u,p):f?f(a,i).each(p):(h=!1,A(a.getSeries(),p));function p(d){var g=d.uid,y=l.set(g,s&&s.get(g)||(v=!0,_s({reset:aO,onDirty:nO})));y.context={model:d,overallProgress:h},y.agent=o,y.__block=h,n._pipe(d,y)}v&&o.dirty()},r.prototype._pipe=function(e,t){var a=e.uid,i=this._pipelineMap.get(a);!i.head&&(i.head=t),i.tail&&i.tail.pipe(t),i.tail=t,t.__idxInPipeline=i.count++,t.__pipeline=i},r.wrapStageHandler=function(e,t){return K(e)&&(e={overallReset:e,seriesType:fO(e)}),e.uid=vo("stageHandler"),t&&(e.visualType=t),e},r}();function rO(r){r.overallReset(r.ecModel,r.api,r.payload)}function aO(r){return r.overallProgress&&iO}function iO(){this.agent.dirty(),this.getDownstream().dirty()}function nO(){this.agent&&this.agent.dirty()}function oO(r){return r.plan?r.plan(r.model,r.ecModel,r.api,r.payload):null}function sO(r){r.useClearVisual&&r.data.clearAllVisual();var e=r.resetDefines=Pt(r.reset(r.model,r.ecModel,r.api,r.payload));return e.length>1?G(e,function(t,a){return BC(a)}):lO}var lO=BC(0);function BC(r){return function(e,t){var a=t.data,i=t.resetDefines[r];if(i&&i.dataEach)for(var n=e.start;n0&&c===u.length-v.length){var p=u.slice(0,c);p!=="data"&&(t.mainType=p,t[v.toLowerCase()]=l,f=!0)}}s.hasOwnProperty(u)&&(a[u]=l,f=!0),f||(i[u]=l)})}return{cptQuery:t,dataQuery:a,otherQuery:i}},r.prototype.filter=function(e,t){var a=this.eventInfo;if(!a)return!0;var i=a.targetEl,n=a.packedEvent,o=a.model,s=a.view;if(!o||!s)return!0;var l=t.cptQuery,u=t.dataQuery;return f(l,o,"mainType")&&f(l,o,"subType")&&f(l,o,"index","componentIndex")&&f(l,o,"name")&&f(l,o,"id")&&f(u,n,"name")&&f(u,n,"dataIndex")&&f(u,n,"dataType")&&(!s.filterForExposedEvent||s.filterForExposedEvent(e,t.otherQuery,i,n));function f(h,v,c,p){return h[c]==null||v[p||c]===h[c]}},r.prototype.afterTrigger=function(){this.eventInfo=null},r}(),Hp=["symbol","symbolSize","symbolRotate","symbolOffset"],X0=Hp.concat(["symbolKeepAspect"]),pO={createOnAllSeries:!0,performRawSeries:!0,reset:function(r,e){var t=r.getData();if(r.legendIcon&&t.setVisual("legendIcon",r.legendIcon),!r.hasSymbolVisual)return;for(var a={},i={},n=!1,o=0;o=0&&Gi(l)?l:.5;var u=r.createRadialGradient(o,s,0,o,s,l);return u}function Wp(r,e,t){for(var a=e.type==="radial"?IO(r,e,t):LO(r,e,t),i=e.colorStops,n=0;n0)?null:r==="dashed"?[4*e,2*e]:r==="dotted"?[e]:xt(r)?[r]:z(r)?r:null}function Pg(r){var e=r.style,t=e.lineDash&&e.lineWidth>0&&RO(e.lineDash,e.lineWidth),a=e.lineDashOffset;if(t){var i=e.strokeNoScale&&r.getLineScale?r.getLineScale():1;i&&i!==1&&(t=G(t,function(n){return n/i}),a/=i)}return[t,a]}var EO=new Fr(!0);function pf(r){var e=r.stroke;return!(e==null||e==="none"||!(r.lineWidth>0))}function q0(r){return typeof r=="string"&&r!=="none"}function df(r){var e=r.fill;return e!=null&&e!=="none"}function K0(r,e){if(e.fillOpacity!=null&&e.fillOpacity!==1){var t=r.globalAlpha;r.globalAlpha=e.fillOpacity*e.opacity,r.fill(),r.globalAlpha=t}else r.fill()}function Q0(r,e){if(e.strokeOpacity!=null&&e.strokeOpacity!==1){var t=r.globalAlpha;r.globalAlpha=e.strokeOpacity*e.opacity,r.stroke(),r.globalAlpha=t}else r.stroke()}function $p(r,e,t){var a=eg(e.image,e.__image,t);if(Kf(a)){var i=r.createPattern(a,e.repeat||"repeat");if(typeof DOMMatrix=="function"&&i&&i.setTransform){var n=new DOMMatrix;n.translateSelf(e.x||0,e.y||0),n.rotateSelf(0,0,(e.rotation||0)*Au),n.scaleSelf(e.scaleX||1,e.scaleY||1),i.setTransform(n)}return i}}function kO(r,e,t,a){var i,n=pf(t),o=df(t),s=t.strokePercent,l=s<1,u=!e.path;(!e.silent||l)&&u&&e.createPathProxy();var f=e.path||EO,h=e.__dirty;if(!a){var v=t.fill,c=t.stroke,p=o&&!!v.colorStops,d=n&&!!c.colorStops,g=o&&!!v.image,y=n&&!!c.image,m=void 0,_=void 0,S=void 0,w=void 0,x=void 0;(p||d)&&(x=e.getBoundingRect()),p&&(m=h?Wp(r,v,x):e.__canvasFillGradient,e.__canvasFillGradient=m),d&&(_=h?Wp(r,c,x):e.__canvasStrokeGradient,e.__canvasStrokeGradient=_),g&&(S=h||!e.__canvasFillPattern?$p(r,v,e):e.__canvasFillPattern,e.__canvasFillPattern=S),y&&(w=h||!e.__canvasStrokePattern?$p(r,c,e):e.__canvasStrokePattern,e.__canvasStrokePattern=S),p?r.fillStyle=m:g&&(S?r.fillStyle=S:o=!1),d?r.strokeStyle=_:y&&(w?r.strokeStyle=w:n=!1)}var b=e.getGlobalScale();f.setScale(b[0],b[1],e.segmentIgnoreThreshold);var T,C;r.setLineDash&&t.lineDash&&(i=Pg(e),T=i[0],C=i[1]);var M=!0;(u||h&En)&&(f.setDPR(r.dpr),l?f.setContext(null):(f.setContext(r),M=!1),f.reset(),e.buildPath(f,e.shape,a),f.toStatic(),e.pathUpdated()),M&&f.rebuildPath(r,l?s:1),T&&(r.setLineDash(T),r.lineDashOffset=C),a||(t.strokeFirst?(n&&Q0(r,t),o&&K0(r,t)):(o&&K0(r,t),n&&Q0(r,t))),T&&r.setLineDash([])}function OO(r,e,t){var a=e.__image=eg(t.image,e.__image,e,e.onload);if(!(!a||!Kf(a))){var i=t.x||0,n=t.y||0,o=e.getWidth(),s=e.getHeight(),l=a.width/a.height;if(o==null&&s!=null?o=s*l:s==null&&o!=null?s=o/l:o==null&&s==null&&(o=a.width,s=a.height),t.sWidth&&t.sHeight){var u=t.sx||0,f=t.sy||0;r.drawImage(a,u,f,t.sWidth,t.sHeight,i,n,o,s)}else if(t.sx&&t.sy){var u=t.sx,f=t.sy,h=o-u,v=s-f;r.drawImage(a,u,f,h,v,i,n,o,s)}else r.drawImage(a,i,n,o,s)}}function NO(r,e,t){var a,i=t.text;if(i!=null&&(i+=""),i){r.font=t.font||Ha,r.textAlign=t.textAlign,r.textBaseline=t.textBaseline;var n=void 0,o=void 0;r.setLineDash&&t.lineDash&&(a=Pg(e),n=a[0],o=a[1]),n&&(r.setLineDash(n),r.lineDashOffset=o),t.strokeFirst?(pf(t)&&r.strokeText(i,t.x,t.y),df(t)&&r.fillText(i,t.x,t.y)):(df(t)&&r.fillText(i,t.x,t.y),pf(t)&&r.strokeText(i,t.x,t.y)),n&&r.setLineDash([])}}var J0=["shadowBlur","shadowOffsetX","shadowOffsetY"],j0=[["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]];function UC(r,e,t,a,i){var n=!1;if(!a&&(t=t||{},e===t))return!1;if(a||e.opacity!==t.opacity){Pe(r,i),n=!0;var o=Math.max(Math.min(e.opacity,1),0);r.globalAlpha=isNaN(o)?Wi.opacity:o}(a||e.blend!==t.blend)&&(n||(Pe(r,i),n=!0),r.globalCompositeOperation=e.blend||Wi.blend);for(var s=0;s0&&t.unfinished);t.unfinished||this._zr.flush()}}},e.prototype.getDom=function(){return this._dom},e.prototype.getId=function(){return this.id},e.prototype.getZr=function(){return this._zr},e.prototype.isSSR=function(){return this._ssr},e.prototype.setOption=function(t,a,i){if(!this[pe]){if(this._disposed){this.id;return}var n,o,s;if(J(a)&&(i=a.lazyUpdate,n=a.silent,o=a.replaceMerge,s=a.transition,a=a.notMerge),this[pe]=!0,!this._model||a){var l=new JE(this._api),u=this._theme,f=this._model=new fC;f.scheduler=this._scheduler,f.ssr=this._ssr,f.init(null,null,null,u,this._locale,l)}this._model.setOption(t,{replaceMerge:o},Yp);var h={seriesTransition:s,optionChanged:!0};if(i)this[De]={silent:n,updateParams:h},this[pe]=!1,this.getZr().wakeUp();else{try{wn(this),_a.update.call(this,null,h)}catch(v){throw this[De]=null,this[pe]=!1,v}this._ssr||this._zr.flush(),this[De]=null,this[pe]=!1,Oo.call(this,n),No.call(this,n)}}},e.prototype.setTheme=function(){},e.prototype.getModel=function(){return this._model},e.prototype.getOption=function(){return this._model&&this._model.getOption()},e.prototype.getWidth=function(){return this._zr.getWidth()},e.prototype.getHeight=function(){return this._zr.getHeight()},e.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||XO&&window.devicePixelRatio||1},e.prototype.getRenderedCanvas=function(t){return this.renderToCanvas(t)},e.prototype.renderToCanvas=function(t){t=t||{};var a=this._zr.painter;return a.getRenderedCanvas({backgroundColor:t.backgroundColor||this._model.get("backgroundColor"),pixelRatio:t.pixelRatio||this.getDevicePixelRatio()})},e.prototype.renderToSVGString=function(t){t=t||{};var a=this._zr.painter;return a.renderToString({useViewBox:t.useViewBox})},e.prototype.getSvgDataURL=function(){if(!!Ct.svgSupported){var t=this._zr,a=t.storage.getDisplayList();return A(a,function(i){i.stopAnimation(null,!0)}),t.painter.toDataURL()}},e.prototype.getDataURL=function(t){if(this._disposed){this.id;return}t=t||{};var a=t.excludeComponents,i=this._model,n=[],o=this;A(a,function(l){i.eachComponent({mainType:l},function(u){var f=o._componentsMap[u.__viewId];f.group.ignore||(n.push(f),f.group.ignore=!0)})});var s=this._zr.painter.getType()==="svg"?this.getSvgDataURL():this.renderToCanvas(t).toDataURL("image/"+(t&&t.type||"png"));return A(n,function(l){l.group.ignore=!1}),s},e.prototype.getConnectedDataURL=function(t){if(this._disposed){this.id;return}var a=t.type==="svg",i=this.group,n=Math.min,o=Math.max,s=1/0;if(p_[i]){var l=s,u=s,f=-s,h=-s,v=[],c=t&&t.pixelRatio||this.getDevicePixelRatio();A(xs,function(_,S){if(_.group===i){var w=a?_.getZr().painter.getSvgDom().innerHTML:_.renderToCanvas(j(t)),x=_.getDom().getBoundingClientRect();l=n(x.left,l),u=n(x.top,u),f=o(x.right,f),h=o(x.bottom,h),v.push({dom:w,left:x.left,top:x.top})}}),l*=c,u*=c,f*=c,h*=c;var p=f-l,d=h-u,g=Wa.createCanvas(),y=ym(g,{renderer:a?"svg":"canvas"});if(y.resize({width:p,height:d}),a){var m="";return A(v,function(_){var S=_.left-l,w=_.top-u;m+=''+_.dom+""}),y.painter.getSvgRoot().innerHTML=m,t.connectedBackgroundColor&&y.painter.setBackgroundColor(t.connectedBackgroundColor),y.refreshImmediately(),y.painter.toDataURL()}else return t.connectedBackgroundColor&&y.add(new _t({shape:{x:0,y:0,width:p,height:d},style:{fill:t.connectedBackgroundColor}})),A(v,function(_){var S=new he({style:{x:_.left*c-l,y:_.top*c-u,image:_.dom}});y.add(S)}),y.refreshImmediately(),g.toDataURL("image/"+(t&&t.type||"png"))}else return this.getDataURL(t)},e.prototype.convertToPixel=function(t,a){return Dv(this,"convertToPixel",t,a)},e.prototype.convertFromPixel=function(t,a){return Dv(this,"convertFromPixel",t,a)},e.prototype.containPixel=function(t,a){if(this._disposed){this.id;return}var i=this._model,n,o=ps(i,t);return A(o,function(s,l){l.indexOf("Models")>=0&&A(s,function(u){var f=u.coordinateSystem;if(f&&f.containPoint)n=n||!!f.containPoint(a);else if(l==="seriesModels"){var h=this._chartsMap[u.__viewId];h&&h.containPoint&&(n=n||h.containPoint(a,u))}},this)},this),!!n},e.prototype.getVisual=function(t,a){var i=this._model,n=ps(i,t,{defaultMainType:"series"}),o=n.seriesModel,s=o.getData(),l=n.hasOwnProperty("dataIndexInside")?n.dataIndexInside:n.hasOwnProperty("dataIndex")?s.indexOfRawIndex(n.dataIndex):null;return l!=null?Ig(s,l,a):fl(s,a)},e.prototype.getViewOfComponentModel=function(t){return this._componentsMap[t.__viewId]},e.prototype.getViewOfSeriesModel=function(t){return this._chartsMap[t.__viewId]},e.prototype._initEvents=function(){var t=this;A(uN,function(a){var i=function(n){var o=t.getModel(),s=n.target,l,u=a==="globalout";if(u?l={}:s&&Gn(s,function(p){var d=at(p);if(d&&d.dataIndex!=null){var g=d.dataModel||o.getSeriesByIndex(d.seriesIndex);return l=g&&g.getDataParams(d.dataIndex,d.dataType)||{},!0}else if(d.eventData)return l=B({},d.eventData),!0},!0),l){var f=l.componentType,h=l.componentIndex;(f==="markLine"||f==="markPoint"||f==="markArea")&&(f="series",h=l.seriesIndex);var v=f&&h!=null&&o.getComponent(f,h),c=v&&t[v.mainType==="series"?"_chartsMap":"_componentsMap"][v.__viewId];l.event=n,l.type=a,t._$eventProcessor.eventInfo={targetEl:s,packedEvent:l,model:v,view:c},t.trigger(a,l)}};i.zrEventfulCallAtLast=!0,t._zr.on(a,i,t)}),A(Ss,function(a,i){t._messageCenter.on(i,function(n){this.trigger(i,n)},t)}),A(["selectchanged"],function(a){t._messageCenter.on(a,function(i){this.trigger(a,i)},t)}),gO(this._messageCenter,this,this._api)},e.prototype.isDisposed=function(){return this._disposed},e.prototype.clear=function(){if(this._disposed){this.id;return}this.setOption({series:[]},!0)},e.prototype.dispose=function(){if(this._disposed){this.id;return}this._disposed=!0;var t=this.getDom();t&&Vb(this.getDom(),kg,"");var a=this,i=a._api,n=a._model;A(a._componentsViews,function(o){o.dispose(n,i)}),A(a._chartsViews,function(o){o.dispose(n,i)}),a._zr.dispose(),a._dom=a._model=a._chartsMap=a._componentsMap=a._chartsViews=a._componentsViews=a._scheduler=a._api=a._zr=a._throttledZrFlush=a._theme=a._coordSysMgr=a._messageCenter=null,delete xs[a.id]},e.prototype.resize=function(t){if(!this[pe]){if(this._disposed){this.id;return}this._zr.resize(t);var a=this._model;if(this._loadingFX&&this._loadingFX.resize(),!!a){var i=a.resetOption("media"),n=t&&t.silent;this[De]&&(n==null&&(n=this[De].silent),i=!0,this[De]=null),this[pe]=!0;try{i&&wn(this),_a.update.call(this,{type:"resize",animation:B({duration:0},t&&t.animation)})}catch(o){throw this[pe]=!1,o}this[pe]=!1,Oo.call(this,n),No.call(this,n)}}},e.prototype.showLoading=function(t,a){if(this._disposed){this.id;return}if(J(t)&&(a=t,t=""),t=t||"default",this.hideLoading(),!!Zp[t]){var i=Zp[t](this._api,a),n=this._zr;this._loadingFX=i,n.add(i)}},e.prototype.hideLoading=function(){if(this._disposed){this.id;return}this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null},e.prototype.makeActionFromEvent=function(t){var a=B({},t);return a.type=Ss[t.type],a},e.prototype.dispatchAction=function(t,a){if(this._disposed){this.id;return}if(J(a)||(a={silent:!!a}),!!gf[t.type]&&!!this._model){if(this[pe]){this._pendingActions.push(t);return}var i=a.silent;Iv.call(this,t,i);var n=a.flush;n?this._zr.flush():n!==!1&&Ct.browser.weChat&&this._throttledZrFlush(),Oo.call(this,i),No.call(this,i)}},e.prototype.updateLabelLayout=function(){vr.trigger("series:layoutlabels",this._model,this._api,{updatedSeries:[]})},e.prototype.appendData=function(t){if(this._disposed){this.id;return}var a=t.seriesIndex,i=this.getModel(),n=i.getSeriesByIndex(a);n.appendData(t),this._scheduler.unfinished=!0,this.getZr().wakeUp()},e.internalField=function(){wn=function(h){var v=h._scheduler;v.restorePipelines(h._model),v.prepareStageTasks(),Mv(h,!0),Mv(h,!1),v.plan()},Mv=function(h,v){for(var c=h._model,p=h._scheduler,d=v?h._componentsViews:h._chartsViews,g=v?h._componentsMap:h._chartsMap,y=h._zr,m=h._api,_=0;_v.get("hoverLayerThreshold")&&!Ct.node&&!Ct.worker&&v.eachSeries(function(g){if(!g.preventUsingHoverLayer){var y=h._chartsMap[g.__viewId];y.__alive&&y.eachRendered(function(m){m.states.emphasis&&(m.states.emphasis.hoverLayer=!0)})}})}function o(h,v){var c=h.get("blendMode")||null;v.eachRendered(function(p){p.isGroup||(p.style.blend=c)})}function s(h,v){if(!h.preventAutoZ){var c=h.get("z")||0,p=h.get("zlevel")||0;v.eachRendered(function(d){return l(d,c,p,-1/0),!0})}}function l(h,v,c,p){var d=h.getTextContent(),g=h.getTextGuideLine(),y=h.isGroup;if(y)for(var m=h.childrenRef(),_=0;_0?{duration:d,delay:c.get("delay"),easing:c.get("easing")}:null;v.eachRendered(function(y){if(y.states&&y.states.emphasis){if(Un(y))return;if(y instanceof dt&&mR(y),y.__dirty){var m=y.prevStates;m&&y.useStates(m)}if(p){y.stateTransition=g;var _=y.getTextContent(),S=y.getTextGuideLine();_&&(_.stateTransition=g),S&&(S.stateTransition=g)}y.__dirty&&i(y)}})}v_=function(h){return new(function(v){O(c,v);function c(){return v!==null&&v.apply(this,arguments)||this}return c.prototype.getCoordinateSystems=function(){return h._coordSysMgr.getCoordinateSystems()},c.prototype.getComponentByElement=function(p){for(;p;){var d=p.__ecComponentInfo;if(d!=null)return h._model.getComponent(d.mainType,d.index);p=p.parent}},c.prototype.enterEmphasis=function(p,d){sa(p,d),He(h)},c.prototype.leaveEmphasis=function(p,d){la(p,d),He(h)},c.prototype.enterBlur=function(p){nT(p),He(h)},c.prototype.leaveBlur=function(p){ng(p),He(h)},c.prototype.enterSelect=function(p){oT(p),He(h)},c.prototype.leaveSelect=function(p){sT(p),He(h)},c.prototype.getModel=function(){return h.getModel()},c.prototype.getViewOfComponentModel=function(p){return h.getViewOfComponentModel(p)},c.prototype.getViewOfSeriesModel=function(p){return h.getViewOfSeriesModel(p)},c}(hC))(h)},oA=function(h){function v(c,p){for(var d=0;d=0)){d_.push(t);var n=FC.wrapStageHandler(t,i);n.__prio=e,n.__raw=t,r.push(n)}}function vA(r,e){Zp[r]=e}function gN(r,e,t){var a=ZO("registerMap");a&&a(r,e,t)}var yN=Ak;ln(Rg,Qk);ln(dh,Jk);ln(dh,jk);ln(Rg,pO);ln(dh,dO);ln(tA,$O);fA(cC);hA(QO,ok);vA("default",tO);$r({type:$i,event:$i,update:$i},qt);$r({type:ku,event:ku,update:ku},qt);$r({type:ds,event:ds,update:ds},qt);$r({type:Ou,event:Ou,update:Ou},qt);$r({type:gs,event:gs,update:gs},qt);uA("light",hO);uA("dark",vO);var g_=[],mN={registerPreprocessor:fA,registerProcessor:hA,registerPostInit:vN,registerPostUpdate:cN,registerUpdateLifecycle:Og,registerAction:$r,registerCoordinateSystem:pN,registerLayout:dN,registerVisual:ln,registerTransform:yN,registerLoading:vA,registerMap:gN,registerImpl:YO,PRIORITY:oN,ComponentModel:St,ComponentView:Ht,SeriesModel:Vt,ChartView:Rt,registerComponentModel:function(r){St.registerClass(r)},registerComponentView:function(r){Ht.registerClass(r)},registerSeriesModel:function(r){Vt.registerClass(r)},registerChartView:function(r){Rt.registerClass(r)},registerSubTypeDefaulter:function(r,e){St.registerSubTypeDefaulter(r,e)},registerPainter:function(r,e){V2(r,e)}};function ct(r){if(z(r)){A(r,function(e){ct(e)});return}ht(g_,r)>=0||(g_.push(r),K(r)&&(r={install:r}),r.install(mN))}function Vo(r){return r==null?0:r.length||1}function y_(r){return r}var _N=function(){function r(e,t,a,i,n,o){this._old=e,this._new=t,this._oldKeyGetter=a||y_,this._newKeyGetter=i||y_,this.context=n,this._diffModeMultiple=o==="multiple"}return r.prototype.add=function(e){return this._add=e,this},r.prototype.update=function(e){return this._update=e,this},r.prototype.updateManyToOne=function(e){return this._updateManyToOne=e,this},r.prototype.updateOneToMany=function(e){return this._updateOneToMany=e,this},r.prototype.updateManyToMany=function(e){return this._updateManyToMany=e,this},r.prototype.remove=function(e){return this._remove=e,this},r.prototype.execute=function(){this[this._diffModeMultiple?"_executeMultiple":"_executeOneToOne"]()},r.prototype._executeOneToOne=function(){var e=this._old,t=this._new,a={},i=new Array(e.length),n=new Array(t.length);this._initIndexMap(e,null,i,"_oldKeyGetter"),this._initIndexMap(t,a,n,"_newKeyGetter");for(var o=0;o1){var f=l.shift();l.length===1&&(a[s]=l[0]),this._update&&this._update(f,o)}else u===1?(a[s]=null,this._update&&this._update(l,o)):this._remove&&this._remove(o)}this._performRestAdd(n,a)},r.prototype._executeMultiple=function(){var e=this._old,t=this._new,a={},i={},n=[],o=[];this._initIndexMap(e,a,n,"_oldKeyGetter"),this._initIndexMap(t,i,o,"_newKeyGetter");for(var s=0;s1&&v===1)this._updateManyToOne&&this._updateManyToOne(f,u),i[l]=null;else if(h===1&&v>1)this._updateOneToMany&&this._updateOneToMany(f,u),i[l]=null;else if(h===1&&v===1)this._update&&this._update(f,u),i[l]=null;else if(h>1&&v>1)this._updateManyToMany&&this._updateManyToMany(f,u),i[l]=null;else if(h>1)for(var c=0;c1)for(var s=0;s30}var Bo=J,Sa=G,AN=typeof Int32Array=="undefined"?Array:Int32Array,MN="e\0\0",m_=-1,DN=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_dimSummary","userOutput","_rawData","_dimValueGetter","_nameDimIdx","_idDimIdx","_nameRepeatCount"],LN=["_approximateExtent"],__,Kl,zo,Go,Ev,Ql,kv,IN=function(){function r(e,t){this.type="list",this._dimOmitted=!1,this._nameList=[],this._idList=[],this._visual={},this._layout={},this._itemVisuals=[],this._itemLayouts=[],this._graphicEls=[],this._approximateExtent={},this._calculationInfo={},this.hasItemOption=!1,this.TRANSFERABLE_METHODS=["cloneShallow","downSample","lttbDownSample","map"],this.CHANGABLE_METHODS=["filterSelf","selectRange"],this.DOWNSAMPLE_METHODS=["downSample","lttbDownSample"];var a,i=!1;pA(e)?(a=e.dimensions,this._dimOmitted=e.isDimensionOmitted(),this._schema=e):(i=!0,a=e),a=a||["x","y"];for(var n={},o=[],s={},l=!1,u={},f=0;f=t)){var a=this._store,i=a.getProvider();this._updateOrdinalMeta();var n=this._nameList,o=this._idList,s=i.getSource().sourceFormat,l=s===sr;if(l&&!i.pure)for(var u=[],f=e;f0},r.prototype.ensureUniqueItemVisual=function(e,t){var a=this._itemVisuals,i=a[e];i||(i=a[e]={});var n=i[t];return n==null&&(n=this.getVisual(t),z(n)?n=n.slice():Bo(n)&&(n=B({},n)),i[t]=n),n},r.prototype.setItemVisual=function(e,t,a){var i=this._itemVisuals[e]||{};this._itemVisuals[e]=i,Bo(t)?B(i,t):i[t]=a},r.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},r.prototype.setLayout=function(e,t){Bo(e)?B(this._layout,e):this._layout[e]=t},r.prototype.getLayout=function(e){return this._layout[e]},r.prototype.getItemLayout=function(e){return this._itemLayouts[e]},r.prototype.setItemLayout=function(e,t,a){this._itemLayouts[e]=a?B(this._itemLayouts[e]||{},t):t},r.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},r.prototype.setItemGraphicEl=function(e,t){var a=this.hostModel&&this.hostModel.seriesIndex;Cp(a,this.dataType,e,t),this._graphicEls[e]=t},r.prototype.getItemGraphicEl=function(e){return this._graphicEls[e]},r.prototype.eachItemGraphicEl=function(e,t){A(this._graphicEls,function(a,i){a&&e&&e.call(t,a,i)})},r.prototype.cloneShallow=function(e){return e||(e=new r(this._schema?this._schema:Sa(this.dimensions,this._getDimInfo,this),this.hostModel)),Ev(e,this),e._store=this._store,e},r.prototype.wrapMethod=function(e,t){var a=this[e];!K(a)||(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(e),this[e]=function(){var i=a.apply(this,arguments);return t.apply(this,[i].concat(Wd(arguments)))})},r.internalField=function(){__=function(e){var t=e._invertedIndicesMap;A(t,function(a,i){var n=e._dimInfos[i],o=n.ordinalMeta,s=e._store;if(o){a=t[i]=new AN(o.categories.length);for(var l=0;l1&&(l+="__ec__"+f),i[t]=l}}}(),r}(),be=IN;function SZ(r,e){return xo(r,e).dimensions}function xo(r,e){wg(r)||(r=bg(r)),e=e||{};var t=e.coordDimensions||[],a=e.dimensionsDefine||r.dimensionsDefine||[],i=q(),n=[],o=RN(r,t,a,e.dimensionsCount),s=e.canOmitUnusedDimensions&&yA(o),l=a===r.dimensionsDefine,u=l?gA(r):dA(a),f=e.encodeDefine;!f&&e.encodeDefaulter&&(f=e.encodeDefaulter(r,o));for(var h=q(f),v=new TC(o),c=0;c0&&(a.name=i+(n-1)),n++,e.set(i,n)}}function RN(r,e,t,a){var i=Math.max(r.dimensionsDetectedCount||1,e.length,t.length,a||0);return A(e,function(n){var o;J(n)&&(o=n.dimsDef)&&(i=Math.max(i,o.length))}),i}function EN(r,e,t){var a=e.data;if(t||a.hasOwnProperty(r)){for(var i=0;a.hasOwnProperty(r+i);)i++;r+=i}return e.set(r,!0),r}var kN=function(){function r(e){this.coordSysDims=[],this.axisMap=q(),this.categoryAxisMap=q(),this.coordSysName=e}return r}();function ON(r){var e=r.get("coordinateSystem"),t=new kN(e),a=NN[e];if(a)return a(r,t,t.axisMap,t.categoryAxisMap),t}var NN={cartesian2d:function(r,e,t,a){var i=r.getReferringComponents("xAxis",Xt).models[0],n=r.getReferringComponents("yAxis",Xt).models[0];e.coordSysDims=["x","y"],t.set("x",i),t.set("y",n),bn(i)&&(a.set("x",i),e.firstCategoryDimIndex=0),bn(n)&&(a.set("y",n),e.firstCategoryDimIndex==null&&(e.firstCategoryDimIndex=1))},singleAxis:function(r,e,t,a){var i=r.getReferringComponents("singleAxis",Xt).models[0];e.coordSysDims=["single"],t.set("single",i),bn(i)&&(a.set("single",i),e.firstCategoryDimIndex=0)},polar:function(r,e,t,a){var i=r.getReferringComponents("polar",Xt).models[0],n=i.findAxisModel("radiusAxis"),o=i.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],t.set("radius",n),t.set("angle",o),bn(n)&&(a.set("radius",n),e.firstCategoryDimIndex=0),bn(o)&&(a.set("angle",o),e.firstCategoryDimIndex==null&&(e.firstCategoryDimIndex=1))},geo:function(r,e,t,a){e.coordSysDims=["lng","lat"]},parallel:function(r,e,t,a){var i=r.ecModel,n=i.getComponent("parallel",r.get("parallelIndex")),o=e.coordSysDims=n.dimensions.slice();A(n.parallelAxisIndex,function(s,l){var u=i.getComponent("parallelAxis",s),f=o[l];t.set(f,u),bn(u)&&(a.set(f,u),e.firstCategoryDimIndex==null&&(e.firstCategoryDimIndex=l))})}};function bn(r){return r.get("type")==="category"}function VN(r,e,t){t=t||{};var a=t.byIndex,i=t.stackedCoordDimension,n,o,s;BN(e)?n=e:(o=e.schema,n=o.dimensions,s=e.store);var l=!!(r&&r.get("stack")),u,f,h,v;if(A(n,function(m,_){$(m)&&(n[_]=m={name:m}),l&&!m.isExtraCoord&&(!a&&!u&&m.ordinalMeta&&(u=m),!f&&m.type!=="ordinal"&&m.type!=="time"&&(!i||i===m.coordDim)&&(f=m))}),f&&!a&&!u&&(a=!0),f){h="__\0ecstackresult_"+r.id,v="__\0ecstackedover_"+r.id,u&&(u.createInvertedIndices=!0);var c=f.coordDim,p=f.type,d=0;A(n,function(m){m.coordDim===c&&d++});var g={name:h,coordDim:c,coordDimIndex:d,type:p,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:n.length},y={name:v,coordDim:v,coordDimIndex:d+1,type:p,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:n.length+1};o?(s&&(g.storeDimIndex=s.ensureCalculationDimension(v,p),y.storeDimIndex=s.ensureCalculationDimension(h,p)),o.appendCalculationDimension(g),o.appendCalculationDimension(y)):(n.push(g),n.push(y))}return{stackedDimension:f&&f.name,stackedByDimension:u&&u.name,isStackedByIndex:a,stackedOverDimension:v,stackResultDimension:h}}function BN(r){return!pA(r.schema)}function Za(r,e){return!!e&&e===r.getCalculationInfo("stackedDimension")}function mA(r,e){return Za(r,e)?r.getCalculationInfo("stackResultDimension"):e}function zN(r,e){var t=r.get("coordinateSystem"),a=ul.get(t),i;return e&&e.coordSysDims&&(i=G(e.coordSysDims,function(n){var o={name:n},s=e.axisMap.get(n);if(s){var l=s.get("type");o.type=mf(l)}return o})),i||(i=a&&(a.getDimensionsInfo?a.getDimensionsInfo():a.dimensions.slice())||["x","y"]),i}function GN(r,e,t){var a,i;return t&&A(r,function(n,o){var s=n.coordDim,l=t.categoryAxisMap.get(s);l&&(a==null&&(a=o),n.ordinalMeta=l.getOrdinalMeta(),e&&(n.createInvertedIndices=!0)),n.otherDims.itemName!=null&&(i=!0)}),!i&&a!=null&&(r[a].otherDims.itemName=0),a}function ca(r,e,t){t=t||{};var a=e.getSourceManager(),i,n=!1;r?(n=!0,i=bg(r)):(i=a.getSource(),n=i.sourceFormat===sr);var o=ON(e),s=zN(e,o),l=t.useEncodeDefaulter,u=K(l)?l:l?it(nC,s,e):null,f={coordDimensions:s,generateCoord:t.generateCoord,encodeDefine:e.getEncode(),encodeDefaulter:u,canOmitUnusedDimensions:!n},h=xo(i,f),v=GN(h.dimensions,t.createInvertedIndices,o),c=n?null:a.getSharedDataStore(h),p=VN(e,{schema:h,store:c}),d=new be(h,e);d.setCalculationInfo(p);var g=v!=null&&FN(i)?function(y,m,_,S){return S===v?_:this.defaultDimValueGetter(y,m,_,S)}:null;return d.hasItemOption=!1,d.initData(n?i:c,null,g),d}function FN(r){if(r.sourceFormat===sr){var e=HN(r.data||[]);return!z(so(e))}}function HN(r){for(var e=0;et[1]&&(t[1]=e[1])},r.prototype.unionExtentFromData=function(e,t){this.unionExtent(e.getApproximateExtent(t))},r.prototype.getExtent=function(){return this._extent.slice()},r.prototype.setExtent=function(e,t){var a=this._extent;isNaN(e)||(a[0]=e),isNaN(t)||(a[1]=t)},r.prototype.isInExtentRange=function(e){return this._extent[0]<=e&&this._extent[1]>=e},r.prototype.isBlank=function(){return this._isBlank},r.prototype.setBlank=function(e){this._isBlank=e},r}();qf(_A);var pa=_A,WN=0,$N=function(){function r(e){this.categories=e.categories||[],this._needCollect=e.needCollect,this._deduplication=e.deduplication,this.uid=++WN}return r.createByAxisModel=function(e){var t=e.option,a=t.data,i=a&&G(a,UN);return new r({categories:i,needCollect:!i,deduplication:t.dedplication!==!1})},r.prototype.getOrdinal=function(e){return this._getOrCreateMap().get(e)},r.prototype.parseAndCollect=function(e){var t,a=this._needCollect;if(!$(e)&&!a)return e;if(a&&!this._deduplication)return t=this.categories.length,this.categories[t]=e,t;var i=this._getOrCreateMap();return t=i.get(e),t==null&&(a?(t=this.categories.length,this.categories[t]=e,i.set(e,t)):t=NaN),t},r.prototype._getOrCreateMap=function(){return this._map||(this._map=q(this.categories))},r}();function UN(r){return J(r)&&r.value!=null?r.value:r+""}var Xp=$N;function qp(r){return r.type==="interval"||r.type==="log"}function YN(r,e,t,a){var i={},n=r[1]-r[0],o=i.interval=Lb(n/e,!0);t!=null&&oa&&(o=i.interval=a);var s=i.intervalPrecision=SA(o),l=i.niceTickExtent=[$t(Math.ceil(r[0]/o)*o,s),$t(Math.floor(r[1]/o)*o,s)];return ZN(l,r),i}function Ov(r){var e=Math.pow(10,Qd(r)),t=r/e;return t?t===2?t=3:t===3?t=5:t*=2:t=1,$t(t*e)}function SA(r){return Rr(r)+2}function S_(r,e,t){r[e]=Math.max(Math.min(r[e],t[1]),t[0])}function ZN(r,e){!isFinite(r[0])&&(r[0]=e[0]),!isFinite(r[1])&&(r[1]=e[1]),S_(r,0,e),S_(r,1,e),r[0]>r[1]&&(r[0]=r[1])}function gh(r,e){return r>=e[0]&&r<=e[1]}function yh(r,e){return e[1]===e[0]?.5:(r-e[0])/(e[1]-e[0])}function mh(r,e){return r*(e[1]-e[0])+e[0]}var xA=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;a.type="ordinal";var i=a.getSetting("ordinalMeta");return i||(i=new Xp({})),z(i)&&(i=new Xp({categories:G(i,function(n){return J(n)?n.value:n})})),a._ordinalMeta=i,a._extent=a.getSetting("extent")||[0,i.categories.length-1],a}return e.prototype.parse=function(t){return t==null?NaN:$(t)?this._ordinalMeta.getOrdinal(t):Math.round(t)},e.prototype.contain=function(t){return t=this.parse(t),gh(t,this._extent)&&this._ordinalMeta.categories[t]!=null},e.prototype.normalize=function(t){return t=this._getTickNumber(this.parse(t)),yh(t,this._extent)},e.prototype.scale=function(t){return t=Math.round(mh(t,this._extent)),this.getRawOrdinalNumber(t)},e.prototype.getTicks=function(){for(var t=[],a=this._extent,i=a[0];i<=a[1];)t.push({value:i}),i++;return t},e.prototype.getMinorTicks=function(t){},e.prototype.setSortInfo=function(t){if(t==null){this._ordinalNumbersByTick=this._ticksByOrdinalNumber=null;return}for(var a=t.ordinalNumbers,i=this._ordinalNumbersByTick=[],n=this._ticksByOrdinalNumber=[],o=0,s=this._ordinalMeta.categories.length,l=Math.min(s,a.length);o=0&&t=0&&t=t},e.prototype.getOrdinalMeta=function(){return this._ordinalMeta},e.prototype.calcNiceTicks=function(){},e.prototype.calcNiceExtent=function(){},e.type="ordinal",e}(pa);pa.registerClass(xA);var Vg=xA,Si=$t,wA=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type="interval",t._interval=0,t._intervalPrecision=2,t}return e.prototype.parse=function(t){return t},e.prototype.contain=function(t){return gh(t,this._extent)},e.prototype.normalize=function(t){return yh(t,this._extent)},e.prototype.scale=function(t){return mh(t,this._extent)},e.prototype.setExtent=function(t,a){var i=this._extent;isNaN(t)||(i[0]=parseFloat(t)),isNaN(a)||(i[1]=parseFloat(a))},e.prototype.unionExtent=function(t){var a=this._extent;t[0]a[1]&&(a[1]=t[1]),this.setExtent(a[0],a[1])},e.prototype.getInterval=function(){return this._interval},e.prototype.setInterval=function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=SA(t)},e.prototype.getTicks=function(t){var a=this._interval,i=this._extent,n=this._niceExtent,o=this._intervalPrecision,s=[];if(!a)return s;var l=1e4;i[0]l)return[];var f=s.length?s[s.length-1].value:n[1];return i[1]>f&&(t?s.push({value:Si(f+a,o)}):s.push({value:i[1]})),s},e.prototype.getMinorTicks=function(t){for(var a=this.getTicks(!0),i=[],n=this.getExtent(),o=1;on[0]&&c0&&(n=n===null?s:Math.min(n,s))}t[a]=n}}return t}function CA(r){var e=KN(r),t=[];return A(r,function(a){var i=a.coordinateSystem,n=i.getBaseAxis(),o=n.getExtent(),s;if(n.type==="category")s=n.getBandWidth();else if(n.type==="value"||n.type==="time"){var l=n.dim+"_"+n.index,u=e[l],f=Math.abs(o[1]-o[0]),h=n.scale.getExtent(),v=Math.abs(h[1]-h[0]);s=u?f/v*u:f}else{var c=a.getData();s=Math.abs(o[1]-o[0])/c.count()}var p=H(a.get("barWidth"),s),d=H(a.get("barMaxWidth"),s),g=H(a.get("barMinWidth")||(IA(a)?.5:1),s),y=a.get("barGap"),m=a.get("barCategoryGap");t.push({bandWidth:s,barWidth:p,barMaxWidth:d,barMinWidth:g,barGap:y,barCategoryGap:m,axisKey:zg(n),stackId:Bg(a)})}),AA(t)}function AA(r){var e={};A(r,function(a,i){var n=a.axisKey,o=a.bandWidth,s=e[n]||{bandWidth:o,remainedWidth:o,autoWidthCount:0,categoryGap:null,gap:"20%",stacks:{}},l=s.stacks;e[n]=s;var u=a.stackId;l[u]||s.autoWidthCount++,l[u]=l[u]||{width:0,maxWidth:0};var f=a.barWidth;f&&!l[u].width&&(l[u].width=f,f=Math.min(s.remainedWidth,f),s.remainedWidth-=f);var h=a.barMaxWidth;h&&(l[u].maxWidth=h);var v=a.barMinWidth;v&&(l[u].minWidth=v);var c=a.barGap;c!=null&&(s.gap=c);var p=a.barCategoryGap;p!=null&&(s.categoryGap=p)});var t={};return A(e,function(a,i){t[i]={};var n=a.stacks,o=a.bandWidth,s=a.categoryGap;if(s==null){var l=yt(n).length;s=Math.max(35-l*4,15)+"%"}var u=H(s,o),f=H(a.gap,1),h=a.remainedWidth,v=a.autoWidthCount,c=(h-u)/(v+(v-1)*f);c=Math.max(c,0),A(n,function(y){var m=y.maxWidth,_=y.minWidth;if(y.width){var S=y.width;m&&(S=Math.min(S,m)),_&&(S=Math.max(S,_)),y.width=S,h-=S+f*S,v--}else{var S=c;m&&mS&&(S=_),S!==c&&(y.width=S,h-=S+f*S,v--)}}),c=(h-u)/(v+(v-1)*f),c=Math.max(c,0);var p=0,d;A(n,function(y,m){y.width||(y.width=c),d=y,p+=y.width*(1+f)}),d&&(p-=d.width*f);var g=-p/2;A(n,function(y,m){t[i][m]=t[i][m]||{bandWidth:o,offset:g,width:y.width},g+=y.width*(1+f)})}),t}function QN(r,e,t){if(r&&e){var a=r[zg(e)];return a!=null&&t!=null?a[Bg(t)]:a}}function MA(r,e){var t=TA(r,e),a=CA(t);A(t,function(i){var n=i.getData(),o=i.coordinateSystem,s=o.getBaseAxis(),l=Bg(i),u=a[zg(s)][l],f=u.offset,h=u.width;n.setLayout({bandWidth:u.bandWidth,offset:f,size:h})})}function DA(r){return{seriesType:r,plan:mo(),reset:function(e){if(!!LA(e)){var t=e.getData(),a=e.coordinateSystem,i=a.getBaseAxis(),n=a.getOtherAxis(i),o=t.getDimensionIndex(t.mapDimension(n.dim)),s=t.getDimensionIndex(t.mapDimension(i.dim)),l=e.get("showBackground",!0),u=t.mapDimension(n.dim),f=t.getCalculationInfo("stackResultDimension"),h=Za(t,u)&&!!t.getCalculationInfo("stackedOnSeries"),v=n.isHorizontal(),c=JN(i,n),p=IA(e),d=e.get("barMinHeight")||0,g=f&&t.getDimensionIndex(f),y=t.getLayout("size"),m=t.getLayout("offset");return{progress:function(_,S){for(var w=_.count,x=p&&kr(w*3),b=p&&l&&kr(w*3),T=p&&kr(w),C=a.master.getRect(),M=v?C.width:C.height,D,L=S.getStore(),I=0;(D=_.next())!=null;){var P=L.get(h?g:o,D),R=L.get(s,D),E=c,N=void 0;h&&(N=+P-L.get(o,D));var k=void 0,V=void 0,F=void 0,W=void 0;if(v){var Z=a.dataToPoint([P,R]);if(h){var tt=a.dataToPoint([N,R]);E=tt[0]}k=E,V=Z[1]+m,F=Z[0]-E,W=y,Math.abs(F)>>1;r[i][1]i&&(this._approxInterval=i);var s=Jl.length,l=Math.min(jN(Jl,this._approxInterval,0,s),s-1);this._interval=Jl[l][1],this._minLevelUnit=Jl[Math.max(l-1,0)][0]},e.prototype.parse=function(t){return xt(t)?t:+Gr(t)},e.prototype.contain=function(t){return gh(this.parse(t),this._extent)},e.prototype.normalize=function(t){return yh(this.parse(t),this._extent)},e.prototype.scale=function(t){return mh(t,this._extent)},e.type="time",e}(Xa),Jl=[["second",dg],["minute",gg],["hour",ms],["quarter-day",ms*6],["half-day",ms*12],["day",er*1.2],["half-week",er*3.5],["week",er*7],["month",er*31],["quarter",er*95],["half-year",u0/2],["year",u0]];function tV(r,e,t,a){var i=Gr(e),n=Gr(t),o=function(p){return h0(i,p,a)===h0(n,p,a)},s=function(){return o("year")},l=function(){return s()&&o("month")},u=function(){return l()&&o("day")},f=function(){return u()&&o("hour")},h=function(){return f()&&o("minute")},v=function(){return h()&&o("second")},c=function(){return v()&&o("millisecond")};switch(r){case"year":return s();case"month":return l();case"day":return u();case"hour":return f();case"minute":return h();case"second":return v();case"millisecond":return c()}}function eV(r,e){return r/=er,r>16?16:r>7.5?7:r>3.5?4:r>1.5?2:1}function rV(r){var e=30*er;return r/=e,r>6?6:r>3?3:r>2?2:1}function aV(r){return r/=ms,r>12?12:r>6?6:r>3.5?4:r>2?2:1}function x_(r,e){return r/=e?gg:dg,r>30?30:r>20?20:r>15?15:r>10?10:r>5?5:r>2?2:1}function iV(r){return Lb(r,!0)}function nV(r,e,t){var a=new Date(r);switch(Yn(e)){case"year":case"month":a[$T(t)](0);case"day":a[UT(t)](1);case"hour":a[YT(t)](0);case"minute":a[ZT(t)](0);case"second":a[XT(t)](0),a[qT(t)](0)}return a.getTime()}function oV(r,e,t,a){var i=1e4,n=HT,o=0;function s(M,D,L,I,P,R,E){for(var N=new Date(D),k=D,V=N[I]();k1&&R===0&&L.unshift({value:L[0].value-k})}}for(var R=0;R=a[0]&&m<=a[1]&&h++)}var _=(a[1]-a[0])/e;if(h>_*1.5&&v>_/1.5||(u.push(g),h>_||r===n[c]))break}f=[]}}}for(var S=It(G(u,function(M){return It(M,function(D){return D.value>=a[0]&&D.value<=a[1]&&!D.notAdd})}),function(M){return M.length>0}),w=[],x=S.length-1,c=0;c0;)n*=10;var s=[$t(uV(a[0]/n)*n),$t(lV(a[1]/n)*n)];this._interval=n,this._niceExtent=s}},e.prototype.calcNiceExtent=function(t){ws.calcNiceExtent.call(this,t),this._fixMin=t.fixMin,this._fixMax=t.fixMax},e.prototype.parse=function(t){return t},e.prototype.contain=function(t){return t=We(t)/We(this.base),gh(t,this._extent)},e.prototype.normalize=function(t){return t=We(t)/We(this.base),yh(t,this._extent)},e.prototype.scale=function(t){return t=mh(t,this._extent),jl(this.base,t)},e.type="log",e}(pa),EA=Gg.prototype;EA.getMinorTicks=ws.getMinorTicks;EA.getLabel=ws.getLabel;function tu(r,e){return sV(r,Rr(e))}pa.registerClass(Gg);var fV=Gg,hV=function(){function r(e,t,a){this._prepareParams(e,t,a)}return r.prototype._prepareParams=function(e,t,a){a[1]0&&l>0&&!u&&(s=0),s<0&&l<0&&!f&&(l=0));var v=this._determinedMin,c=this._determinedMax;return v!=null&&(s=v,u=!0),c!=null&&(l=c,f=!0),{min:s,max:l,minFixed:u,maxFixed:f,isBlank:h}},r.prototype.modifyDataMinMax=function(e,t){this[cV[e]]=t},r.prototype.setDeterminedMinMax=function(e,t){var a=vV[e];this[a]=t},r.prototype.freeze=function(){this.frozen=!0},r}(),vV={min:"_determinedMin",max:"_determinedMax"},cV={min:"_dataMin",max:"_dataMax"};function kA(r,e,t){var a=r.rawExtentInfo;return a||(a=new hV(r,e,t),r.rawExtentInfo=a,a)}function eu(r,e){return e==null?null:Ms(e)?NaN:r.parse(e)}function OA(r,e){var t=r.type,a=kA(r,e,r.getExtent()).calculate();r.setBlank(a.isBlank);var i=a.min,n=a.max,o=e.ecModel;if(o&&t==="time"){var s=TA("bar",o),l=!1;if(A(s,function(h){l=l||h.getBaseAxis()===e.axis}),l){var u=CA(s),f=pV(i,n,e,u);i=f.min,n=f.max}}return{extent:[i,n],fixMin:a.minFixed,fixMax:a.maxFixed}}function pV(r,e,t,a){var i=t.axis.getExtent(),n=i[1]-i[0],o=QN(a,t.axis);if(o===void 0)return{min:r,max:e};var s=1/0;A(o,function(c){s=Math.min(c.offset,s)});var l=-1/0;A(o,function(c){l=Math.max(c.offset+c.width,l)}),s=Math.abs(s),l=Math.abs(l);var u=s+l,f=e-r,h=1-(s+l)/n,v=f/h-f;return e+=v*(l/u),r-=v*(s/u),{min:r,max:e}}function jn(r,e){var t=e,a=OA(r,t),i=a.extent,n=t.get("splitNumber");r instanceof fV&&(r.base=t.get("logBase"));var o=r.type,s=t.get("interval"),l=o==="interval"||o==="time";r.setExtent(i[0],i[1]),r.calcNiceExtent({splitNumber:n,fixMin:a.fixMin,fixMax:a.fixMax,minInterval:l?t.get("minInterval"):null,maxInterval:l?t.get("maxInterval"):null}),s!=null&&r.setInterval&&r.setInterval(s)}function _h(r,e){if(e=e||r.get("type"),e)switch(e){case"category":return new Vg({ordinalMeta:r.getOrdinalMeta?r.getOrdinalMeta():r.getCategories(),extent:[1/0,-1/0]});case"time":return new RA({locale:r.ecModel.getLocaleModel(),useUTC:r.ecModel.get("useUTC")});default:return new(pa.getClass(e)||Xa)}}function dV(r){var e=r.scale.getExtent(),t=e[0],a=e[1];return!(t>0&&a>0||t<0&&a<0)}function vl(r){var e=r.getLabelModel().get("formatter"),t=r.type==="category"?r.scale.getExtent()[0]:null;return r.scale.type==="time"?function(a){return function(i,n){return r.scale.getFormattedLabel(i,n,a)}}(e):$(e)?function(a){return function(i){var n=r.scale.getLabel(i),o=a.replace("{value}",n!=null?n:"");return o}}(e):K(e)?function(a){return function(i,n){return t!=null&&(n=i.value-t),a(Fg(r,i),n,i.level!=null?{level:i.level}:null)}}(e):function(a){return r.scale.getLabel(a)}}function Fg(r,e){return r.type==="category"?r.scale.getLabel(e):e.value}function gV(r){var e=r.model,t=r.scale;if(!(!e.get(["axisLabel","show"])||t.isBlank())){var a,i,n=t.getExtent();t instanceof Vg?i=t.count():(a=t.getTicks(),i=a.length);var o=r.getLabelModel(),s=vl(r),l,u=1;i>40&&(u=Math.ceil(i/40));for(var f=0;fr[1]&&(r[1]=i[1])})}var cl=function(){function r(){}return r.prototype.getNeedCrossZero=function(){var e=this.option;return!e.scale},r.prototype.getCoordSysModel=function(){},r}();function xZ(r,e){return e=e||{},Bt(r,null,null,e.state!=="normal")}var _V=1e-8;function b_(r,e){return Math.abs(r-e)<_V}function Ri(r,e,t){var a=0,i=r[0];if(!i)return!1;for(var n=1;ni&&(a=o,i=l)}if(a)return xV(a.exterior);var u=this.getBoundingRect();return[u.x+u.width/2,u.y+u.height/2]},e.prototype.getBoundingRect=function(t){var a=this._rect;if(a&&!t)return a;var i=[1/0,1/0],n=[-1/0,-1/0],o=this.geometries;return A(o,function(s){s.type==="polygon"?T_(s.exterior,i,n,t):A(s.points,function(l){T_(l,i,n,t)})}),isFinite(i[0])&&isFinite(i[1])&&isFinite(n[0])&&isFinite(n[1])||(i[0]=i[1]=n[0]=n[1]=0),a=new ut(i[0],i[1],n[0]-i[0],n[1]-i[1]),t||(this._rect=a),a},e.prototype.contain=function(t){var a=this.getBoundingRect(),i=this.geometries;if(!a.contain(t[0],t[1]))return!1;t:for(var n=0,o=i.length;n>1^-(s&1),l=l>>1^-(l&1),s+=i,l+=n,i=s,n=l,a.push([s/t,l/t])}return a}function TV(r,e){return r=bV(r),G(It(r.features,function(t){return t.geometry&&t.properties&&t.geometry.coordinates.length>0}),function(t){var a=t.properties,i=t.geometry,n=[];switch(i.type){case"Polygon":var o=i.coordinates;n.push(new C_(o[0],o.slice(1)));break;case"MultiPolygon":A(i.coordinates,function(l){l[0]&&n.push(new C_(l[0],l.slice(1)))});break;case"LineString":n.push(new A_([i.coordinates]));break;case"MultiLineString":n.push(new A_(i.coordinates))}var s=new BA(a[e||"name"],n,a.cp);return s.properties=a,s})}var Hs=bt();function CV(r){return r.type==="category"?MV(r):LV(r)}function AV(r,e){return r.type==="category"?DV(r,e):{ticks:G(r.scale.getTicks(),function(t){return t.value})}}function MV(r){var e=r.getLabelModel(),t=GA(r,e);return!e.get("show")||r.scale.isBlank()?{labels:[],labelCategoryInterval:t.labelCategoryInterval}:t}function GA(r,e){var t=FA(r,"labels"),a=Hg(e),i=HA(t,a);if(i)return i;var n,o;return K(a)?n=UA(r,a):(o=a==="auto"?IV(r):a,n=$A(r,o)),WA(t,a,{labels:n,labelCategoryInterval:o})}function DV(r,e){var t=FA(r,"ticks"),a=Hg(e),i=HA(t,a);if(i)return i;var n,o;if((!e.get("show")||r.scale.isBlank())&&(n=[]),K(a))n=UA(r,a,!0);else if(a==="auto"){var s=GA(r,r.getLabelModel());o=s.labelCategoryInterval,n=G(s.labels,function(l){return l.tickValue})}else o=a,n=$A(r,o,!0);return WA(t,a,{ticks:n,tickCategoryInterval:o})}function LV(r){var e=r.scale.getTicks(),t=vl(r);return{labels:G(e,function(a,i){return{level:a.level,formattedLabel:t(a,i),rawLabel:r.scale.getLabel(a),tickValue:a.value}})}}function FA(r,e){return Hs(r)[e]||(Hs(r)[e]=[])}function HA(r,e){for(var t=0;t40&&(s=Math.max(1,Math.floor(o/40)));for(var l=n[0],u=r.dataToCoord(l+1)-r.dataToCoord(l),f=Math.abs(u*Math.cos(a)),h=Math.abs(u*Math.sin(a)),v=0,c=0;l<=n[1];l+=s){var p=0,d=0,g=rl(t({value:l}),e.font,"center","top");p=g.width*1.3,d=g.height*1.3,v=Math.max(v,p,7),c=Math.max(c,d,7)}var y=v/f,m=c/h;isNaN(y)&&(y=1/0),isNaN(m)&&(m=1/0);var _=Math.max(0,Math.floor(Math.min(y,m))),S=Hs(r.model),w=r.getExtent(),x=S.lastAutoInterval,b=S.lastTickCount;return x!=null&&b!=null&&Math.abs(x-_)<=1&&Math.abs(b-o)<=1&&x>_&&S.axisExtent0===w[0]&&S.axisExtent1===w[1]?_=x:(S.lastTickCount=o,S.lastAutoInterval=_,S.axisExtent0=w[0],S.axisExtent1=w[1]),_}function RV(r){var e=r.getLabelModel();return{axisRotate:r.getRotate?r.getRotate():r.isHorizontal&&!r.isHorizontal()?90:0,labelRotate:e.get("rotate")||0,font:e.getFont()}}function $A(r,e,t){var a=vl(r),i=r.scale,n=i.getExtent(),o=r.getLabelModel(),s=[],l=Math.max((e||0)+1,1),u=n[0],f=i.count();u!==0&&l>1&&f/l>2&&(u=Math.round(Math.ceil(u/l)*l));var h=NA(r),v=o.get("showMinLabel")||h,c=o.get("showMaxLabel")||h;v&&u!==n[0]&&d(n[0]);for(var p=u;p<=n[1];p+=l)d(p);c&&p-l!==n[1]&&d(n[1]);function d(g){var y={value:g};s.push(t?g:{formattedLabel:a(y),rawLabel:i.getLabel(y),tickValue:g})}return s}function UA(r,e,t){var a=r.scale,i=vl(r),n=[];return A(a.getTicks(),function(o){var s=a.getLabel(o),l=o.value;e(o.value,s)&&n.push(t?l:{formattedLabel:i(o),rawLabel:s,tickValue:l})}),n}var M_=[0,1],EV=function(){function r(e,t,a){this.onBand=!1,this.inverse=!1,this.dim=e,this.scale=t,this._extent=a||[0,0]}return r.prototype.contain=function(e){var t=this._extent,a=Math.min(t[0],t[1]),i=Math.max(t[0],t[1]);return e>=a&&e<=i},r.prototype.containData=function(e){return this.scale.contain(e)},r.prototype.getExtent=function(){return this._extent.slice()},r.prototype.getPixelPrecision=function(e){return Mb(e||this.scale.getExtent(),this._extent)},r.prototype.setExtent=function(e,t){var a=this._extent;a[0]=e,a[1]=t},r.prototype.dataToCoord=function(e,t){var a=this._extent,i=this.scale;return e=i.normalize(e),this.onBand&&i.type==="ordinal"&&(a=a.slice(),D_(a,i.count())),Lt(e,M_,a,t)},r.prototype.coordToData=function(e,t){var a=this._extent,i=this.scale;this.onBand&&i.type==="ordinal"&&(a=a.slice(),D_(a,i.count()));var n=Lt(e,a,M_,t);return this.scale.scale(n)},r.prototype.pointToData=function(e,t){},r.prototype.getTicksCoords=function(e){e=e||{};var t=e.tickModel||this.getTickModel(),a=AV(this,t),i=a.ticks,n=G(i,function(s){return{coord:this.dataToCoord(this.scale.type==="ordinal"?this.scale.getRawOrdinalNumber(s):s),tickValue:s}},this),o=t.get("alignWithLabel");return kV(this,n,o,e.clamp),n},r.prototype.getMinorTicksCoords=function(){if(this.scale.type==="ordinal")return[];var e=this.model.getModel("minorTick"),t=e.get("splitNumber");t>0&&t<100||(t=5);var a=this.scale.getMinorTicks(t),i=G(a,function(n){return G(n,function(o){return{coord:this.dataToCoord(o),tickValue:o}},this)},this);return i},r.prototype.getViewLabels=function(){return CV(this).labels},r.prototype.getLabelModel=function(){return this.model.getModel("axisLabel")},r.prototype.getTickModel=function(){return this.model.getModel("axisTick")},r.prototype.getBandWidth=function(){var e=this._extent,t=this.scale.getExtent(),a=t[1]-t[0]+(this.onBand?1:0);a===0&&(a=1);var i=Math.abs(e[1]-e[0]);return Math.abs(i)/a},r.prototype.calculateCategoryInterval=function(){return PV(this)},r}();function D_(r,e){var t=r[1]-r[0],a=e,i=t/a/2;r[0]+=i,r[1]-=i}function kV(r,e,t,a){var i=e.length;if(!r.onBand||t||!i)return;var n=r.getExtent(),o,s;if(i===1)e[0].coord=n[0],o=e[1]={coord:n[0]};else{var l=e[i-1].tickValue-e[0].tickValue,u=(e[i-1].coord-e[0].coord)/l;A(e,function(c){c.coord-=u/2});var f=r.scale.getExtent();s=1+f[1]-e[i-1].tickValue,o={coord:e[i-1].coord+u*s},e.push(o)}var h=n[0]>n[1];v(e[0].coord,n[0])&&(a?e[0].coord=n[0]:e.shift()),a&&v(n[0],e[0].coord)&&e.unshift({coord:n[0]}),v(n[1],o.coord)&&(a?o.coord=n[1]:e.pop()),a&&v(o.coord,n[1])&&e.push({coord:n[1]});function v(c,p){return c=$t(c),p=$t(p),h?c>p:ci&&(i+=Fo);var c=Math.atan2(s,o);if(c<0&&(c+=Fo),c>=a&&c<=i||c+Fo>=a&&c+Fo<=i)return l[0]=f,l[1]=h,u-t;var p=t*Math.cos(a)+r,d=t*Math.sin(a)+e,g=t*Math.cos(i)+r,y=t*Math.sin(i)+e,m=(p-o)*(p-o)+(d-s)*(d-s),_=(g-o)*(g-o)+(y-s)*(y-s);return m<_?(l[0]=p,l[1]=d,Math.sqrt(m)):(l[0]=g,l[1]=y,Math.sqrt(_))}function Sf(r,e,t,a,i,n,o,s){var l=i-r,u=n-e,f=t-r,h=a-e,v=Math.sqrt(f*f+h*h);f/=v,h/=v;var c=l*f+u*h,p=c/v;s&&(p=Math.min(Math.max(p,0),1)),p*=v;var d=o[0]=r+p*f,g=o[1]=e+p*h;return Math.sqrt((d-i)*(d-i)+(g-n)*(g-n))}function YA(r,e,t,a,i,n,o){t<0&&(r=r+t,t=-t),a<0&&(e=e+a,a=-a);var s=r+t,l=e+a,u=o[0]=Math.min(Math.max(i,r),s),f=o[1]=Math.min(Math.max(n,e),l);return Math.sqrt((u-i)*(u-i)+(f-n)*(f-n))}var cr=[];function BV(r,e,t){var a=YA(e.x,e.y,e.width,e.height,r.x,r.y,cr);return t.set(cr[0],cr[1]),a}function zV(r,e,t){for(var a=0,i=0,n=0,o=0,s,l,u=1/0,f=e.data,h=r.x,v=r.y,c=0;c0){e=e/180*Math.PI,dr.fromArray(r[0]),kt.fromArray(r[1]),Yt.fromArray(r[2]),ot.sub(Or,dr,kt),ot.sub(Pr,Yt,kt);var t=Or.len(),a=Pr.len();if(!(t<.001||a<.001)){Or.scale(1/t),Pr.scale(1/a);var i=Or.dot(Pr),n=Math.cos(e);if(n1&&ot.copy(we,Yt),we.toArray(r[1])}}}}function GV(r,e,t){if(t<=180&&t>0){t=t/180*Math.PI,dr.fromArray(r[0]),kt.fromArray(r[1]),Yt.fromArray(r[2]),ot.sub(Or,kt,dr),ot.sub(Pr,Yt,kt);var a=Or.len(),i=Pr.len();if(!(a<.001||i<.001)){Or.scale(1/a),Pr.scale(1/i);var n=Or.dot(e),o=Math.cos(t);if(n=l)ot.copy(we,Yt);else{we.scaleAndAdd(Pr,s/Math.tan(Math.PI/2-f));var h=Yt.x!==kt.x?(we.x-kt.x)/(Yt.x-kt.x):(we.y-kt.y)/(Yt.y-kt.y);if(isNaN(h))return;h<0?ot.copy(we,kt):h>1&&ot.copy(we,Yt)}we.toArray(r[1])}}}}function I_(r,e,t,a){var i=t==="normal",n=i?r:r.ensureState(t);n.ignore=e;var o=a.get("smooth");o&&o===!0&&(o=.3),n.shape=n.shape||{},o>0&&(n.shape.smooth=o);var s=a.getModel("lineStyle").getLineStyle();i?r.useStyle(s):n.style=s}function FV(r,e){var t=e.smooth,a=e.points;if(!!a)if(r.moveTo(a[0][0],a[0][1]),t>0&&a.length>=3){var i=Da(a[0],a[1]),n=Da(a[1],a[2]);if(!i||!n){r.lineTo(a[1][0],a[1][1]),r.lineTo(a[2][0],a[2][1]);return}var o=Math.min(i,n)*t,s=Mu([],a[1],a[0],o/i),l=Mu([],a[1],a[2],o/n),u=Mu([],s,l,.5);r.bezierCurveTo(s[0],s[1],s[0],s[1],u[0],u[1]),r.bezierCurveTo(l[0],l[1],l[0],l[1],a[2][0],a[2][1])}else for(var f=1;f0&&n&&w(-f/o,0,o);var d=r[0],g=r[o-1],y,m;_(),y<0&&x(-y,.8),m<0&&x(m,.8),_(),S(y,m,1),S(m,y,-1),_(),y<0&&b(-y),m<0&&b(m);function _(){y=d.rect[e]-a,m=i-g.rect[e]-g.rect[t]}function S(T,C,M){if(T<0){var D=Math.min(C,-T);if(D>0){w(D*M,0,o);var L=D+T;L<0&&x(-L*M,1)}else x(-T*M,1)}}function w(T,C,M){T!==0&&(u=!0);for(var D=C;D0)for(var L=0;L0;L--){var E=M[L-1]*R;w(-E,L,o)}}}function b(T){var C=T<0?-1:1;T=Math.abs(T);for(var M=Math.ceil(T/(o-1)),D=0;D0?w(M,0,D+1):w(-M,o-D-1,o),T-=M,T<=0)return}return u}function HV(r,e,t,a){return qA(r,"x","width",e,t,a)}function KA(r,e,t,a){return qA(r,"y","height",e,t,a)}function QA(r){var e=[];r.sort(function(d,g){return g.priority-d.priority});var t=new ut(0,0,0,0);function a(d){if(!d.ignore){var g=d.ensureState("emphasis");g.ignore==null&&(g.ignore=!1)}d.ignore=!0}for(var i=0;i=0&&a.attr(n.oldLayoutSelect),ht(v,"emphasis")>=0&&a.attr(n.oldLayoutEmphasis)),wt(a,u,t,l)}else if(a.attr(u),!ho(a).valueAnimation){var h=vt(a.style.opacity,1);a.style.opacity=0,Gt(a,{style:{opacity:h}},t,l)}if(n.oldLayout=u,a.states.select){var c=n.oldLayoutSelect={};ru(c,u,au),ru(c,a.states.select,au)}if(a.states.emphasis){var p=n.oldLayoutEmphasis={};ru(p,u,au),ru(p,a.states.emphasis,au)}VT(a,l,f,t,t)}if(i&&!i.ignore&&!i.invisible){var n=UV(i),o=n.oldLayout,d={points:i.shape.points};o?(i.attr({shape:o}),wt(i,{shape:d},t)):(i.setShape(d),i.style.strokePercent=0,Gt(i,{style:{strokePercent:1}},t)),n.oldLayout=d}},r}(),ZV=YV,zv=bt();function XV(r){r.registerUpdateLifecycle("series:beforeupdate",function(e,t,a){var i=zv(t).labelManager;i||(i=zv(t).labelManager=new ZV),i.clearLabels()}),r.registerUpdateLifecycle("series:layoutlabels",function(e,t,a){var i=zv(t).labelManager;a.updatedSeries.forEach(function(n){i.addLabelsOfSeries(t.getViewOfSeriesModel(n))}),i.updateLayoutConfig(t),i.layout(t),i.processLabelsOverall()})}var Gv=Math.sin,Fv=Math.cos,JA=Math.PI,wi=Math.PI*2,qV=180/JA,KV=function(){function r(){}return r.prototype.reset=function(e){this._start=!0,this._d=[],this._str="",this._p=Math.pow(10,e||4)},r.prototype.moveTo=function(e,t){this._add("M",e,t)},r.prototype.lineTo=function(e,t){this._add("L",e,t)},r.prototype.bezierCurveTo=function(e,t,a,i,n,o){this._add("C",e,t,a,i,n,o)},r.prototype.quadraticCurveTo=function(e,t,a,i){this._add("Q",e,t,a,i)},r.prototype.arc=function(e,t,a,i,n,o){this.ellipse(e,t,a,a,0,i,n,o)},r.prototype.ellipse=function(e,t,a,i,n,o,s,l){var u=s-o,f=!l,h=Math.abs(u),v=Ea(h-wi)||(f?u>=wi:-u>=wi),c=u>0?u%wi:u%wi+wi,p=!1;v?p=!0:Ea(h)?p=!1:p=c>=JA==!!f;var d=e+a*Fv(o),g=t+i*Gv(o);this._start&&this._add("M",d,g);var y=Math.round(n*qV);if(v){var m=1/this._p,_=(f?1:-1)*(wi-m);this._add("A",a,i,y,1,+f,e+a*Fv(o+_),t+i*Gv(o+_)),m>.01&&this._add("A",a,i,y,0,+f,d,g)}else{var S=e+a*Fv(s),w=t+i*Gv(s);this._add("A",a,i,y,+p,+f,S,w)}},r.prototype.rect=function(e,t,a,i){this._add("M",e,t),this._add("l",a,0),this._add("l",0,i),this._add("l",-a,0),this._add("Z")},r.prototype.closePath=function(){this._d.length>0&&this._add("Z")},r.prototype._add=function(e,t,a,i,n,o,s,l,u){for(var f=[],h=this._p,v=1;v"}function nB(r){return""}function Ug(r,e){e=e||{};var t=e.newline?` +`:"";function a(i){var n=i.children,o=i.tag,s=i.attrs;return iB(o,s)+(i.text||"")+(n?""+t+G(n,function(l){return a(l)}).join(t)+t:"")+nB(o)}return a(r)}function oB(r,e,t){t=t||{};var a=t.newline?` +`:"",i=" {"+a,n=a+"}",o=G(yt(r),function(l){return l+i+G(yt(r[l]),function(u){return u+":"+r[l][u]+";"}).join(a)+n}).join(a),s=G(yt(e),function(l){return"@keyframes "+l+i+G(yt(e[l]),function(u){return u+i+G(yt(e[l][u]),function(f){var h=e[l][u][f];return f==="d"&&(h='path("'+h+'")'),f+":"+h+";"}).join(a)+n}).join(a)+n}).join(a);return!o&&!s?"":[""].join(a)}function Jp(r){return{zrId:r,shadowCache:{},patternCache:{},gradientCache:{},clipPathCache:{},defs:{},cssNodes:{},cssAnims:{},cssClassIdx:0,cssAnimIdx:0,shadowIdx:0,gradientIdx:0,patternIdx:0,clipPathIdx:0}}function R_(r,e,t,a){return ee("svg","root",{width:r,height:e,xmlns:tM,"xmlns:xlink":eM,version:"1.1",baseProfile:"full",viewBox:a?"0 0 "+r+" "+e:!1},t)}var E_={cubicIn:"0.32,0,0.67,0",cubicOut:"0.33,1,0.68,1",cubicInOut:"0.65,0,0.35,1",quadraticIn:"0.11,0,0.5,0",quadraticOut:"0.5,1,0.89,1",quadraticInOut:"0.45,0,0.55,1",quarticIn:"0.5,0,0.75,0",quarticOut:"0.25,1,0.5,1",quarticInOut:"0.76,0,0.24,1",quinticIn:"0.64,0,0.78,0",quinticOut:"0.22,1,0.36,1",quinticInOut:"0.83,0,0.17,1",sinusoidalIn:"0.12,0,0.39,0",sinusoidalOut:"0.61,1,0.88,1",sinusoidalInOut:"0.37,0,0.63,1",exponentialIn:"0.7,0,0.84,0",exponentialOut:"0.16,1,0.3,1",exponentialInOut:"0.87,0,0.13,1",circularIn:"0.55,0,1,0.45",circularOut:"0,0.55,0.45,1",circularInOut:"0.85,0,0.15,1"},Ai="transform-origin";function sB(r,e,t){var a=B({},r.shape);B(a,e),r.buildPath(t,a);var i=new jA;return i.reset(gb(r)),t.rebuildPath(i,1),i.generateStr(),i.getStr()}function lB(r,e){var t=e.originX,a=e.originY;(t||a)&&(r[Ai]=t+"px "+a+"px")}var uB={fill:"fill",opacity:"opacity",lineWidth:"stroke-width",lineDashOffset:"stroke-dashoffset"};function aM(r,e){var t=e.zrId+"-ani-"+e.cssAnimIdx++;return e.cssAnims[t]=r,t}function fB(r,e,t){var a=r.shape.paths,i={},n,o;if(A(a,function(l){var u=Jp(t.zrId);u.animation=!0,Sh(l,{},u,!0);var f=u.cssAnims,h=u.cssNodes,v=yt(f),c=v.length;if(!!c){o=v[c-1];var p=f[o];for(var d in p){var g=p[d];i[d]=i[d]||{d:""},i[d].d+=g.d||""}for(var y in h){var m=h[y].animation;m.indexOf(o)>=0&&(n=m)}}}),!!n){e.d=!1;var s=aM(i,t);return n.replace(o,s)}}function k_(r){return $(r)?E_[r]?"cubic-bezier("+E_[r]+")":Yd(r)?r:"":""}function Sh(r,e,t,a){var i=r.animators,n=i.length,o=[];if(r instanceof fg){var s=fB(r,e,t);if(s)o.push(s);else if(!n)return}else if(!n)return;for(var l={},u=0;u0}).length){var pt=aM(b,t);return pt+" "+m[0]+" both"}}for(var g in l){var s=d(l[g]);s&&o.push(s)}if(o.length){var y=t.zrId+"-cls-"+t.cssClassIdx++;t.cssNodes["."+y]={animation:o.join(",")},e.class=y}}var Ws=Math.round;function iM(r){return r&&$(r.src)}function nM(r){return r&&K(r.toDataURL)}function Yg(r,e,t,a){eB(function(i,n){var o=i==="fill"||i==="stroke";o&&o2(n)?mB(e,r,i,a):o&&n2(n)?_B(t,r,i,a):r[i]=n},e,t,!1),yB(t,r,a)}function O_(r){return Ea(r[0]-1)&&Ea(r[1])&&Ea(r[2])&&Ea(r[3]-1)}function hB(r){return Ea(r[4])&&Ea(r[5])}function Zg(r,e,t){if(e&&!(hB(e)&&O_(e))){var a=t?10:1e4;r.transform=O_(e)?"translate("+Ws(e[4]*a)/a+" "+Ws(e[5]*a)/a+")":jI(e)}}function N_(r,e,t){for(var a=r.points,i=[],n=0;nn?(p=t[l+1]==null?null:t[l+1].elm,uM(r,p,t,i,l)):wf(r,e,a,n))}function On(r,e){var t=e.elm=r.elm,a=r.children,i=e.children;r!==e&&(Xg(r,e),jp(e.text)?Lr(a)&&Lr(i)?a!==i&&TB(t,a,i):Lr(i)?(Lr(r.text)&&Hv(t,""),uM(t,null,i,0,i.length-1)):Lr(a)?wf(t,a,0,a.length-1):Lr(r.text)&&Hv(t,""):r.text!==e.text&&(Lr(a)&&wf(t,a,0,a.length-1),Hv(t,e.text)))}function CB(r,e){if(ns(r,e))On(r,e);else{var t=r.elm,a=sM(t);$s(e),a!==null&&(Ei(a,e.elm,lM(t)),wf(a,[r],0,0))}return e}var AB=0,MB=function(){function r(e,t,a){if(this.type="svg",this.refreshHover=W_(),this.configLayer=W_(),this.storage=t,this._opts=a=B({},a),this.root=e,this._id="zr"+AB++,this._oldVNode=R_(a.width,a.height),e&&!a.ssr){var i=this._viewport=document.createElement("div");i.style.cssText="position:relative;overflow:hidden";var n=this._svgDom=this._oldVNode.elm=rM("svg");Xg(null,this._oldVNode),i.appendChild(n),e.appendChild(i)}this.resize(a.width,a.height)}return r.prototype.getType=function(){return this.type},r.prototype.getViewportRoot=function(){return this._viewport},r.prototype.getViewportRootOffset=function(){var e=this.getViewportRoot();if(e)return{offsetLeft:e.offsetLeft||0,offsetTop:e.offsetTop||0}},r.prototype.getSvgDom=function(){return this._svgDom},r.prototype.refresh=function(){if(this.root){var e=this.renderToVNode({willUpdate:!0});e.attrs.style="position:absolute;left:0;top:0;user-select:none",CB(this._oldVNode,e),this._oldVNode=e}},r.prototype.renderOneToVNode=function(e){return B_(e,Jp(this._id))},r.prototype.renderToVNode=function(e){e=e||{};var t=this.storage.getDisplayList(!0),a=this._backgroundColor,i=this._width,n=this._height,o=Jp(this._id);o.animation=e.animation,o.willUpdate=e.willUpdate,o.compress=e.compress;var s=[];if(a&&a!=="none"){var l=Kn(a),u=l.color,f=l.opacity;this._bgVNode=ee("rect","bg",{width:i,height:n,x:"0",y:"0",id:"0",fill:u,"fill-opacity":f}),s.push(this._bgVNode)}else this._bgVNode=null;var h=e.compress?null:this._mainVNode=ee("g","main",{},[]);this._paintList(t,o,h?h.children:s),h&&s.push(h);var v=G(yt(o.defs),function(d){return o.defs[d]});if(v.length&&s.push(ee("defs","defs",{},v)),e.animation){var c=oB(o.cssNodes,o.cssAnims,{newline:!0});if(c){var p=ee("style","stl",{},[],c);s.push(p)}}return R_(i,n,s,e.useViewBox)},r.prototype.renderToString=function(e){return e=e||{},Ug(this.renderToVNode({animation:vt(e.cssAnimation,!0),willUpdate:!1,compress:!0,useViewBox:vt(e.useViewBox,!0)}),{newline:!0})},r.prototype.setBackgroundColor=function(e){this._backgroundColor=e;var t=this._bgVNode;if(t&&t.elm){var a=Kn(e),i=a.color,n=a.opacity;t.elm.setAttribute("fill",i),n<1&&t.elm.setAttribute("fill-opacity",n)}},r.prototype.getSvgRoot=function(){return this._mainVNode&&this._mainVNode.elm},r.prototype._paintList=function(e,t,a){for(var i=e.length,n=[],o=0,s,l,u=0,f=0;f=0&&!(v&&l&&v[d]===l[d]);d--);for(var g=p-1;g>d;g--)o--,s=n[o-1];for(var y=d+1;y=s)}}for(var h=this.__startIndex;h15)break}}P.prevElClipPaths&&y.restore()};if(m)if(m.length===0)T=g.__endIndex;else for(var M=c.dpr,D=0;D0&&e>i[0]){for(l=0;le);l++);s=a[i[l]]}if(i.splice(l+1,0,e),a[e]=t,!t.virtual)if(s){var u=s.dom;u.nextSibling?o.insertBefore(t.dom,u.nextSibling):o.appendChild(t.dom)}else o.firstChild?o.insertBefore(t.dom,o.firstChild):o.appendChild(t.dom);t.__painter=this}},r.prototype.eachLayer=function(e,t){for(var a=this._zlevelList,i=0;i0?iu:0),this._needsManuallyCompositing),f.__builtin__||Fd("ZLevel "+u+" has been used by unkown layer "+f.id),f!==n&&(f.__used=!0,f.__startIndex!==l&&(f.__dirty=!0),f.__startIndex=l,f.incremental?f.__drawIndex=-1:f.__drawIndex=l,t(l),n=f),i.__dirty&Be&&!i.__inHover&&(f.__dirty=!0,f.incremental&&f.__drawIndex<0&&(f.__drawIndex=l))}t(l),this.eachBuiltinLayer(function(h,v){!h.__used&&h.getElementCount()>0&&(h.__dirty=!0,h.__startIndex=h.__endIndex=h.__drawIndex=0),h.__dirty&&h.__drawIndex<0&&(h.__drawIndex=h.__startIndex)})},r.prototype.clear=function(){return this.eachBuiltinLayer(this._clearLayer),this},r.prototype._clearLayer=function(e){e.clear()},r.prototype.setBackgroundColor=function(e){this._backgroundColor=e,A(this._layers,function(t){t.setUnpainted()})},r.prototype.configLayer=function(e,t){if(t){var a=this._layerConfig;a[e]?st(a[e],t,!0):a[e]=t;for(var i=0;i-1&&(u.style.stroke=u.style.fill,u.style.fill="#fff",u.style.lineWidth=2),a},e.type="series.line",e.dependencies=["grid","polar"],e.defaultOption={z:3,coordinateSystem:"cartesian2d",legendHoverLink:!0,clip:!0,label:{position:"top"},endLabel:{show:!1,valueAnimation:!0,distance:8},lineStyle:{width:2,type:"solid"},emphasis:{scale:!0},step:!1,smooth:!1,smoothMonotone:null,symbol:"emptyCircle",symbolSize:4,symbolRotate:null,showSymbol:!0,showAllSymbol:"auto",connectNulls:!1,sampling:"none",animationEasing:"linear",progressive:0,hoverLayerThreshold:1/0,universalTransition:{divideShape:"clone"},triggerLineEvent:!1},e}(Vt),BB=VB;function to(r,e){var t=r.mapDimensionsAll("defaultedLabel"),a=t.length;if(a===1){var i=Qn(r,e,t[0]);return i!=null?i+"":null}else if(a){for(var n=[],o=0;o=0&&a.push(e[n])}return a.join(" ")}var zB=function(r){O(e,r);function e(t,a,i,n){var o=r.call(this)||this;return o.updateData(t,a,i,n),o}return e.prototype._createSymbol=function(t,a,i,n,o){this.removeAll();var s=Kt(t,-1,-1,2,2,null,o);s.attr({z2:100,culling:!0,scaleX:n[0]/2,scaleY:n[1]/2}),s.drift=GB,this._symbolType=t,this.add(s)},e.prototype.stopSymbolAnimation=function(t){this.childAt(0).stopAnimation(null,t)},e.prototype.getSymbolType=function(){return this._symbolType},e.prototype.getSymbolPath=function(){return this.childAt(0)},e.prototype.highlight=function(){sa(this.childAt(0))},e.prototype.downplay=function(){la(this.childAt(0))},e.prototype.setZ=function(t,a){var i=this.childAt(0);i.zlevel=t,i.z=a},e.prototype.setDraggable=function(t,a){var i=this.childAt(0);i.draggable=t,i.cursor=!a&&t?"move":i.cursor},e.prototype.updateData=function(t,a,i,n){this.silent=!1;var o=t.getItemVisual(a,"symbol")||"circle",s=t.hostModel,l=e.getSymbolSize(t,a),u=o!==this._symbolType,f=n&&n.disableAnimation;if(u){var h=t.getItemVisual(a,"symbolKeepAspect");this._createSymbol(o,t,a,l,h)}else{var v=this.childAt(0);v.silent=!1;var c={scaleX:l[0]/2,scaleY:l[1]/2};f?v.attr(c):wt(v,c,s,a),_r(v)}if(this._updateCommon(t,a,l,i,n),u){var v=this.childAt(0);if(!f){var c={scaleX:this._sizeX,scaleY:this._sizeY,style:{opacity:v.style.opacity}};v.scaleX=v.scaleY=0,v.style.opacity=0,Gt(v,c,s,a)}}f&&this.childAt(0).stopAnimation("leave")},e.prototype._updateCommon=function(t,a,i,n,o){var s=this.childAt(0),l=t.hostModel,u,f,h,v,c,p,d,g,y;if(n&&(u=n.emphasisItemStyle,f=n.blurItemStyle,h=n.selectItemStyle,v=n.focus,c=n.blurScope,d=n.labelStatesModels,g=n.hoverScale,y=n.cursorStyle,p=n.emphasisDisabled),!n||t.hasItemOption){var m=n&&n.itemModel?n.itemModel:t.getItemModel(a),_=m.getModel("emphasis");u=_.getModel("itemStyle").getItemStyle(),h=m.getModel(["select","itemStyle"]).getItemStyle(),f=m.getModel(["blur","itemStyle"]).getItemStyle(),v=_.get("focus"),c=_.get("blurScope"),p=_.get("disabled"),d=oe(m),g=_.getShallow("scale"),y=m.getShallow("cursor")}var S=t.getItemVisual(a,"symbolRotate");s.attr("rotation",(S||0)*Math.PI/180||0);var w=So(t.getItemVisual(a,"symbolOffset"),i);w&&(s.x=w[0],s.y=w[1]),y&&s.attr("cursor",y);var x=t.getItemVisual(a,"style"),b=x.fill;if(s instanceof he){var T=s.style;s.useStyle(B({image:T.image,x:T.x,y:T.y,width:T.width,height:T.height},x))}else s.__isEmptyBrush?s.useStyle(B({},x)):s.useStyle(x),s.style.decal=null,s.setColor(b,o&&o.symbolInnerColor),s.style.strokeNoScale=!0;var C=t.getItemVisual(a,"liftZ"),M=this._z2;C!=null?M==null&&(this._z2=s.z2,s.z2+=C):M!=null&&(s.z2=M,this._z2=null);var D=o&&o.useNameLabel;me(s,d,{labelFetcher:l,labelDataIndex:a,defaultText:L,inheritColor:b,defaultOpacity:x.opacity});function L(R){return D?t.getName(R):to(t,R)}this._sizeX=i[0]/2,this._sizeY=i[1]/2;var I=s.ensureState("emphasis");if(I.style=u,s.ensureState("select").style=h,s.ensureState("blur").style=f,g){var P=Math.max(xt(g)?g:1.1,3/this._sizeY);I.scaleX=this._sizeX*P,I.scaleY=this._sizeY*P}this.setSymbolScale(1),Ut(this,v,c,p)},e.prototype.setSymbolScale=function(t){this.scaleX=this.scaleY=t},e.prototype.fadeOut=function(t,a,i){var n=this.childAt(0),o=at(this).dataIndex,s=i&&i.animation;if(this.silent=n.silent=!0,i&&i.fadeLabel){var l=n.getTextContent();l&&Ua(l,{style:{opacity:0}},a,{dataIndex:o,removeOpt:s,cb:function(){n.removeTextContent()}})}else n.removeTextContent();Ua(n,{style:{opacity:0},scaleX:0,scaleY:0},a,{dataIndex:o,cb:t,removeOpt:s})},e.getSymbolSize=function(t,a){return hl(t.getItemVisual(a,"symbolSize"))},e}(rt);function GB(r,e){this.parent.drift(r,e)}var pl=zB;function $v(r,e,t,a){return e&&!isNaN(e[0])&&!isNaN(e[1])&&!(a.isIgnore&&a.isIgnore(t))&&!(a.clipShape&&!a.clipShape.contain(e[0],e[1]))&&r.getItemVisual(t,"symbol")!=="none"}function Y_(r){return r!=null&&!J(r)&&(r={isIgnore:r}),r||{}}function Z_(r){var e=r.hostModel,t=e.getModel("emphasis");return{emphasisItemStyle:t.getModel("itemStyle").getItemStyle(),blurItemStyle:e.getModel(["blur","itemStyle"]).getItemStyle(),selectItemStyle:e.getModel(["select","itemStyle"]).getItemStyle(),focus:t.get("focus"),blurScope:t.get("blurScope"),emphasisDisabled:t.get("disabled"),hoverScale:t.get("scale"),labelStatesModels:oe(e),cursorStyle:e.get("cursor")}}var FB=function(){function r(e){this.group=new rt,this._SymbolCtor=e||pl}return r.prototype.updateData=function(e,t){this._progressiveEls=null,t=Y_(t);var a=this.group,i=e.hostModel,n=this._data,o=this._SymbolCtor,s=t.disableAnimation,l=Z_(e),u={disableAnimation:s},f=t.getSymbolPoint||function(h){return e.getItemLayout(h)};n||a.removeAll(),e.diff(n).add(function(h){var v=f(h);if($v(e,v,h,t)){var c=new o(e,h,l,u);c.setPosition(v),e.setItemGraphicEl(h,c),a.add(c)}}).update(function(h,v){var c=n.getItemGraphicEl(v),p=f(h);if(!$v(e,p,h,t)){a.remove(c);return}var d=e.getItemVisual(h,"symbol")||"circle",g=c&&c.getSymbolType&&c.getSymbolType();if(!c||g&&g!==d)a.remove(c),c=new o(e,h,l,u),c.setPosition(p);else{c.updateData(e,h,l,u);var y={x:p[0],y:p[1]};s?c.attr(y):wt(c,y,i)}a.add(c),e.setItemGraphicEl(h,c)}).remove(function(h){var v=n.getItemGraphicEl(h);v&&v.fadeOut(function(){a.remove(v)},i)}).execute(),this._getSymbolPoint=f,this._data=e},r.prototype.updateLayout=function(){var e=this,t=this._data;t&&t.eachItemGraphicEl(function(a,i){var n=e._getSymbolPoint(i);a.setPosition(n),a.markRedraw()})},r.prototype.incrementalPrepareUpdate=function(e){this._seriesScope=Z_(e),this._data=null,this.group.removeAll()},r.prototype.incrementalUpdate=function(e,t,a){this._progressiveEls=[],a=Y_(a);function i(l){l.isGroup||(l.incremental=!0,l.ensureState("emphasis").hoverLayer=!0)}for(var n=e.start;n0?t=a[0]:a[1]<0&&(t=a[1]),t}function vM(r,e,t,a){var i=NaN;r.stacked&&(i=t.get(t.getCalculationInfo("stackedOverDimension"),a)),isNaN(i)&&(i=r.valueStart);var n=r.baseDataOffset,o=[];return o[n]=t.get(r.baseDim,a),o[1-n]=i,e.dataToPoint(o)}function WB(r,e){var t=[];return e.diff(r).add(function(a){t.push({cmd:"+",idx:a})}).update(function(a,i){t.push({cmd:"=",idx:i,idx1:a})}).remove(function(a){t.push({cmd:"-",idx:a})}).execute(),t}function $B(r,e,t,a,i,n,o,s){for(var l=WB(r,e),u=[],f=[],h=[],v=[],c=[],p=[],d=[],g=hM(i,e,o),y=r.getLayout("points")||[],m=e.getLayout("points")||[],_=0;_=i||d<0)break;if(Xi(y,m)){if(l){d+=n;continue}break}if(d===t)r[n>0?"moveTo":"lineTo"](y,m),h=y,v=m;else{var _=y-u,S=m-f;if(_*_+S*S<.5){d+=n;continue}if(o>0){for(var w=d+n,x=e[w*2],b=e[w*2+1];x===y&&b===m&&g=a||Xi(x,b))c=y,p=m;else{M=x-u,D=b-f;var P=y-u,R=x-y,E=m-f,N=b-m,k=void 0,V=void 0;if(s==="x"){k=Math.abs(P),V=Math.abs(R);var F=M>0?1:-1;c=y-F*k*o,p=m,L=y+F*V*o,I=m}else if(s==="y"){k=Math.abs(E),V=Math.abs(N);var W=D>0?1:-1;c=y,p=m-W*k*o,L=y,I=m+W*V*o}else k=Math.sqrt(P*P+E*E),V=Math.sqrt(R*R+N*N),C=V/(V+k),c=y-M*o*(1-C),p=m-D*o*(1-C),L=y+M*o*C,I=m+D*o*C,L=xa(L,wa(x,y)),I=xa(I,wa(b,m)),L=wa(L,xa(x,y)),I=wa(I,xa(b,m)),M=L-y,D=I-m,c=y-M*k/V,p=m-D*k/V,c=xa(c,wa(u,y)),p=xa(p,wa(f,m)),c=wa(c,xa(u,y)),p=wa(p,xa(f,m)),M=y-c,D=m-p,L=y+M*V/k,I=m+D*V/k}r.bezierCurveTo(h,v,c,p,y,m),h=L,v=I}else r.lineTo(y,m)}u=y,f=m,d+=n}return g}var cM=function(){function r(){this.smooth=0,this.smoothConstraint=!0}return r}(),UB=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;return a.type="ec-polyline",a}return e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new cM},e.prototype.buildPath=function(t,a){var i=a.points,n=0,o=i.length/2;if(a.connectNulls){for(;o>0&&Xi(i[o*2-2],i[o*2-1]);o--);for(;n=0){var S=u?(p-l)*_+l:(c-s)*_+s;return u?[t,S]:[S,t]}s=c,l=p;break;case o.C:c=n[h++],p=n[h++],d=n[h++],g=n[h++],y=n[h++],m=n[h++];var w=u?qu(s,c,d,y,t,f):qu(l,p,g,m,t,f);if(w>0)for(var x=0;x=0){var S=u?te(l,p,g,m,b):te(s,c,d,y,b);return u?[t,S]:[S,t]}}s=y,l=m;break}}},e}(dt),YB=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e}(cM),pM=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;return a.type="ec-polygon",a}return e.prototype.getDefaultShape=function(){return new YB},e.prototype.buildPath=function(t,a){var i=a.points,n=a.stackedOnPoints,o=0,s=i.length/2,l=a.smoothMonotone;if(a.connectNulls){for(;s>0&&Xi(i[s*2-2],i[s*2-1]);s--);for(;oe){n?t.push(o(n,l,e)):i&&t.push(o(i,l,0),o(i,l,e));break}else i&&(t.push(o(i,l,0)),i=null),t.push(l),n=l}return t}function qB(r,e,t){var a=r.getVisual("visualMeta");if(!(!a||!a.length||!r.count())&&e.type==="cartesian2d"){for(var i,n,o=a.length-1;o>=0;o--){var s=r.getDimensionInfo(a[o].dimension);if(i=s&&s.coordDim,i==="x"||i==="y"){n=a[o];break}}if(!!n){var l=e.getAxis(i),u=G(n.stops,function(_){return{coord:l.toGlobalCoord(l.dataToCoord(_.value)),color:_.color}}),f=u.length,h=n.outerColors.slice();f&&u[0].coord>u[f-1].coord&&(u.reverse(),h.reverse());var v=XB(u,i==="x"?t.getWidth():t.getHeight()),c=v.length;if(!c&&f)return u[0].coord<0?h[1]?h[1]:u[f-1].color:h[0]?h[0]:u[0].color;var p=10,d=v[0].coord-p,g=v[c-1].coord+p,y=g-d;if(y<.001)return"transparent";A(v,function(_){_.offset=(_.coord-d)/y}),v.push({offset:c?v[c-1].offset:.5,color:h[1]||"transparent"}),v.unshift({offset:c?v[0].offset:.5,color:h[0]||"transparent"});var m=new nl(0,0,0,0,v,!0);return m[i]=d,m[i+"2"]=g,m}}}function KB(r,e,t){var a=r.get("showAllSymbol"),i=a==="auto";if(!(a&&!i)){var n=t.getAxesByScale("ordinal")[0];if(!!n&&!(i&&QB(n,e))){var o=e.mapDimension(n.dim),s={};return A(n.getViewLabels(),function(l){var u=n.scale.getRawOrdinalNumber(l.tickValue);s[u]=1}),function(l){return!s.hasOwnProperty(e.get(o,l))}}}}function QB(r,e){var t=r.getExtent(),a=Math.abs(t[1]-t[0])/r.scale.count();isNaN(a)&&(a=0);for(var i=e.count(),n=Math.max(1,Math.round(i/5)),o=0;oa)return!1;return!0}function JB(r,e){return isNaN(r)||isNaN(e)}function jB(r){for(var e=r.length/2;e>0&&JB(r[e*2-2],r[e*2-1]);e--);return e-1}function J_(r,e){return[r[e*2],r[e*2+1]]}function tz(r,e,t){for(var a=r.length/2,i=t==="x"?0:1,n,o,s=0,l=-1,u=0;u=e||n>=e&&o<=e){l=u;break}s=u,n=o}return{range:[s,l],t:(e-n)/(o-n)}}function yM(r){if(r.get(["endLabel","show"]))return!0;for(var e=0;e0&&t.get(["emphasis","lineStyle","width"])==="bolder"){var F=d.getState("emphasis").style;F.lineWidth=+d.style.lineWidth+1}at(d).seriesIndex=t.seriesIndex,Ut(d,N,k,V);var W=Q_(t.get("smooth")),Z=t.get("smoothMonotone");if(d.setShape({smooth:W,smoothMonotone:Z,connectNulls:T}),g){var tt=l.getCalculationInfo("stackedOnSeries"),ft=0;g.useStyle(Q(f.getAreaStyle(),{fill:I,opacity:.7,lineJoin:"bevel",decal:l.getVisual("style").decal})),tt&&(ft=Q_(tt.get("smooth"))),g.setShape({smooth:W,stackedOnSmooth:ft,smoothMonotone:Z,connectNulls:T}),fe(g,t,"areaStyle"),at(g).seriesIndex=t.seriesIndex,Ut(g,N,k,V)}var Dt=function(At){n._changePolyState(At)};l.eachItemGraphicEl(function(At){At&&(At.onHoverStateChange=Dt)}),this._polyline.onHoverStateChange=Dt,this._data=l,this._coordSys=o,this._stackedOnPoints=x,this._points=h,this._step=D,this._valueOrigin=S,t.get("triggerLineEvent")&&(this.packEventData(t,d),g&&this.packEventData(t,g))},e.prototype.packEventData=function(t,a){at(a).eventData={componentType:"series",componentSubType:"line",componentIndex:t.componentIndex,seriesIndex:t.seriesIndex,seriesName:t.name,seriesType:"line"}},e.prototype.highlight=function(t,a,i,n){var o=t.getData(),s=Ji(o,n);if(this._changePolyState("emphasis"),!(s instanceof Array)&&s!=null&&s>=0){var l=o.getLayout("points"),u=o.getItemGraphicEl(s);if(!u){var f=l[s*2],h=l[s*2+1];if(isNaN(f)||isNaN(h)||this._clipShapeForSymbol&&!this._clipShapeForSymbol.contain(f,h))return;var v=t.get("zlevel"),c=t.get("z");u=new pl(o,s),u.x=f,u.y=h,u.setZ(v,c);var p=u.getSymbolPath().getTextContent();p&&(p.zlevel=v,p.z=c,p.z2=this._polyline.z2+1),u.__temp=!0,o.setItemGraphicEl(s,u),u.stopSymbolAnimation(!0),this.group.add(u)}u.highlight()}else Rt.prototype.highlight.call(this,t,a,i,n)},e.prototype.downplay=function(t,a,i,n){var o=t.getData(),s=Ji(o,n);if(this._changePolyState("normal"),s!=null&&s>=0){var l=o.getItemGraphicEl(s);l&&(l.__temp?(o.setItemGraphicEl(s,null),this.group.remove(l)):l.downplay())}else Rt.prototype.downplay.call(this,t,a,i,n)},e.prototype._changePolyState=function(t){var a=this._polygon;af(this._polyline,t),a&&af(a,t)},e.prototype._newPolyline=function(t){var a=this._polyline;return a&&this._lineGroup.remove(a),a=new UB({shape:{points:t},segmentIgnoreThreshold:2,z2:10}),this._lineGroup.add(a),this._polyline=a,a},e.prototype._newPolygon=function(t,a){var i=this._polygon;return i&&this._lineGroup.remove(i),i=new pM({shape:{points:t,stackedOnPoints:a},segmentIgnoreThreshold:2}),this._lineGroup.add(i),this._polygon=i,i},e.prototype._initSymbolLabelAnimation=function(t,a,i){var n,o,s=a.getBaseAxis(),l=s.inverse;a.type==="cartesian2d"?(n=s.isHorizontal(),o=!1):a.type==="polar"&&(n=s.dim==="angle",o=!0);var u=t.hostModel,f=u.get("animationDuration");K(f)&&(f=f(null));var h=u.get("animationDelay")||0,v=K(h)?h(null):h;t.eachItemGraphicEl(function(c,p){var d=c;if(d){var g=[c.x,c.y],y=void 0,m=void 0,_=void 0;if(i)if(o){var S=i,w=a.pointToCoord(g);n?(y=S.startAngle,m=S.endAngle,_=-w[1]/180*Math.PI):(y=S.r0,m=S.r,_=w[0])}else{var x=i;n?(y=x.x,m=x.x+x.width,_=c.x):(y=x.y+x.height,m=x.y,_=c.y)}var b=m===y?0:(_-y)/(m-y);l&&(b=1-b);var T=K(h)?h(p):f*b+v,C=d.getSymbolPath(),M=C.getTextContent();d.attr({scaleX:0,scaleY:0}),d.animateTo({scaleX:1,scaleY:1},{duration:200,setToFinal:!0,delay:T}),M&&M.animateFrom({style:{opacity:0}},{duration:300,delay:T}),C.disableLabelAnimation=!0}})},e.prototype._initOrUpdateEndLabel=function(t,a,i){var n=t.getModel("endLabel");if(yM(t)){var o=t.getData(),s=this._polyline,l=o.getLayout("points");if(!l){s.removeTextContent(),this._endLabel=null;return}var u=this._endLabel;u||(u=this._endLabel=new Tt({z2:200}),u.ignoreClip=!0,s.setTextContent(this._endLabel),s.disableLabelAnimation=!0);var f=jB(l);f>=0&&(me(s,oe(t,"endLabel"),{inheritColor:i,labelFetcher:t,labelDataIndex:f,defaultText:function(h,v,c){return c!=null?fM(o,c):to(o,h)},enableTextSetter:!0},ez(n,a)),s.textConfig.position=null)}else this._endLabel&&(this._polyline.removeTextContent(),this._endLabel=null)},e.prototype._endLabelOnDuring=function(t,a,i,n,o,s,l){var u=this._endLabel,f=this._polyline;if(u){t<1&&n.originalX==null&&(n.originalX=u.x,n.originalY=u.y);var h=i.getLayout("points"),v=i.hostModel,c=v.get("connectNulls"),p=s.get("precision"),d=s.get("distance")||0,g=l.getBaseAxis(),y=g.isHorizontal(),m=g.inverse,_=a.shape,S=m?y?_.x:_.y+_.height:y?_.x+_.width:_.y,w=(y?d:0)*(m?-1:1),x=(y?0:-d)*(m?-1:1),b=y?"x":"y",T=tz(h,S,b),C=T.range,M=C[1]-C[0],D=void 0;if(M>=1){if(M>1&&!c){var L=J_(h,C[0]);u.attr({x:L[0]+w,y:L[1]+x}),o&&(D=v.getRawValue(C[0]))}else{var L=f.getPointOn(S,b);L&&u.attr({x:L[0]+w,y:L[1]+x});var I=v.getRawValue(C[0]),P=v.getRawValue(C[1]);o&&(D=Bb(i,p,I,P,T.t))}n.lastFrameIndex=C[0]}else{var R=t===1||n.lastFrameIndex>0?C[0]:0,L=J_(h,R);o&&(D=v.getRawValue(R)),u.attr({x:L[0]+w,y:L[1]+x})}o&&ho(u).setLabelText(D)}},e.prototype._doUpdateAnimation=function(t,a,i,n,o,s,l){var u=this._polyline,f=this._polygon,h=t.hostModel,v=$B(this._data,t,this._stackedOnPoints,a,this._coordSys,i,this._valueOrigin),c=v.current,p=v.stackedOnCurrent,d=v.next,g=v.stackedOnNext;if(o&&(c=ba(v.current,i,o,l),p=ba(v.stackedOnCurrent,i,o,l),d=ba(v.next,i,o,l),g=ba(v.stackedOnNext,i,o,l)),K_(c,d)>3e3||f&&K_(p,g)>3e3){u.stopAnimation(),u.setShape({points:d}),f&&(f.stopAnimation(),f.setShape({points:d,stackedOnPoints:g}));return}u.shape.__points=v.current,u.shape.points=c;var y={shape:{points:d}};v.current!==c&&(y.shape.__points=v.next),u.stopAnimation(),wt(u,y,h),f&&(f.setShape({points:c,stackedOnPoints:p}),f.stopAnimation(),wt(f,{shape:{stackedOnPoints:g}},h),u.shape.points!==f.shape.points&&(f.shape.points=u.shape.points));for(var m=[],_=v.status,S=0;S<_.length;S++){var w=_[S].cmd;if(w==="="){var x=t.getItemGraphicEl(_[S].idx1);x&&m.push({el:x,ptIdx:S})}}u.animators&&u.animators.length&&u.animators[0].during(function(){f&&f.dirtyShape();for(var b=u.shape.__points,T=0;Te&&(e=r[t]);return isFinite(e)?e:NaN},min:function(r){for(var e=1/0,t=0;t10&&o.type==="cartesian2d"&&n){var l=o.getBaseAxis(),u=o.getOtherAxis(l),f=l.getExtent(),h=a.getDevicePixelRatio(),v=Math.abs(f[1]-f[0])*(h||1),c=Math.round(s/v);if(isFinite(c)&&c>1){n==="lttb"&&e.setData(i.lttbDownSample(i.mapDimension(u.dim),1/c));var p=void 0;$(n)?p=iz[n]:K(n)&&(p=n),p&&e.setData(i.downSample(i.mapDimension(u.dim),1/c,p,nz))}}}}}function oz(r){r.registerChartView(az),r.registerSeriesModel(BB),r.registerLayout(gl("line",!0)),r.registerVisual({seriesType:"line",reset:function(e){var t=e.getData(),a=e.getModel("lineStyle").getLineStyle();a&&!a.stroke&&(a.stroke=t.getVisual("style").fill),t.setVisual("legendLineStyle",a)}}),r.registerProcessor(r.PRIORITY.PROCESSOR.STATISTIC,mM("line"))}var _M=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.getInitialData=function(t,a){return ca(null,this,{useEncodeDefaulter:!0})},e.prototype.getMarkerPosition=function(t){var a=this.coordinateSystem;if(a&&a.clampData){var i=a.dataToPoint(a.clampData(t)),n=this.getData(),o=n.getLayout("offset"),s=n.getLayout("size"),l=a.getBaseAxis().isHorizontal()?0:1;return i[l]+=o+s/2,i}return[NaN,NaN]},e.type="series.__base_bar__",e.defaultOption={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,barMinHeight:0,barMinAngle:0,large:!1,largeThreshold:400,progressive:3e3,progressiveChunkMode:"mod"},e}(Vt);Vt.registerClass(_M);var bf=_M,sz=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.getInitialData=function(){return ca(null,this,{useEncodeDefaulter:!0,createInvertedIndices:!!this.get("realtimeSort",!0)||null})},e.prototype.getProgressive=function(){return this.get("large")?this.get("progressive"):!1},e.prototype.getProgressiveThreshold=function(){var t=this.get("progressiveThreshold"),a=this.get("largeThreshold");return a>t&&(t=a),t},e.prototype.brushSelector=function(t,a,i){return i.rect(a.getItemLayout(t))},e.type="series.bar",e.dependencies=["grid","polar"],e.defaultOption=ja(bf.defaultOption,{clip:!0,roundCap:!1,showBackground:!1,backgroundStyle:{color:"rgba(180, 180, 180, 0.2)",borderColor:null,borderWidth:0,borderType:"solid",borderRadius:0,shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0,opacity:1},select:{itemStyle:{borderColor:"#212121"}},realtimeSort:!1}),e}(bf),lz=sz,uz=function(){function r(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=Math.PI*2,this.clockwise=!0}return r}(),fz=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;return a.type="sausage",a}return e.prototype.getDefaultShape=function(){return new uz},e.prototype.buildPath=function(t,a){var i=a.cx,n=a.cy,o=Math.max(a.r0||0,0),s=Math.max(a.r,0),l=(s-o)*.5,u=o+l,f=a.startAngle,h=a.endAngle,v=a.clockwise,c=Math.PI*2,p=v?h-fMath.PI/2&&fs)return!0;s=h}return!1},e.prototype._isOrderDifferentInView=function(t,a){for(var i=a.scale,n=i.getExtent(),o=Math.max(0,n[0]),s=Math.min(n[1],i.getOrdinalMeta().categories.length-1);o<=s;++o)if(t.ordinalNumbers[o]!==i.getRawOrdinalNumber(o))return!0},e.prototype._updateSortWithinSameData=function(t,a,i,n){if(!!this._isOrderChangedWithinSameData(t,a,i)){var o=this._dataSort(t,i,a);this._isOrderDifferentInView(o,i)&&(this._removeOnRenderedListener(n),n.dispatchAction({type:"changeAxisOrder",componentType:i.dim+"Axis",axisId:i.index,sortInfo:o}))}},e.prototype._dispatchInitSort=function(t,a,i){var n=a.baseAxis,o=this._dataSort(t,n,function(s){return t.get(t.mapDimension(a.otherAxis.dim),s)});i.dispatchAction({type:"changeAxisOrder",componentType:n.dim+"Axis",isInitSort:!0,axisId:n.index,sortInfo:o})},e.prototype.remove=function(t,a){this._clear(this._model),this._removeOnRenderedListener(a)},e.prototype.dispose=function(t,a){this._removeOnRenderedListener(a)},e.prototype._removeOnRenderedListener=function(t){this._onRendered&&(t.getZr().off("rendered",this._onRendered),this._onRendered=null)},e.prototype._clear=function(t){var a=this.group,i=this._data;t&&t.isAnimationEnabled()&&i&&!this._isLargeDraw?(this._removeBackground(),this._backgroundEls=[],i.eachItemGraphicEl(function(n){ks(n,t,at(n).dataIndex)})):a.removeAll(),this._data=null,this._isFirstFrame=!0},e.prototype._removeBackground=function(){this.group.remove(this._backgroundGroup),this._backgroundGroup=null},e.type="bar",e}(Rt),j_={cartesian2d:function(r,e){var t=e.width<0?-1:1,a=e.height<0?-1:1;t<0&&(e.x+=e.width,e.width=-e.width),a<0&&(e.y+=e.height,e.height=-e.height);var i=r.x+r.width,n=r.y+r.height,o=Yv(e.x,r.x),s=Zv(e.x+e.width,i),l=Yv(e.y,r.y),u=Zv(e.y+e.height,n),f=si?s:o,e.y=h&&l>n?u:l,e.width=f?0:s-o,e.height=h?0:u-l,t<0&&(e.x+=e.width,e.width=-e.width),a<0&&(e.y+=e.height,e.height=-e.height),f||h},polar:function(r,e){var t=e.r0<=e.r?1:-1;if(t<0){var a=e.r;e.r=e.r0,e.r0=a}var i=Zv(e.r,r.r),n=Yv(e.r0,r.r0);e.r=i,e.r0=n;var o=i-n<0;if(t<0){var a=e.r;e.r=e.r0,e.r0=a}return o}},t1={cartesian2d:function(r,e,t,a,i,n,o,s,l){var u=new _t({shape:B({},a),z2:1});if(u.__dataIndex=t,u.name="item",n){var f=u.shape,h=i?"height":"width";f[h]=0}return u},polar:function(r,e,t,a,i,n,o,s,l){var u=!i&&l?Tf:Re,f=new u({shape:a,z2:1});f.name="item";var h=SM(i);if(f.calculateTextPosition=hz(h,{isRoundCap:u===Tf}),n){var v=f.shape,c=i?"r":"endAngle",p={};v[c]=i?0:a.startAngle,p[c]=a[c],(s?wt:Gt)(f,{shape:p},n)}return f}};function dz(r,e){var t=r.get("realtimeSort",!0),a=e.getBaseAxis();if(t&&a.type==="category"&&e.type==="cartesian2d")return{baseAxis:a,otherAxis:e.getOtherAxis(a)}}function e1(r,e,t,a,i,n,o,s){var l,u;n?(u={x:a.x,width:a.width},l={y:a.y,height:a.height}):(u={y:a.y,height:a.height},l={x:a.x,width:a.width}),s||(o?wt:Gt)(t,{shape:l},e,i,null);var f=e?r.baseAxis.model:null;(o?wt:Gt)(t,{shape:u},f,i)}function r1(r,e){for(var t=0;t0?1:-1,o=a.height>0?1:-1;return{x:a.x+n*i/2,y:a.y+o*i/2,width:a.width-n*i,height:a.height-o*i}},polar:function(r,e,t){var a=r.getItemLayout(e);return{cx:a.cx,cy:a.cy,r0:a.r0,r:a.r,startAngle:a.startAngle,endAngle:a.endAngle,clockwise:a.clockwise}}};function mz(r){return r.startAngle!=null&&r.endAngle!=null&&r.startAngle===r.endAngle}function SM(r){return function(e){var t=e?"Arc":"Angle";return function(a){switch(a){case"start":case"insideStart":case"end":case"insideEnd":return a+t;default:return a}}}(r)}function i1(r,e,t,a,i,n,o,s){var l=e.getItemVisual(t,"style");s||r.setShape("r",a.get(["itemStyle","borderRadius"])||0),r.useStyle(l);var u=a.getShallow("cursor");u&&r.attr("cursor",u);var f=s?o?i.r>=i.r0?"endArc":"startArc":i.endAngle>=i.startAngle?"endAngle":"startAngle":o?i.height>=0?"bottom":"top":i.width>=0?"right":"left",h=oe(a);me(r,h,{labelFetcher:n,labelDataIndex:t,defaultText:to(n.getData(),t),inheritColor:l.fill,defaultOpacity:l.opacity,defaultOutsidePosition:f});var v=r.getTextContent();if(s&&v){var c=a.get(["label","position"]);r.textConfig.inside=c==="middle"?!0:null,vz(r,c==="outside"?f:c,SM(o),a.get(["label","rotate"]))}NT(v,h,n.getRawValue(t),function(d){return fM(e,d)});var p=a.getModel(["emphasis"]);Ut(r,p.get("focus"),p.get("blurScope"),p.get("disabled")),fe(r,a),mz(i)&&(r.style.fill="none",r.style.stroke="none",A(r.states,function(d){d.style&&(d.style.fill=d.style.stroke="none")}))}function _z(r,e){var t=r.get(["itemStyle","borderColor"]);if(!t||t==="none")return 0;var a=r.get(["itemStyle","borderWidth"])||0,i=isNaN(e.width)?Number.MAX_VALUE:Math.abs(e.width),n=isNaN(e.height)?Number.MAX_VALUE:Math.abs(e.height);return Math.min(a,i,n)}var Sz=function(){function r(){}return r}(),n1=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;return a.type="largeBar",a}return e.prototype.getDefaultShape=function(){return new Sz},e.prototype.buildPath=function(t,a){for(var i=a.points,n=this.baseDimIdx,o=1-this.baseDimIdx,s=[],l=[],u=this.barWidth,f=0;f=0?t:null},30,!1);function xz(r,e,t){for(var a=r.baseDimIdx,i=1-a,n=r.shape.points,o=r.largeDataIndices,s=[],l=[],u=r.barWidth,f=0,h=n.length/3;f=s[0]&&e<=s[0]+l[0]&&t>=s[1]&&t<=s[1]+l[1])return o[f]}return-1}function xM(r,e,t){if(un(t,"cartesian2d")){var a=e,i=t.getArea();return{x:r?a.x:i.x,y:r?i.y:a.y,width:r?a.width:i.width,height:r?i.height:a.height}}else{var i=t.getArea(),n=e;return{cx:i.cx,cy:i.cy,r0:r?i.r0:n.r0,r:r?i.r:n.r,startAngle:r?n.startAngle:0,endAngle:r?n.endAngle:Math.PI*2}}}function wz(r,e,t){var a=r.type==="polar"?Re:_t;return new a({shape:xM(e,t,r),silent:!0,z2:0})}var bz=pz;function Tz(r){r.registerChartView(bz),r.registerSeriesModel(lz),r.registerLayout(r.PRIORITY.VISUAL.LAYOUT,it(MA,"bar")),r.registerLayout(r.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,DA("bar")),r.registerProcessor(r.PRIORITY.PROCESSOR.STATISTIC,mM("bar")),r.registerAction({type:"changeAxisOrder",event:"changeAxisOrder",update:"update"},function(e,t){var a=e.componentType||"series";t.eachComponent({mainType:a,query:e},function(i){e.sortInfo&&i.axis.setCategorySortInfo(e.sortInfo)})})}var lu=Math.PI*2,l1=Math.PI/180;function wM(r,e){return jt(r.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}function bM(r,e){var t=wM(r,e),a=r.get("center"),i=r.get("radius");z(i)||(i=[0,i]),z(a)||(a=[a,a]);var n=H(t.width,e.getWidth()),o=H(t.height,e.getHeight()),s=Math.min(n,o),l=H(a[0],n)+t.x,u=H(a[1],o)+t.y,f=H(i[0],s/2),h=H(i[1],s/2);return{cx:l,cy:u,r0:f,r:h}}function Cz(r,e,t){e.eachSeriesByType(r,function(a){var i=a.getData(),n=i.mapDimension("value"),o=wM(a,t),s=bM(a,t),l=s.cx,u=s.cy,f=s.r,h=s.r0,v=-a.get("startAngle")*l1,c=a.get("minAngle")*l1,p=0;i.each(n,function(M){!isNaN(M)&&p++});var d=i.getSum(n),g=Math.PI/(d||p)*2,y=a.get("clockwise"),m=a.get("roseType"),_=a.get("stillShowZeroSum"),S=i.getDataExtent(n);S[0]=0;var w=lu,x=0,b=v,T=y?1:-1;if(i.setLayout({viewRect:o,r:f}),i.each(n,function(M,D){var L;if(isNaN(M)){i.setItemLayout(D,{angle:NaN,startAngle:NaN,endAngle:NaN,clockwise:y,cx:l,cy:u,r0:h,r:m?NaN:f});return}m!=="area"?L=d===0&&_?g:M*g:L=lu/p,Lt?y:g,w=Math.abs(_.label.y-t);if(w>=S.maxY){var x=_.label.x-e-_.len2*i,b=a+_.len,T=Math.abs(x)r.unconstrainedWidth?null:c:null;a.setStyle("width",p)}var d=a.getBoundingRect();n.width=d.width;var g=(a.style.margin||0)+2.1;n.height=d.height+g,n.y-=(n.height-h)/2}}}function Xv(r){return r.position==="center"}function Dz(r){var e=r.getData(),t=[],a,i,n=!1,o=(r.get("minShowLabelAngle")||0)*Az,s=e.getLayout("viewRect"),l=e.getLayout("r"),u=s.width,f=s.x,h=s.y,v=s.height;function c(x){x.ignore=!0}function p(x){if(!x.ignore)return!0;for(var b in x.states)if(x.states[b].ignore===!1)return!0;return!1}e.each(function(x){var b=e.getItemGraphicEl(x),T=b.shape,C=b.getTextContent(),M=b.getTextGuideLine(),D=e.getItemModel(x),L=D.getModel("label"),I=L.get("position")||D.get(["emphasis","label","position"]),P=L.get("distanceToLabelLine"),R=L.get("alignTo"),E=H(L.get("edgeDistance"),u),N=L.get("bleedMargin"),k=D.getModel("labelLine"),V=k.get("length");V=H(V,u);var F=k.get("length2");if(F=H(F,u),Math.abs(T.endAngle-T.startAngle)0?"right":"left":Z>0?"left":"right"}var Wt=Math.PI,Ft=0,ve=L.get("rotate");if(xt(ve))Ft=ve*(Wt/180);else if(I==="center")Ft=0;else if(ve==="radial"||ve===!0){var Ur=Z<0?-W+Wt:-W;Ft=Ur}else if(ve==="tangential"&&I!=="outside"&&I!=="outer"){var Ae=Math.atan2(Z,tt);Ae<0&&(Ae=Wt*2+Ae);var wl=tt>0;wl&&(Ae=Wt+Ae),Ft=Ae-Wt}if(n=!!Ft,C.x=ft,C.y=Dt,C.rotation=Ft,C.setStyle({verticalAlign:"middle"}),et){C.setStyle({align:pt});var Lh=C.states.select;Lh&&(Lh.x+=C.x,Lh.y+=C.y)}else{var da=C.getBoundingRect().clone();da.applyTransform(C.getComputedTransform());var $y=(C.style.margin||0)+2.1;da.y-=$y/2,da.height+=$y,t.push({label:C,labelLine:M,position:I,len:V,len2:F,minTurnAngle:k.get("minTurnAngle"),maxSurfaceAngle:k.get("maxSurfaceAngle"),surfaceNormal:new ot(Z,tt),linePoints:At,textAlign:pt,labelDistance:P,labelAlignTo:R,edgeDistance:E,bleedMargin:N,rect:da,unconstrainedWidth:da.width,labelStyleWidth:C.style.width})}b.setTextConfig({inside:et})}}),!n&&r.get("avoidLabelOverlap")&&Mz(t,a,i,l,u,v,f,h);for(var d=0;d0){for(var f=o.getItemLayout(0),h=1;isNaN(f&&f.startAngle)&&h=n.r0}},e.type="pie",e}(Rt),Pz=Iz;function wo(r,e,t){e=z(e)&&{coordDimensions:e}||B({encodeDefine:r.getEncode()},e);var a=r.getSource(),i=xo(a,e).dimensions,n=new be(i,r);return n.initData(a,t),n}var Rz=function(){function r(e,t){this._getDataWithEncodedVisual=e,this._getRawData=t}return r.prototype.getAllNames=function(){var e=this._getRawData();return e.mapArray(e.getName)},r.prototype.containName=function(e){var t=this._getRawData();return t.indexOfName(e)>=0},r.prototype.indexOfName=function(e){var t=this._getDataWithEncodedVisual();return t.indexOfName(e)},r.prototype.getItemVisual=function(e,t){var a=this._getDataWithEncodedVisual();return a.getItemVisual(e,t)},r}(),ml=Rz,Ez=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.init=function(t){r.prototype.init.apply(this,arguments),this.legendVisualProvider=new ml(U(this.getData,this),U(this.getRawData,this)),this._defaultLabelLine(t)},e.prototype.mergeOption=function(){r.prototype.mergeOption.apply(this,arguments)},e.prototype.getInitialData=function(){return wo(this,{coordDimensions:["value"],encodeDefaulter:it(_g,this)})},e.prototype.getDataParams=function(t){var a=this.getData(),i=r.prototype.getDataParams.call(this,t),n=[];return a.each(a.mapDimension("value"),function(o){n.push(o)}),i.percent=G2(n,t,a.hostModel.get("percentPrecision")),i.$vars.push("percent"),i},e.prototype._defaultLabelLine=function(t){Qi(t,"labelLine",["show"]);var a=t.labelLine,i=t.emphasis.labelLine;a.show=a.show&&t.label.show,i.show=i.show&&t.emphasis.label.show},e.type="series.pie",e.defaultOption={z:2,legendHoverLink:!0,colorBy:"data",center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,minShowLabelAngle:0,selectedOffset:10,percentPrecision:2,stillShowZeroSum:!0,left:0,top:0,right:0,bottom:0,width:null,height:null,label:{rotate:0,show:!0,overflow:"truncate",position:"outer",alignTo:"none",edgeDistance:"25%",bleedMargin:10,distanceToLabelLine:5},labelLine:{show:!0,length:15,length2:15,smooth:!1,minTurnAngle:90,maxSurfaceAngle:90,lineStyle:{width:1,type:"solid"}},itemStyle:{borderWidth:1,borderJoin:"round"},showEmptyCircle:!0,emptyCircleStyle:{color:"lightgray",opacity:1},labelLayout:{hideOverlap:!0},emphasis:{scale:!0,scaleSize:5},avoidLabelOverlap:!0,animationType:"expansion",animationDuration:1e3,animationTypeUpdate:"transition",animationEasingUpdate:"cubicInOut",animationDurationUpdate:500,animationEasing:"cubicInOut"},e}(Vt),kz=Ez;function Oz(r){return{seriesType:r,reset:function(e,t){var a=e.getData();a.filterSelf(function(i){var n=a.mapDimension("value"),o=a.get(n,i);return!(xt(o)&&!isNaN(o)&&o<0)})}}}function Nz(r){r.registerChartView(Pz),r.registerSeriesModel(kz),$C("pie",r.registerAction),r.registerLayout(it(Cz,"pie")),r.registerProcessor(yl("pie")),r.registerProcessor(Oz("pie"))}var Vz=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.hasSymbolVisual=!0,t}return e.prototype.getInitialData=function(t,a){return ca(null,this,{useEncodeDefaulter:!0})},e.prototype.getProgressive=function(){var t=this.option.progressive;return t==null?this.option.large?5e3:this.get("progressive"):t},e.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return t==null?this.option.large?1e4:this.get("progressiveThreshold"):t},e.prototype.brushSelector=function(t,a,i){return i.point(a.getItemLayout(t))},e.prototype.getZLevelKey=function(){return this.getData().count()>this.getProgressiveThreshold()?this.id:""},e.type="series.scatter",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,legendHoverLink:!0,symbolSize:10,large:!1,largeThreshold:2e3,itemStyle:{opacity:.8},emphasis:{scale:!0},clip:!0,select:{itemStyle:{borderColor:"#212121"}},universalTransition:{divideShape:"clone"}},e}(Vt),Bz=Vz,CM=4,zz=function(){function r(){}return r}(),Gz=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;return a._off=0,a.hoverDataIdx=-1,a}return e.prototype.getDefaultShape=function(){return new zz},e.prototype.reset=function(){this.notClear=!1,this._off=0},e.prototype.buildPath=function(t,a){var i=a.points,n=a.size,o=this.symbolProxy,s=o.shape,l=t.getContext?t.getContext():t,u=l&&n[0]=0;u--){var f=u*2,h=n[f]-s/2,v=n[f+1]-l/2;if(t>=h&&a>=v&&t<=h+s&&a<=v+l)return u}return-1},e.prototype.contain=function(t,a){var i=this.transformCoordToLocal(t,a),n=this.getBoundingRect();if(t=i[0],a=i[1],n.contain(t,a)){var o=this.hoverDataIdx=this.findDataIndex(t,a);return o>=0}return this.hoverDataIdx=-1,!1},e.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var a=this.shape,i=a.points,n=a.size,o=n[0],s=n[1],l=1/0,u=1/0,f=-1/0,h=-1/0,v=0;v=0&&(u.dataIndex=h+(e.startIndex||0))})},r.prototype.remove=function(){this._clear()},r.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},r}(),Hz=Fz,Wz=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){var n=t.getData(),o=this._updateSymbolDraw(n,t);o.updateData(n,{clipShape:this._getClipShape(t)}),this._finished=!0},e.prototype.incrementalPrepareRender=function(t,a,i){var n=t.getData(),o=this._updateSymbolDraw(n,t);o.incrementalPrepareUpdate(n),this._finished=!1},e.prototype.incrementalRender=function(t,a,i){this._symbolDraw.incrementalUpdate(t,a.getData(),{clipShape:this._getClipShape(a)}),this._finished=t.end===a.getData().count()},e.prototype.updateTransform=function(t,a,i){var n=t.getData();if(this.group.dirty(),!this._finished||n.count()>1e4)return{update:!0};var o=gl("").reset(t,a,i);o.progress&&o.progress({start:0,end:n.count(),count:n.count()},n),this._symbolDraw.updateLayout(n)},e.prototype.eachRendered=function(t){this._symbolDraw&&this._symbolDraw.eachRendered(t)},e.prototype._getClipShape=function(t){var a=t.coordinateSystem,i=a&&a.getArea&&a.getArea();return t.get("clip",!0)?i:null},e.prototype._updateSymbolDraw=function(t,a){var i=this._symbolDraw,n=a.pipelineContext,o=n.large;return(!i||o!==this._isLargeDraw)&&(i&&i.remove(),i=this._symbolDraw=o?new Hz:new dl,this._isLargeDraw=o,this.group.removeAll()),this.group.add(i.group),i},e.prototype.remove=function(t,a){this._symbolDraw&&this._symbolDraw.remove(!0),this._symbolDraw=null},e.prototype.dispose=function(){},e.type="scatter",e}(Rt),$z=Wz,Uz=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.type="grid",e.dependencies=["xAxis","yAxis"],e.layoutMode="box",e.defaultOption={show:!1,z:0,left:"10%",top:60,right:"10%",bottom:70,containLabel:!1,backgroundColor:"rgba(0,0,0,0)",borderWidth:1,borderColor:"#ccc"},e}(St),Yz=Uz,ed=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.getCoordSysModel=function(){return this.getReferringComponents("grid",Xt).models[0]},e.type="cartesian2dAxis",e}(St);Qt(ed,cl);var AM={show:!0,z:0,inverse:!1,name:"",nameLocation:"end",nameRotate:null,nameTruncate:{maxWidth:null,ellipsis:"...",placeholder:"."},nameTextStyle:{},nameGap:15,silent:!1,triggerEvent:!1,tooltip:{show:!1},axisPointer:{},axisLine:{show:!0,onZero:!0,onZeroAxisIndex:null,lineStyle:{color:"#6E7079",width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15]},axisTick:{show:!0,inside:!1,length:5,lineStyle:{width:1}},axisLabel:{show:!0,inside:!1,rotate:0,showMinLabel:null,showMaxLabel:null,margin:8,fontSize:12},splitLine:{show:!0,lineStyle:{color:["#E0E6F1"],width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.2)","rgba(210,219,238,0.2)"]}}},Zz=st({boundaryGap:!0,deduplication:null,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto"},axisLabel:{interval:"auto"}},AM),qg=st({boundaryGap:[0,0],axisLine:{show:"auto"},axisTick:{show:"auto"},splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:"#F4F7FD",width:1}}},AM),Xz=st({splitNumber:6,axisLabel:{showMinLabel:!1,showMaxLabel:!1,rich:{primary:{fontWeight:"bold"}}},splitLine:{show:!1}},qg),qz=Q({logBase:10},qg),MM={category:Zz,value:qg,time:Xz,log:qz},Kz={value:1,category:1,time:1,log:1};function eo(r,e,t,a){A(Kz,function(i,n){var o=st(st({},MM[n],!0),a,!0),s=function(l){O(u,l);function u(){var f=l!==null&&l.apply(this,arguments)||this;return f.type=e+"Axis."+n,f}return u.prototype.mergeDefaultAndTheme=function(f,h){var v=Vs(this),c=v?po(f):{},p=h.getTheme();st(f,p.get(n+"Axis")),st(f,this.getDefaultOption()),f.type=f1(f),v&&Ya(f,c,v)},u.prototype.optionUpdated=function(){var f=this.option;f.type==="category"&&(this.__ordinalMeta=Xp.createByAxisModel(this))},u.prototype.getCategories=function(f){var h=this.option;if(h.type==="category")return f?h.data:this.__ordinalMeta.categories},u.prototype.getOrdinalMeta=function(){return this.__ordinalMeta},u.type=e+"Axis."+n,u.defaultOption=o,u}(t);r.registerComponentModel(s)}),r.registerSubTypeDefaulter(e+"Axis",f1)}function f1(r){return r.type||(r.data?"category":"value")}var Qz=function(){function r(e){this.type="cartesian",this._dimList=[],this._axes={},this.name=e||""}return r.prototype.getAxis=function(e){return this._axes[e]},r.prototype.getAxes=function(){return G(this._dimList,function(e){return this._axes[e]},this)},r.prototype.getAxesByScale=function(e){return e=e.toLowerCase(),It(this.getAxes(),function(t){return t.scale.type===e})},r.prototype.addAxis=function(e){var t=e.dim;this._axes[t]=e,this._dimList.push(t)},r}(),Jz=Qz,rd=["x","y"];function h1(r){return r.type==="interval"||r.type==="time"}var jz=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type="cartesian2d",t.dimensions=rd,t}return e.prototype.calcAffineTransform=function(){this._transform=this._invTransform=null;var t=this.getAxis("x").scale,a=this.getAxis("y").scale;if(!(!h1(t)||!h1(a))){var i=t.getExtent(),n=a.getExtent(),o=this.dataToPoint([i[0],n[0]]),s=this.dataToPoint([i[1],n[1]]),l=i[1]-i[0],u=n[1]-n[0];if(!(!l||!u)){var f=(s[0]-o[0])/l,h=(s[1]-o[1])/u,v=o[0]-i[0]*f,c=o[1]-n[0]*h,p=this._transform=[f,0,0,h,v,c];this._invTransform=oo([],p)}}},e.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAxis("x")},e.prototype.containPoint=function(t){var a=this.getAxis("x"),i=this.getAxis("y");return a.contain(a.toLocalCoord(t[0]))&&i.contain(i.toLocalCoord(t[1]))},e.prototype.containData=function(t){return this.getAxis("x").containData(t[0])&&this.getAxis("y").containData(t[1])},e.prototype.containZone=function(t,a){var i=this.dataToPoint(t),n=this.dataToPoint(a),o=this.getArea(),s=new ut(i[0],i[1],n[0]-i[0],n[1]-i[1]);return o.intersect(s)},e.prototype.dataToPoint=function(t,a,i){i=i||[];var n=t[0],o=t[1];if(this._transform&&n!=null&&isFinite(n)&&o!=null&&isFinite(o))return le(i,t,this._transform);var s=this.getAxis("x"),l=this.getAxis("y");return i[0]=s.toGlobalCoord(s.dataToCoord(n,a)),i[1]=l.toGlobalCoord(l.dataToCoord(o,a)),i},e.prototype.clampData=function(t,a){var i=this.getAxis("x").scale,n=this.getAxis("y").scale,o=i.getExtent(),s=n.getExtent(),l=i.parse(t[0]),u=n.parse(t[1]);return a=a||[],a[0]=Math.min(Math.max(Math.min(o[0],o[1]),l),Math.max(o[0],o[1])),a[1]=Math.min(Math.max(Math.min(s[0],s[1]),u),Math.max(s[0],s[1])),a},e.prototype.pointToData=function(t,a){var i=[];if(this._invTransform)return le(i,t,this._invTransform);var n=this.getAxis("x"),o=this.getAxis("y");return i[0]=n.coordToData(n.toLocalCoord(t[0]),a),i[1]=o.coordToData(o.toLocalCoord(t[1]),a),i},e.prototype.getOtherAxis=function(t){return this.getAxis(t.dim==="x"?"y":"x")},e.prototype.getArea=function(){var t=this.getAxis("x").getGlobalExtent(),a=this.getAxis("y").getGlobalExtent(),i=Math.min(t[0],t[1]),n=Math.min(a[0],a[1]),o=Math.max(t[0],t[1])-i,s=Math.max(a[0],a[1])-n;return new ut(i,n,o,s)},e}(Jz),t5=function(r){O(e,r);function e(t,a,i,n,o){var s=r.call(this,t,a,i)||this;return s.index=0,s.type=n||"value",s.position=o||"bottom",s}return e.prototype.isHorizontal=function(){var t=this.position;return t==="top"||t==="bottom"},e.prototype.getGlobalExtent=function(t){var a=this.getExtent();return a[0]=this.toGlobalCoord(a[0]),a[1]=this.toGlobalCoord(a[1]),t&&a[0]>a[1]&&a.reverse(),a},e.prototype.pointToData=function(t,a){return this.coordToData(this.toLocalCoord(t[this.dim==="x"?0:1]),a)},e.prototype.setCategorySortInfo=function(t){if(this.type!=="category")return!1;this.model.option.categorySortInfo=t,this.scale.setSortInfo(t)},e}(xr),e5=t5;function ad(r,e,t){t=t||{};var a=r.coordinateSystem,i=e.axis,n={},o=i.getAxesOnZeroOf()[0],s=i.position,l=o?"onZero":s,u=i.dim,f=a.getRect(),h=[f.x,f.x+f.width,f.y,f.y+f.height],v={left:0,right:1,top:0,bottom:1,onZero:2},c=e.get("offset")||0,p=u==="x"?[h[2]-c,h[3]+c]:[h[0]-c,h[1]+c];if(o){var d=o.toGlobalCoord(o.dataToCoord(0));p[v.onZero]=Math.max(Math.min(d,p[1]),p[0])}n.position=[u==="y"?p[v[l]]:h[0],u==="x"?p[v[l]]:h[3]],n.rotation=Math.PI/2*(u==="x"?0:1);var g={top:-1,bottom:1,left:-1,right:1};n.labelDirection=n.tickDirection=n.nameDirection=g[s],n.labelOffset=o?p[v[s]]-p[v.onZero]:0,e.get(["axisTick","inside"])&&(n.tickDirection=-n.tickDirection),ie(t.labelInside,e.get(["axisLabel","inside"]))&&(n.labelDirection=-n.labelDirection);var y=e.get(["axisLabel","rotate"]);return n.labelRotate=l==="top"?-y:y,n.z2=1,n}function v1(r){return r.get("coordinateSystem")==="cartesian2d"}function c1(r){var e={xAxisModel:null,yAxisModel:null};return A(e,function(t,a){var i=a.replace(/Model$/,""),n=r.getReferringComponents(i,Xt).models[0];e[a]=n}),e}var qv=Math.log;function DM(r,e,t){var a=Xa.prototype,i=a.getTicks.call(t),n=a.getTicks.call(t,!0),o=i.length-1,s=a.getInterval.call(t),l=OA(r,e),u=l.extent,f=l.fixMin,h=l.fixMax;if(r.type==="log"){var v=qv(r.base);u=[qv(u[0])/v,qv(u[1])/v]}r.setExtent(u[0],u[1]),r.calcNiceExtent({splitNumber:o,fixMin:f,fixMax:h});var c=a.getExtent.call(r);f&&(u[0]=c[0]),h&&(u[1]=c[1]);var p=a.getInterval.call(r),d=u[0],g=u[1];if(f&&h)p=(g-d)/o;else if(f)for(g=u[0]+p*o;gu[0]&&isFinite(d)&&isFinite(u[0]);)p=Ov(p),d=u[1]-p*o;else{var y=r.getTicks().length-1;y>o&&(p=Ov(p));var m=p*o;g=Math.ceil(u[1]/p)*p,d=$t(g-m),d<0&&u[0]>=0?(d=0,g=$t(m)):g>0&&u[1]<=0&&(g=0,d=-$t(m))}var _=(i[0].value-n[0].value)/s,S=(i[o].value-n[o].value)/s;a.setExtent.call(r,d+p*_,g+p*S),a.setInterval.call(r,p),(_||S)&&a.setNiceExtent.call(r,d+p,g-p)}var r5=function(){function r(e,t,a){this.type="grid",this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=rd,this._initCartesian(e,t,a),this.model=e}return r.prototype.getRect=function(){return this._rect},r.prototype.update=function(e,t){var a=this._axesMap;this._updateScale(e,this.model);function i(o){var s,l=yt(o),u=l.length;if(!!u){for(var f=[],h=u-1;h>=0;h--){var v=+l[h],c=o[v],p=c.model,d=c.scale;qp(d)&&p.get("alignTicks")&&p.get("interval")==null?f.push(c):(jn(d,p),qp(d)&&(s=c))}f.length&&(s||(s=f.pop(),jn(s.scale,s.model)),A(f,function(g){DM(g.scale,g.model,s.scale)}))}}i(a.x),i(a.y);var n={};A(a.x,function(o){p1(a,"y",o,n)}),A(a.y,function(o){p1(a,"x",o,n)}),this.resize(this.model,t)},r.prototype.resize=function(e,t,a){var i=e.getBoxLayoutParams(),n=!a&&e.get("containLabel"),o=jt(i,{width:t.getWidth(),height:t.getHeight()});this._rect=o;var s=this._axesList;l(),n&&(A(s,function(u){if(!u.model.get(["axisLabel","inside"])){var f=gV(u);if(f){var h=u.isHorizontal()?"height":"width",v=u.model.get(["axisLabel","margin"]);o[h]-=f[h]+v,u.position==="top"?o.y+=f.height+v:u.position==="left"&&(o.x+=f.width+v)}}}),l()),A(this._coordsList,function(u){u.calcAffineTransform()});function l(){A(s,function(u){var f=u.isHorizontal(),h=f?[0,o.width]:[0,o.height],v=u.inverse?1:0;u.setExtent(h[v],h[1-v]),a5(u,f?o.x:o.y)})}},r.prototype.getAxis=function(e,t){var a=this._axesMap[e];if(a!=null)return a[t||0]},r.prototype.getAxes=function(){return this._axesList.slice()},r.prototype.getCartesian=function(e,t){if(e!=null&&t!=null){var a="x"+e+"y"+t;return this._coordsMap[a]}J(e)&&(t=e.yAxisIndex,e=e.xAxisIndex);for(var i=0,n=this._coordsList;i0?"top":"bottom",n="center"):ef(i-Oa)?(o=a>0?"bottom":"top",n="center"):(o="middle",i>0&&i0?"right":"left":n=a>0?"left":"right"),{rotation:i,textAlign:n,textVerticalAlign:o}},r.makeAxisEventDataBase=function(e){var t={componentType:e.mainType,componentIndex:e.componentIndex};return t[e.mainType+"Index"]=e.componentIndex,t},r.isLabelSilent=function(e){var t=e.get("tooltip");return e.get("silent")||!(e.get("triggerEvent")||t&&t.show)},r}(),g1={axisLine:function(r,e,t,a){var i=e.get(["axisLine","show"]);if(i==="auto"&&r.handleAutoShown&&(i=r.handleAutoShown("axisLine")),!!i){var n=e.axis.getExtent(),o=a.transform,s=[n[0],0],l=[n[1],0];o&&(le(s,s,o),le(l,l,o));var u=B({lineCap:"round"},e.getModel(["axisLine","lineStyle"]).getLineStyle()),f=new ne({subPixelOptimize:!0,shape:{x1:s[0],y1:s[1],x2:l[0],y2:l[1]},style:u,strokeContainThreshold:r.strokeContainThreshold||5,silent:!0,z2:1});f.anid="line",t.add(f);var h=e.get(["axisLine","symbol"]);if(h!=null){var v=e.get(["axisLine","symbolSize"]);$(h)&&(h=[h,h]),($(v)||xt(v))&&(v=[v,v]);var c=So(e.get(["axisLine","symbolOffset"])||0,v),p=v[0],d=v[1];A([{rotate:r.rotation+Math.PI/2,offset:c[0],r:0},{rotate:r.rotation-Math.PI/2,offset:c[1],r:Math.sqrt((s[0]-l[0])*(s[0]-l[0])+(s[1]-l[1])*(s[1]-l[1]))}],function(g,y){if(h[y]!=="none"&&h[y]!=null){var m=Kt(h[y],-p/2,-d/2,p,d,u.stroke,!0),_=g.r+g.offset;m.attr({rotation:g.rotate,x:s[0]+_*Math.cos(r.rotation),y:s[1]-_*Math.sin(r.rotation),silent:!0,z2:11}),t.add(m)}})}}},axisTickLabel:function(r,e,t,a){var i=s5(t,a,e,r),n=u5(t,a,e,r);if(o5(e,n,i),l5(t,a,e,r.tickDirection),e.get(["axisLabel","hideOverlap"])){var o=XA(G(n,function(s){return{label:s,priority:s.z2,defaultAttr:{ignore:s.ignore}}}));QA(o)}},axisName:function(r,e,t,a){var i=ie(r.axisName,e.get("name"));if(!!i){var n=e.get("nameLocation"),o=r.nameDirection,s=e.getModel("nameTextStyle"),l=e.get("nameGap")||0,u=e.axis.getExtent(),f=u[0]>u[1]?-1:1,h=[n==="start"?u[0]-f*l:n==="end"?u[1]+f*l:(u[0]+u[1])/2,m1(n)?r.labelOffset+o*l:0],v,c=e.get("nameRotate");c!=null&&(c=c*Oa/180);var p;m1(n)?v=qi.innerTextLayout(r.rotation,c!=null?c:r.rotation,o):(v=n5(r.rotation,n,c||0,u),p=r.axisNameAvailableWidth,p!=null&&(p=Math.abs(p/Math.sin(v.rotation)),!isFinite(p)&&(p=null)));var d=s.getFont(),g=e.get("nameTruncate",!0)||{},y=g.ellipsis,m=ie(r.nameTruncateMaxWidth,g.maxWidth,p),_=new Tt({x:h[0],y:h[1],rotation:v.rotation,silent:qi.isLabelSilent(e),style:Bt(s,{text:i,font:d,overflow:"truncate",width:m,ellipsis:y,fill:s.getTextColor()||e.get(["axisLine","lineStyle","color"]),align:s.get("align")||v.textAlign,verticalAlign:s.get("verticalAlign")||v.textVerticalAlign}),z2:1});if(fo({el:_,componentModel:e,itemName:i}),_.__fullText=i,_.anid="name",e.get("triggerEvent")){var S=qi.makeAxisEventDataBase(e);S.targetType="axisName",S.name=i,at(_).eventData=S}a.add(_),_.updateTransform(),t.add(_),_.decomposeTransform()}}};function n5(r,e,t,a){var i=Db(t-r),n,o,s=a[0]>a[1],l=e==="start"&&!s||e!=="start"&&s;return ef(i-Oa/2)?(o=l?"bottom":"top",n="center"):ef(i-Oa*1.5)?(o=l?"top":"bottom",n="center"):(o="middle",iOa/2?n=l?"left":"right":n=l?"right":"left"),{rotation:i,textAlign:n,textVerticalAlign:o}}function o5(r,e,t){if(!NA(r.axis)){var a=r.get(["axisLabel","showMinLabel"]),i=r.get(["axisLabel","showMaxLabel"]);e=e||[],t=t||[];var n=e[0],o=e[1],s=e[e.length-1],l=e[e.length-2],u=t[0],f=t[1],h=t[t.length-1],v=t[t.length-2];a===!1?($e(n),$e(u)):y1(n,o)&&(a?($e(o),$e(f)):($e(n),$e(u))),i===!1?($e(s),$e(h)):y1(l,s)&&(i?($e(l),$e(v)):($e(s),$e(h)))}}function $e(r){r&&(r.ignore=!0)}function y1(r,e){var t=r&&r.getBoundingRect().clone(),a=e&&e.getBoundingRect().clone();if(!(!t||!a)){var i=Zf([]);return on(i,i,-r.rotation),t.applyTransform(ra([],i,r.getLocalTransform())),a.applyTransform(ra([],i,e.getLocalTransform())),t.intersect(a)}}function m1(r){return r==="middle"||r==="center"}function LM(r,e,t,a,i){for(var n=[],o=[],s=[],l=0;l=0||r===e}function d5(r){var e=Kg(r);if(!!e){var t=e.axisPointerModel,a=e.axis.scale,i=t.option,n=t.get("status"),o=t.get("value");o!=null&&(o=a.parse(o));var s=id(t);n==null&&(i.status=s?"show":"hide");var l=a.getExtent().slice();l[0]>l[1]&&l.reverse(),(o==null||o>l[1])&&(o=l[1]),o0&&!p.min?p.min=0:p.min!=null&&p.min<0&&!p.max&&(p.max=0);var d=l;p.color!=null&&(d=Q({color:p.color},l));var g=st(j(p),{boundaryGap:t,splitNumber:a,scale:i,axisLine:n,axisTick:o,axisLabel:s,name:p.text,showName:u,nameLocation:"end",nameGap:h,nameTextStyle:d,triggerEvent:v},!1);if($(f)){var y=g.name;g.name=f.replace("{value}",y!=null?y:"")}else K(f)&&(g.name=f(g.name,g));var m=new Ot(g,null,this.ecModel);return Qt(m,cl.prototype),m.mainType="radar",m.componentIndex=this.componentIndex,m},this);this._indicatorModels=c},e.prototype.getIndicatorModels=function(){return this._indicatorModels},e.type="radar",e.defaultOption={z:0,center:["50%","50%"],radius:"75%",startAngle:90,axisName:{show:!0},boundaryGap:[0,0],splitNumber:5,axisNameGap:15,scale:!1,shape:"polygon",axisLine:st({lineStyle:{color:"#bbb"}},Ho.axisLine),axisLabel:uu(Ho.axisLabel,!1),axisTick:uu(Ho.axisTick,!1),splitLine:uu(Ho.splitLine,!0),splitArea:uu(Ho.splitArea,!0),indicator:[]},e}(St),P5=I5,R5=["axisLine","axisTickLabel","axisName"],E5=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){var n=this.group;n.removeAll(),this._buildAxes(t),this._buildSplitLineAndArea(t)},e.prototype._buildAxes=function(t){var a=t.coordinateSystem,i=a.getIndicatorAxes(),n=G(i,function(o){var s=o.model.get("showName")?o.name:"",l=new fa(o.model,{axisName:s,position:[a.cx,a.cy],rotation:o.angle,labelDirection:-1,tickDirection:-1,nameDirection:1});return l});A(n,function(o){A(R5,o.add,o),this.group.add(o.getGroup())},this)},e.prototype._buildSplitLineAndArea=function(t){var a=t.coordinateSystem,i=a.getIndicatorAxes();if(!i.length)return;var n=t.get("shape"),o=t.getModel("splitLine"),s=t.getModel("splitArea"),l=o.getModel("lineStyle"),u=s.getModel("areaStyle"),f=o.get("show"),h=s.get("show"),v=l.get("color"),c=u.get("color"),p=z(v)?v:[v],d=z(c)?c:[c],g=[],y=[];function m(R,E,N){var k=N%E.length;return R[k]=R[k]||[],k}if(n==="circle")for(var _=i[0].getTicksCoords(),S=a.cx,w=a.cy,x=0;x<_.length;x++){if(f){var b=m(g,p,x);g[b].push(new Hr({shape:{cx:S,cy:w,r:_[x].coord}}))}if(h&&x<_.length-1){var b=m(y,d,x);y[b].push(new eh({shape:{cx:S,cy:w,r0:_[x].coord,r:_[x+1].coord}}))}}else for(var T,C=G(i,function(R,E){var N=R.getTicksCoords();return T=T==null?N.length-1:Math.min(N.length-1,T),G(N,function(k){return a.coordToPoint(k.coord,E)})}),M=[],x=0;x<=T;x++){for(var D=[],L=0;L3?1.4:o>1?1.2:1.1,f=n>0?u:1/u;Jv(this,"zoom","zoomOnMouseWheel",t,{scale:f,originX:s,originY:l,isAvailableBehavior:null})}if(i){var h=Math.abs(n),v=(n>0?1:-1)*(h>3?.4:h>1?.15:.05);Jv(this,"scrollMove","moveOnMouseWheel",t,{scrollDelta:v,originX:s,originY:l,isAvailableBehavior:null})}}},e.prototype._pinchHandler=function(t){if(!T1(this._zr,"globalPan")){var a=t.pinchScale>1?1.1:1/1.1;Jv(this,"zoom",null,t,{scale:a,originX:t.pinchX,originY:t.pinchY,isAvailableBehavior:null})}},e}(or);function Jv(r,e,t,a,i){r.pointerChecker&&r.pointerChecker(a,i.originX,i.originY)&&(na(a.event),OM(r,e,t,a,i))}function OM(r,e,t,a,i){i.isAvailableBehavior=U(Fu,null,t,a),r.trigger(e,i)}function Fu(r,e,t){var a=t[r];return!r||a&&(!$(a)||e.event[a+"Key"])}var _l=W5;function Jg(r,e,t){var a=r.target;a.x+=e,a.y+=t,a.dirty()}function jg(r,e,t,a){var i=r.target,n=r.zoomLimit,o=r.zoom=r.zoom||1;if(o*=e,n){var s=n.min||0,l=n.max||1/0;o=Math.max(Math.min(l,o),s)}var u=o/r.zoom;r.zoom=o,i.x-=(t-i.x)*(u-1),i.y-=(a-i.y)*(u-1),i.scaleX*=u,i.scaleY*=u,i.dirty()}var $5={axisPointer:1,tooltip:1,brush:1};function wh(r,e,t){var a=e.getComponentByElement(r.topTarget),i=a&&a.coordinateSystem;return a&&a!==t&&!$5.hasOwnProperty(a.mainType)&&i&&i.model!==t}function NM(r){if($(r)){var e=new DOMParser;r=e.parseFromString(r,"text/xml")}var t=r;for(t.nodeType===9&&(t=t.firstChild);t.nodeName.toLowerCase()!=="svg"||t.nodeType!==1;)t=t.nextSibling;return t}var jv,Cf={fill:"fill",stroke:"stroke","stroke-width":"lineWidth",opacity:"opacity","fill-opacity":"fillOpacity","stroke-opacity":"strokeOpacity","stroke-dasharray":"lineDash","stroke-dashoffset":"lineDashOffset","stroke-linecap":"lineCap","stroke-linejoin":"lineJoin","stroke-miterlimit":"miterLimit","font-family":"fontFamily","font-size":"fontSize","font-style":"fontStyle","font-weight":"fontWeight","text-anchor":"textAlign",visibility:"visibility",display:"display"},C1=yt(Cf),Af={"alignment-baseline":"textBaseline","stop-color":"stopColor"},A1=yt(Af),U5=function(){function r(){this._defs={},this._root=null}return r.prototype.parse=function(e,t){t=t||{};var a=NM(e);this._defsUsePending=[];var i=new rt;this._root=i;var n=[],o=a.getAttribute("viewBox")||"",s=parseFloat(a.getAttribute("width")||t.width),l=parseFloat(a.getAttribute("height")||t.height);isNaN(s)&&(s=null),isNaN(l)&&(l=null),Ne(a,i,null,!0,!1);for(var u=a.firstChild;u;)this._parseNode(u,i,n,null,!1,!1),u=u.nextSibling;X5(this._defs,this._defsUsePending),this._defsUsePending=[];var f,h;if(o){var v=bh(o);v.length>=4&&(f={x:parseFloat(v[0]||0),y:parseFloat(v[1]||0),width:parseFloat(v[2]),height:parseFloat(v[3])})}if(f&&s!=null&&l!=null&&(h=BM(f,{x:0,y:0,width:s,height:l}),!t.ignoreViewBox)){var c=i;i=new rt,i.add(c),c.scaleX=c.scaleY=h.scale,c.x=h.x,c.y=h.y}return!t.ignoreRootClip&&s!=null&&l!=null&&i.setClipPath(new _t({shape:{x:0,y:0,width:s,height:l}})),{root:i,width:s,height:l,viewBoxRect:f,viewBoxTransform:h,named:n}},r.prototype._parseNode=function(e,t,a,i,n,o){var s=e.nodeName.toLowerCase(),l,u=i;if(s==="defs"&&(n=!0),s==="text"&&(o=!0),s==="defs"||s==="switch")l=t;else{if(!n){var f=jv[s];if(f&&Y(jv,s)){l=f.call(this,e,t);var h=e.getAttribute("name");if(h){var v={name:h,namedFrom:null,svgNodeTagLower:s,el:l};a.push(v),s==="g"&&(u=v)}else i&&a.push({name:i.name,namedFrom:i,svgNodeTagLower:s,el:l});t.add(l)}}var c=M1[s];if(c&&Y(M1,s)){var p=c.call(this,e),d=e.getAttribute("id");d&&(this._defs[d]=p)}}if(l&&l.isGroup)for(var g=e.firstChild;g;)g.nodeType===1?this._parseNode(g,l,a,u,n,o):g.nodeType===3&&o&&this._parseText(g,l),g=g.nextSibling},r.prototype._parseText=function(e,t){var a=new Ps({style:{text:e.textContent},silent:!0,x:this._textX||0,y:this._textY||0});Ue(t,a),Ne(e,a,this._defsUsePending,!1,!1),Y5(a,t);var i=a.style,n=i.fontSize;n&&n<9&&(i.fontSize=9,a.scaleX*=n/9,a.scaleY*=n/9);var o=(i.fontSize||i.fontFamily)&&[i.fontStyle,i.fontWeight,(i.fontSize||12)+"px",i.fontFamily||"sans-serif"].join(" ");i.font=o;var s=a.getBoundingRect();return this._textX+=s.width,t.add(a),a},r.internalField=function(){jv={g:function(e,t){var a=new rt;return Ue(t,a),Ne(e,a,this._defsUsePending,!1,!1),a},rect:function(e,t){var a=new _t;return Ue(t,a),Ne(e,a,this._defsUsePending,!1,!1),a.setShape({x:parseFloat(e.getAttribute("x")||"0"),y:parseFloat(e.getAttribute("y")||"0"),width:parseFloat(e.getAttribute("width")||"0"),height:parseFloat(e.getAttribute("height")||"0")}),a.silent=!0,a},circle:function(e,t){var a=new Hr;return Ue(t,a),Ne(e,a,this._defsUsePending,!1,!1),a.setShape({cx:parseFloat(e.getAttribute("cx")||"0"),cy:parseFloat(e.getAttribute("cy")||"0"),r:parseFloat(e.getAttribute("r")||"0")}),a.silent=!0,a},line:function(e,t){var a=new ne;return Ue(t,a),Ne(e,a,this._defsUsePending,!1,!1),a.setShape({x1:parseFloat(e.getAttribute("x1")||"0"),y1:parseFloat(e.getAttribute("y1")||"0"),x2:parseFloat(e.getAttribute("x2")||"0"),y2:parseFloat(e.getAttribute("y2")||"0")}),a.silent=!0,a},ellipse:function(e,t){var a=new lg;return Ue(t,a),Ne(e,a,this._defsUsePending,!1,!1),a.setShape({cx:parseFloat(e.getAttribute("cx")||"0"),cy:parseFloat(e.getAttribute("cy")||"0"),rx:parseFloat(e.getAttribute("rx")||"0"),ry:parseFloat(e.getAttribute("ry")||"0")}),a.silent=!0,a},polygon:function(e,t){var a=e.getAttribute("points"),i;a&&(i=I1(a));var n=new Ee({shape:{points:i||[]},silent:!0});return Ue(t,n),Ne(e,n,this._defsUsePending,!1,!1),n},polyline:function(e,t){var a=e.getAttribute("points"),i;a&&(i=I1(a));var n=new ke({shape:{points:i||[]},silent:!0});return Ue(t,n),Ne(e,n,this._defsUsePending,!1,!1),n},image:function(e,t){var a=new he;return Ue(t,a),Ne(e,a,this._defsUsePending,!1,!1),a.setStyle({image:e.getAttribute("xlink:href")||e.getAttribute("href"),x:+e.getAttribute("x"),y:+e.getAttribute("y"),width:+e.getAttribute("width"),height:+e.getAttribute("height")}),a.silent=!0,a},text:function(e,t){var a=e.getAttribute("x")||"0",i=e.getAttribute("y")||"0",n=e.getAttribute("dx")||"0",o=e.getAttribute("dy")||"0";this._textX=parseFloat(a)+parseFloat(n),this._textY=parseFloat(i)+parseFloat(o);var s=new rt;return Ue(t,s),Ne(e,s,this._defsUsePending,!1,!0),s},tspan:function(e,t){var a=e.getAttribute("x"),i=e.getAttribute("y");a!=null&&(this._textX=parseFloat(a)),i!=null&&(this._textY=parseFloat(i));var n=e.getAttribute("dx")||"0",o=e.getAttribute("dy")||"0",s=new rt;return Ue(t,s),Ne(e,s,this._defsUsePending,!1,!0),this._textX+=parseFloat(n),this._textY+=parseFloat(o),s},path:function(e,t){var a=e.getAttribute("d")||"",i=pT(a);return Ue(t,i),Ne(e,i,this._defsUsePending,!1,!1),i.silent=!0,i}}}(),r}(),M1={lineargradient:function(r){var e=parseInt(r.getAttribute("x1")||"0",10),t=parseInt(r.getAttribute("y1")||"0",10),a=parseInt(r.getAttribute("x2")||"10",10),i=parseInt(r.getAttribute("y2")||"0",10),n=new nl(e,t,a,i);return D1(r,n),L1(r,n),n},radialgradient:function(r){var e=parseInt(r.getAttribute("cx")||"0",10),t=parseInt(r.getAttribute("cy")||"0",10),a=parseInt(r.getAttribute("r")||"0",10),i=new MT(e,t,a);return D1(r,i),L1(r,i),i}};function D1(r,e){var t=r.getAttribute("gradientUnits");t==="userSpaceOnUse"&&(e.global=!0)}function L1(r,e){for(var t=r.firstChild;t;){if(t.nodeType===1&&t.nodeName.toLocaleLowerCase()==="stop"){var a=t.getAttribute("offset"),i=void 0;a&&a.indexOf("%")>0?i=parseInt(a,10)/100:a?i=parseFloat(a):i=0;var n={};VM(t,n,n);var o=n.stopColor||t.getAttribute("stop-color")||"#000000";e.colorStops.push({offset:i,color:o})}t=t.nextSibling}}function Ue(r,e){r&&r.__inheritedStyle&&(e.__inheritedStyle||(e.__inheritedStyle={}),Q(e.__inheritedStyle,r.__inheritedStyle))}function I1(r){for(var e=bh(r),t=[],a=0;a0;n-=2){var o=a[n],s=a[n-1],l=bh(o);switch(i=i||ir(),s){case"translate":Br(i,i,[parseFloat(l[0]),parseFloat(l[1]||"0")]);break;case"scale":qd(i,i,[parseFloat(l[0]),parseFloat(l[1]||l[0])]);break;case"rotate":on(i,i,-parseFloat(l[0])*tc);break;case"skewX":var u=Math.tan(parseFloat(l[0])*tc);ra(i,[1,0,u,1,0,0],i);break;case"skewY":var f=Math.tan(parseFloat(l[0])*tc);ra(i,[1,f,0,1,0,0],i);break;case"matrix":i[0]=parseFloat(l[0]),i[1]=parseFloat(l[1]),i[2]=parseFloat(l[2]),i[3]=parseFloat(l[3]),i[4]=parseFloat(l[4]),i[5]=parseFloat(l[5]);break}}e.setLocalTransform(i)}}var R1=/([^\s:;]+)\s*:\s*([^:;]+)/g;function VM(r,e,t){var a=r.getAttribute("style");if(!!a){R1.lastIndex=0;for(var i;(i=R1.exec(a))!=null;){var n=i[1],o=Y(Cf,n)?Cf[n]:null;o&&(e[o]=i[2]);var s=Y(Af,n)?Af[n]:null;s&&(t[s]=i[2])}}}function J5(r,e,t){for(var a=0;a0,g={api:a,geo:l,mapOrGeoModel:e,data:s,isVisualEncodedByVisualMap:d,isGeo:o,transformInfoRaw:v};l.resourceType==="geoJSON"?this._buildGeoJSON(g):l.resourceType==="geoSVG"&&this._buildSVG(g),this._updateController(e,t,a),this._updateMapSelectHandler(e,u,a,i)},r.prototype._buildGeoJSON=function(e){var t=this._regionsGroupByName=q(),a=q(),i=this._regionsGroup,n=e.transformInfoRaw,o=e.mapOrGeoModel,s=e.data,l=e.geo.projection,u=l&&l.stream;function f(c,p){return p&&(c=p(c)),c&&[c[0]*n.scaleX+n.x,c[1]*n.scaleY+n.y]}function h(c){for(var p=[],d=!u&&l&&l.project,g=0;g=0)&&(v=i);var c=o?{normal:{align:"center",verticalAlign:"middle"}}:null;me(e,oe(a),{labelFetcher:v,labelDataIndex:h,defaultText:t},c);var p=e.getTextContent();if(p&&(zM(p).ignore=p.ignore,e.textConfig&&o)){var d=e.getBoundingRect().clone();e.textConfig.layoutRect=d,e.textConfig.position=[(o[0]-d.x)/d.width*100+"%",(o[1]-d.y)/d.height*100+"%"]}e.disableLabelAnimation=!0}else e.removeTextContent(),e.removeTextConfig(),e.disableLabelAnimation=null}function V1(r,e,t,a,i,n){r.data?r.data.setItemGraphicEl(n,e):at(e).eventData={componentType:"geo",componentIndex:i.componentIndex,geoIndex:i.componentIndex,name:t,region:a&&a.option||{}}}function B1(r,e,t,a,i){r.data||fo({el:e,componentModel:i,itemName:t,itemTooltipOption:a.get("tooltip")})}function z1(r,e,t,a,i){e.highDownSilentOnTouch=!!i.get("selectedMode");var n=a.getModel("emphasis"),o=n.get("focus");return Ut(e,o,n.get("blurScope"),n.get("disabled")),r.isGeo&&gR(e,i,t),o}function G1(r,e,t){var a=[],i;function n(){i=[]}function o(){i.length&&(a.push(i),i=[])}var s=e({polygonStart:n,polygonEnd:o,lineStart:n,lineEnd:o,point:function(l,u){isFinite(l)&&isFinite(u)&&i.push([l,u])},sphere:function(){}});return!t&&s.polygonStart(),A(r,function(l){s.lineStart();for(var u=0;u-1&&(i.style.stroke=i.style.fill,i.style.fill="#fff",i.style.lineWidth=2),i},e.type="series.map",e.dependencies=["geo"],e.layoutMode="box",e.defaultOption={z:2,coordinateSystem:"geo",map:"",left:"center",top:"center",aspectScale:null,showLegendSymbol:!0,boundingCoords:null,center:null,zoom:1,scaleLimit:null,selectedMode:!0,label:{show:!1,color:"#000"},itemStyle:{borderWidth:.5,borderColor:"#444",areaColor:"#eee"},emphasis:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{areaColor:"rgba(255,215,0,0.8)"}},select:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{color:"rgba(255,215,0,0.8)"}},nameProperty:"name"},e}(Vt),SG=_G;function xG(r,e){var t={};return A(r,function(a){a.each(a.mapDimension("value"),function(i,n){var o="ec-"+a.getName(n);t[o]=t[o]||[],isNaN(i)||t[o].push(i)})}),r[0].map(r[0].mapDimension("value"),function(a,i){for(var n="ec-"+r[0].getName(i),o=0,s=1/0,l=-1/0,u=t[n].length,f=0;f1?(S.width=_,S.height=_/g):(S.height=_,S.width=_*g),S.y=m[1]-S.height/2,S.x=m[0]-S.width/2;else{var w=r.getBoxLayoutParams();w.aspect=g,S=jt(w,{width:p,height:d})}this.setViewRect(S.x,S.y,S.width,S.height),this.setCenter(r.get("center"),e),this.setZoom(r.get("zoom"))}function AG(r,e){A(e.get("geoCoord"),function(t,a){r.addGeoCoord(a,t)})}var MG=function(){function r(){this.dimensions=FM}return r.prototype.create=function(e,t){var a=[];function i(o){return{nameProperty:o.get("nameProperty"),aspectScale:o.get("aspectScale"),projection:o.get("projection")}}e.eachComponent("geo",function(o,s){var l=o.get("map"),u=new $1(l+s,l,B({nameMap:o.get("nameMap")},i(o)));u.zoomLimit=o.get("scaleLimit"),a.push(u),o.coordinateSystem=u,u.model=o,u.resize=U1,u.resize(o,t)}),e.eachSeries(function(o){var s=o.get("coordinateSystem");if(s==="geo"){var l=o.get("geoIndex")||0;o.coordinateSystem=a[l]}});var n={};return e.eachSeriesByType("map",function(o){if(!o.getHostGeoModel()){var s=o.getMapType();n[s]=n[s]||[],n[s].push(o)}}),A(n,function(o,s){var l=G(o,function(f){return f.get("nameMap")}),u=new $1(s,s,B({nameMap:Hd(l)},i(o[0])));u.zoomLimit=ie.apply(null,G(o,function(f){return f.get("scaleLimit")})),a.push(u),u.resize=U1,u.resize(o[0],t),A(o,function(f){f.coordinateSystem=u,AG(u,f)})}),a},r.prototype.getFilledRegions=function(e,t,a,i){for(var n=(e||[]).slice(),o=q(),s=0;s=0;o--){var s=i[o];s.hierNode={defaultAncestor:null,ancestor:s,prelim:0,modifier:0,change:0,shift:0,i:o,thread:null},t.push(s)}}function NG(r,e){var t=r.isExpand?r.children:[],a=r.parentNode.children,i=r.hierNode.i?a[r.hierNode.i-1]:null;if(t.length){zG(r);var n=(t[0].hierNode.prelim+t[t.length-1].hierNode.prelim)/2;i?(r.hierNode.prelim=i.hierNode.prelim+e(r,i),r.hierNode.modifier=r.hierNode.prelim-n):r.hierNode.prelim=n}else i&&(r.hierNode.prelim=i.hierNode.prelim+e(r,i));r.parentNode.hierNode.defaultAncestor=GG(r,i,r.parentNode.hierNode.defaultAncestor||a[0],e)}function VG(r){var e=r.hierNode.prelim+r.parentNode.hierNode.modifier;r.setLayout({x:e},!0),r.hierNode.modifier+=r.parentNode.hierNode.modifier}function Z1(r){return arguments.length?r:WG}function os(r,e){return r-=Math.PI/2,{x:e*Math.cos(r),y:e*Math.sin(r)}}function BG(r,e){return jt(r.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}function zG(r){for(var e=r.children,t=e.length,a=0,i=0;--t>=0;){var n=e[t];n.hierNode.prelim+=a,n.hierNode.modifier+=a,i+=n.hierNode.change,a+=n.hierNode.shift+i}}function GG(r,e,t,a){if(e){for(var i=r,n=r,o=n.parentNode.children[0],s=e,l=i.hierNode.modifier,u=n.hierNode.modifier,f=o.hierNode.modifier,h=s.hierNode.modifier;s=ec(s),n=rc(n),s&&n;){i=ec(i),o=rc(o),i.hierNode.ancestor=r;var v=s.hierNode.prelim+h-n.hierNode.prelim-u+a(s,n);v>0&&(HG(FG(s,r,t),r,v),u+=v,l+=v),h+=s.hierNode.modifier,u+=n.hierNode.modifier,l+=i.hierNode.modifier,f+=o.hierNode.modifier}s&&!ec(i)&&(i.hierNode.thread=s,i.hierNode.modifier+=h-l),n&&!rc(o)&&(o.hierNode.thread=n,o.hierNode.modifier+=u-f,t=r)}return t}function ec(r){var e=r.children;return e.length&&r.isExpand?e[e.length-1]:r.hierNode.thread}function rc(r){var e=r.children;return e.length&&r.isExpand?e[0]:r.hierNode.thread}function FG(r,e,t){return r.hierNode.ancestor.parentNode===e.parentNode?r.hierNode.ancestor:t}function HG(r,e,t){var a=t/(e.hierNode.i-r.hierNode.i);e.hierNode.change-=a,e.hierNode.shift+=t,e.hierNode.modifier+=t,e.hierNode.prelim+=t,r.hierNode.change+=a}function WG(r,e){return r.parentNode===e.parentNode?1:2}var $G=function(){function r(){this.parentPoint=[],this.childPoints=[]}return r}(),UG=function(r){O(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new $G},e.prototype.buildPath=function(t,a){var i=a.childPoints,n=i.length,o=a.parentPoint,s=i[0],l=i[n-1];if(n===1){t.moveTo(o[0],o[1]),t.lineTo(s[0],s[1]);return}var u=a.orient,f=u==="TB"||u==="BT"?0:1,h=1-f,v=H(a.forkPosition,1),c=[];c[f]=o[f],c[h]=o[h]+(l[h]-o[h])*v,t.moveTo(o[0],o[1]),t.lineTo(c[0],c[1]),t.moveTo(s[0],s[1]),c[f]=s[f],t.lineTo(c[0],c[1]),c[f]=l[f],t.lineTo(c[0],c[1]),t.lineTo(l[0],l[1]);for(var p=1;pm.x,w||(S=S-Math.PI));var b=w?"left":"right",T=s.getModel("label"),C=T.get("rotate"),M=C*(Math.PI/180),D=g.getTextContent();D&&(g.setTextConfig({position:T.get("position")||b,rotation:C==null?-S:M,origin:"center"}),D.setStyle("verticalAlign","middle"))}var L=s.get(["emphasis","focus"]),I=L==="relative"?Zu(o.getAncestorsIndices(),o.getDescendantIndices()):L==="ancestor"?o.getAncestorsIndices():L==="descendant"?o.getDescendantIndices():null;I&&(at(t).focus=I),ZG(i,o,f,t,p,c,d,a),t.__edge&&(t.onHoverStateChange=function(P){if(P!=="blur"){var R=o.parentNode&&r.getItemGraphicEl(o.parentNode.dataIndex);R&&R.hoverState===il||af(t.__edge,P)}})}function ZG(r,e,t,a,i,n,o,s){var l=e.getModel(),u=r.get("edgeShape"),f=r.get("layout"),h=r.getOrient(),v=r.get(["lineStyle","curveness"]),c=r.get("edgeForkPosition"),p=l.getModel("lineStyle").getLineStyle(),d=a.__edge;if(u==="curve")e.parentNode&&e.parentNode!==t&&(d||(d=a.__edge=new rh({shape:sd(f,h,v,i,i)})),wt(d,{shape:sd(f,h,v,n,o)},r));else if(u==="polyline"&&f==="orthogonal"&&e!==t&&e.children&&e.children.length!==0&&e.isExpand===!0){for(var g=e.children,y=[],m=0;mt&&(t=i.height)}this.height=t+1},r.prototype.getNodeById=function(e){if(this.getId()===e)return this;for(var t=0,a=this.children,i=a.length;t=0&&this.hostTree.data.setItemLayout(this.dataIndex,e,t)},r.prototype.getLayout=function(){return this.hostTree.data.getItemLayout(this.dataIndex)},r.prototype.getModel=function(e){if(!(this.dataIndex<0)){var t=this.hostTree,a=t.data.getItemModel(this.dataIndex);return a.getModel(e)}},r.prototype.getLevelModel=function(){return(this.hostTree.levelModels||[])[this.depth]},r.prototype.setVisual=function(e,t){this.dataIndex>=0&&this.hostTree.data.setItemVisual(this.dataIndex,e,t)},r.prototype.getVisual=function(e){return this.hostTree.data.getItemVisual(this.dataIndex,e)},r.prototype.getRawIndex=function(){return this.hostTree.data.getRawIndex(this.dataIndex)},r.prototype.getId=function(){return this.hostTree.data.getId(this.dataIndex)},r.prototype.getChildIndex=function(){if(this.parentNode){for(var e=this.parentNode.children,t=0;t=0){var a=t.getData().tree.root,i=r.targetNode;if($(i)&&(i=a.getNodeById(i)),i&&a.contains(i))return{node:i};var n=r.targetNodeId;if(n!=null&&(i=a.getNodeById(n)))return{node:i}}}function XM(r){for(var e=[];r;)r=r.parentNode,r&&e.push(r);return e.reverse()}function iy(r,e){var t=XM(r);return ht(t,e)>=0}function Th(r,e){for(var t=[];r;){var a=r.dataIndex;t.push({name:r.name,dataIndex:a,value:e.getRawValue(a)}),r=r.parentNode}return t.reverse(),t}var iF=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.hasSymbolVisual=!0,t.ignoreStyleOnData=!0,t}return e.prototype.getInitialData=function(t){var a={name:t.name,children:t.data},i=t.leaves||{},n=new Ot(i,this,this.ecModel),o=ay.createTree(a,this,s);function s(h){h.wrapMethod("getItemModel",function(v,c){var p=o.getNodeByDataIndex(c);return p&&p.children.length&&p.isExpand||(v.parentModel=n),v})}var l=0;o.eachNode("preorder",function(h){h.depth>l&&(l=h.depth)});var u=t.expandAndCollapse,f=u&&t.initialTreeDepth>=0?t.initialTreeDepth:l;return o.root.eachNode("preorder",function(h){var v=h.hostTree.data.getRawDataItem(h.dataIndex);h.isExpand=v&&v.collapsed!=null?!v.collapsed:h.depth<=f}),o.data},e.prototype.getOrient=function(){var t=this.get("orient");return t==="horizontal"?t="LR":t==="vertical"&&(t="TB"),t},e.prototype.setZoom=function(t){this.option.zoom=t},e.prototype.setCenter=function(t){this.option.center=t},e.prototype.formatTooltip=function(t,a,i){for(var n=this.getData().tree,o=n.root.children[0],s=n.getNodeByDataIndex(t),l=s.getValue(),u=s.name;s&&s!==o;)u=s.parentNode.name+"."+u,s=s.parentNode;return re("nameValue",{name:u,value:l,noValue:isNaN(l)||l==null})},e.prototype.getDataParams=function(t){var a=r.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(t);return a.treeAncestors=Th(i,this),a.collapsed=!i.isExpand,a},e.type="series.tree",e.layoutMode="box",e.defaultOption={z:2,coordinateSystem:"view",left:"12%",top:"12%",right:"12%",bottom:"12%",layout:"orthogonal",edgeShape:"curve",edgeForkPosition:"50%",roam:!1,nodeScaleRatio:.4,center:null,zoom:1,orient:"LR",symbol:"emptyCircle",symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:"#ccc",width:1.5,curveness:.5},itemStyle:{color:"lightsteelblue",borderWidth:1.5},label:{show:!0},animationEasing:"linear",animationDuration:700,animationDurationUpdate:500},e}(Vt),nF=iF;function oF(r,e,t){for(var a=[r],i=[],n;n=a.pop();)if(i.push(n),n.isExpand){var o=n.children;if(o.length)for(var s=0;s=0;n--)t.push(i[n])}}function sF(r,e){r.eachSeriesByType("tree",function(t){lF(t,e)})}function lF(r,e){var t=BG(r,e);r.layoutInfo=t;var a=r.get("layout"),i=0,n=0,o=null;a==="radial"?(i=2*Math.PI,n=Math.min(t.height,t.width)/2,o=Z1(function(_,S){return(_.parentNode===S.parentNode?1:2)/_.depth})):(i=t.width,n=t.height,o=Z1());var s=r.getData().tree.root,l=s.children[0];if(l){OG(s),oF(l,NG,o),s.hierNode.modifier=-l.hierNode.prelim,$o(l,VG);var u=l,f=l,h=l;$o(l,function(_){var S=_.getLayout().x;Sf.getLayout().x&&(f=_),_.depth>h.depth&&(h=_)});var v=u===f?1:o(u,f)/2,c=v-u.getLayout().x,p=0,d=0,g=0,y=0;if(a==="radial")p=i/(f.getLayout().x+v+c),d=n/(h.depth-1||1),$o(l,function(_){g=(_.getLayout().x+c)*p,y=(_.depth-1)*d;var S=os(g,y);_.setLayout({x:S.x,y:S.y,rawX:g,rawY:y},!0)});else{var m=r.getOrient();m==="RL"||m==="LR"?(d=n/(f.getLayout().x+v+c),p=i/(h.depth-1||1),$o(l,function(_){y=(_.getLayout().x+c)*d,g=m==="LR"?(_.depth-1)*p:i-(_.depth-1)*p,_.setLayout({x:g,y},!0)})):(m==="TB"||m==="BT")&&(p=i/(f.getLayout().x+v+c),d=n/(h.depth-1||1),$o(l,function(_){g=(_.getLayout().x+c)*p,y=m==="TB"?(_.depth-1)*d:n-(_.depth-1)*d,_.setLayout({x:g,y},!0)}))}}}function uF(r){r.eachSeriesByType("tree",function(e){var t=e.getData(),a=t.tree;a.eachNode(function(i){var n=i.getModel(),o=n.getModel("itemStyle").getItemStyle(),s=t.ensureUniqueItemVisual(i.dataIndex,"style");B(s,o)})})}function fF(r){r.registerAction({type:"treeExpandAndCollapse",event:"treeExpandAndCollapse",update:"update"},function(e,t){t.eachComponent({mainType:"series",subType:"tree",query:e},function(a){var i=e.dataIndex,n=a.getData().tree,o=n.getNodeByDataIndex(i);o.isExpand=!o.isExpand})}),r.registerAction({type:"treeRoam",event:"treeRoam",update:"none"},function(e,t,a){t.eachComponent({mainType:"series",subType:"tree",query:e},function(i){var n=i.coordinateSystem,o=ey(n,e,void 0,a);i.setCenter&&i.setCenter(o.center),i.setZoom&&i.setZoom(o.zoom)})})}function hF(r){r.registerChartView(XG),r.registerSeriesModel(nF),r.registerLayout(sF),r.registerVisual(uF),fF(r)}var J1=["treemapZoomToNode","treemapRender","treemapMove"];function vF(r){for(var e=0;e1;)n=n.parentNode;var o=Np(r.ecModel,n.name||n.dataIndex+"",a);i.setVisual("decal",o)})}var cF=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.preventUsingHoverLayer=!0,t}return e.prototype.getInitialData=function(t,a){var i={name:t.name,children:t.data};KM(i);var n=t.levels||[],o=this.designatedVisualItemStyle={},s=new Ot({itemStyle:o},this,a);n=t.levels=pF(n,a);var l=G(n||[],function(h){return new Ot(h,s,a)},this),u=ay.createTree(i,this,f);function f(h){h.wrapMethod("getItemModel",function(v,c){var p=u.getNodeByDataIndex(c),d=p?l[p.depth]:null;return v.parentModel=d||s,v})}return u.data},e.prototype.optionUpdated=function(){this.resetViewRoot()},e.prototype.formatTooltip=function(t,a,i){var n=this.getData(),o=this.getRawValue(t),s=n.getName(t);return re("nameValue",{name:s,value:o})},e.prototype.getDataParams=function(t){var a=r.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(t);return a.treeAncestors=Th(i,this),a.treePathInfo=a.treeAncestors,a},e.prototype.setLayoutInfo=function(t){this.layoutInfo=this.layoutInfo||{},B(this.layoutInfo,t)},e.prototype.mapIdToIndex=function(t){var a=this._idIndexMap;a||(a=this._idIndexMap=q(),this._idIndexMapCount=0);var i=a.get(t);return i==null&&a.set(t,i=this._idIndexMapCount++),i},e.prototype.getViewRoot=function(){return this._viewRoot},e.prototype.resetViewRoot=function(t){t?this._viewRoot=t:t=this._viewRoot;var a=this.getRawData().tree.root;(!t||t!==a&&!a.contains(t))&&(this._viewRoot=a)},e.prototype.enableAriaDecal=function(){qM(this)},e.type="series.treemap",e.layoutMode="box",e.defaultOption={progressive:0,left:"center",top:"middle",width:"80%",height:"80%",sort:!0,clipWindow:"origin",squareRatio:.5*(1+Math.sqrt(5)),leafDepth:null,drillDownIcon:"\u25B6",zoomToNodeRatio:.32*.32,roam:!0,nodeClick:"zoomToNode",animation:!0,animationDurationUpdate:900,animationEasing:"quinticInOut",breadcrumb:{show:!0,height:22,left:"center",top:"bottom",emptyItemWidth:25,itemStyle:{color:"rgba(0,0,0,0.7)",textStyle:{color:"#fff"}}},label:{show:!0,distance:0,padding:5,position:"inside",color:"#fff",overflow:"truncate"},upperLabel:{show:!1,position:[0,"50%"],height:20,overflow:"truncate",verticalAlign:"middle"},itemStyle:{color:null,colorAlpha:null,colorSaturation:null,borderWidth:0,gapWidth:0,borderColor:"#fff",borderColorSaturation:null},emphasis:{upperLabel:{show:!0,position:[0,"50%"],overflow:"truncate",verticalAlign:"middle"}},visualDimension:0,visualMin:null,visualMax:null,color:[],colorAlpha:null,colorSaturation:null,colorMappingBy:"index",visibleMin:10,childrenVisibleMin:null,levels:[]},e}(Vt);function KM(r){var e=0;A(r.children,function(a){KM(a);var i=a.value;z(i)&&(i=i[0]),e+=i});var t=r.value;z(t)&&(t=t[0]),(t==null||isNaN(t))&&(t=e),t<0&&(t=0),z(r.value)?r.value[0]=t:r.value=t}function pF(r,e){var t=Pt(e.get("color")),a=Pt(e.get(["aria","decal","decals"]));if(!!t){r=r||[];var i,n;A(r,function(s){var l=new Ot(s),u=l.get("color"),f=l.get("decal");(l.get(["itemStyle","color"])||u&&u!=="none")&&(i=!0),(l.get(["itemStyle","decal"])||f&&f!=="none")&&(n=!0)});var o=r[0]||(r[0]={});return i||(o.color=t.slice()),!n&&a&&(o.decal=a.slice()),r}}var dF=cF,gF=8,j1=8,ac=5,yF=function(){function r(e){this.group=new rt,e.add(this.group)}return r.prototype.render=function(e,t,a,i){var n=e.getModel("breadcrumb"),o=this.group;if(o.removeAll(),!(!n.get("show")||!a)){var s=n.getModel("itemStyle"),l=s.getModel("textStyle"),u={pos:{left:n.get("left"),right:n.get("right"),top:n.get("top"),bottom:n.get("bottom")},box:{width:t.getWidth(),height:t.getHeight()},emptyItemWidth:n.get("emptyItemWidth"),totalWidth:0,renderList:[]};this._prepare(a,u,l),this._renderContent(e,u,s,l,i),hh(o,u.pos,u.box)}},r.prototype._prepare=function(e,t,a){for(var i=e;i;i=i.parentNode){var n=Jt(i.getModel().get("name"),""),o=a.getTextRect(n),s=Math.max(o.width+gF*2,t.emptyItemWidth);t.totalWidth+=s+j1,t.renderList.push({node:i,text:n,width:s})}},r.prototype._renderContent=function(e,t,a,i,n){for(var o=0,s=t.emptyItemWidth,l=e.get(["breadcrumb","height"]),u=DE(t.pos,t.box),f=t.totalWidth,h=t.renderList,v=h.length-1;v>=0;v--){var c=h[v],p=c.node,d=c.width,g=c.text;f>u.width&&(f-=d-s,d=s,g=null);var y=new Ee({shape:{points:mF(o,0,d,l,v===h.length-1,v===0)},style:Q(a.getItemStyle(),{lineJoin:"bevel"}),textContent:new Tt({style:{text:g,fill:i.getTextColor(),font:i.getFont()}}),textConfig:{position:"inside"},z2:lo*1e4,onclick:it(n,p)});y.disableLabelAnimation=!0,this.group.add(y),_F(y,e,p),o+=d+j1}},r.prototype.remove=function(){this.group.removeAll()},r}();function mF(r,e,t,a,i,n){var o=[[i?r:r-ac,e],[r+t,e],[r+t,e+a],[i?r:r-ac,e+a]];return!n&&o.splice(2,0,[r+t+ac,e+a/2]),!i&&o.push([r,e+a/2]),o}function _F(r,e,t){at(r).eventData={componentType:"series",componentSubType:"treemap",componentIndex:e.componentIndex,seriesIndex:e.seriesIndex,seriesName:e.name,seriesType:"treemap",selfType:"breadcrumb",nodeData:{dataIndex:t&&t.dataIndex,name:t&&t.name},treePathInfo:t&&Th(t,e)}}var SF=yF,xF=function(){function r(){this._storage=[],this._elExistsMap={}}return r.prototype.add=function(e,t,a,i,n){return this._elExistsMap[e.id]?!1:(this._elExistsMap[e.id]=!0,this._storage.push({el:e,target:t,duration:a,delay:i,easing:n}),!0)},r.prototype.finished=function(e){return this._finishedCallback=e,this},r.prototype.start=function(){for(var e=this,t=this._storage.length,a=function(){t--,t<=0&&(e._storage.length=0,e._elExistsMap={},e._finishedCallback&&e._finishedCallback())},i=0,n=this._storage.length;ieS||Math.abs(t.dy)>eS)){var a=this.seriesModel.getData().tree.root;if(!a)return;var i=a.getLayout();if(!i)return;this.api.dispatchAction({type:"treemapMove",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:i.x+t.dx,y:i.y+t.dy,width:i.width,height:i.height}})}},e.prototype._onZoom=function(t){var a=t.originX,i=t.originY;if(this._state!=="animating"){var n=this.seriesModel.getData().tree.root;if(!n)return;var o=n.getLayout();if(!o)return;var s=new ut(o.x,o.y,o.width,o.height),l=this.seriesModel.layoutInfo;a-=l.x,i-=l.y;var u=ir();Br(u,u,[-a,-i]),qd(u,u,[t.scale,t.scale]),Br(u,u,[a,i]),s.applyTransform(u),this.api.dispatchAction({type:"treemapRender",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:s.x,y:s.y,width:s.width,height:s.height}})}},e.prototype._initEvents=function(t){var a=this;t.on("click",function(i){if(a._state==="ready"){var n=a.seriesModel.get("nodeClick",!0);if(!!n){var o=a.findTarget(i.offsetX,i.offsetY);if(!!o){var s=o.node;if(s.getLayout().isLeafRoot)a._rootToNode(o);else if(n==="zoomToNode")a._zoomToNode(o);else if(n==="link"){var l=s.hostTree.data.getItemModel(s.dataIndex),u=l.get("link",!0),f=l.get("target",!0)||"blank";u&&ff(u,f)}}}}},this)},e.prototype._renderBreadcrumb=function(t,a,i){var n=this;i||(i=t.get("leafDepth",!0)!=null?{node:t.getViewRoot()}:this.findTarget(a.getWidth()/2,a.getHeight()/2),i||(i={node:t.getData().tree.root})),(this._breadcrumb||(this._breadcrumb=new SF(this.group))).render(t,a,i.node,function(o){n._state!=="animating"&&(iy(t.getViewRoot(),o)?n._rootToNode({node:o}):n._zoomToNode({node:o}))})},e.prototype.remove=function(){this._clearController(),this._containerGroup&&this._containerGroup.removeAll(),this._storage=Uo(),this._state="ready",this._breadcrumb&&this._breadcrumb.remove()},e.prototype.dispose=function(){this._clearController()},e.prototype._zoomToNode=function(t){this.api.dispatchAction({type:"treemapZoomToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},e.prototype._rootToNode=function(t){this.api.dispatchAction({type:"treemapRootToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},e.prototype.findTarget=function(t,a){var i,n=this.seriesModel.getViewRoot();return n.eachNode({attr:"viewChildren",order:"preorder"},function(o){var s=this._storage.background[o.getRawIndex()];if(s){var l=s.transformCoordToLocal(t,a),u=s.shape;if(u.x<=l[0]&&l[0]<=u.x+u.width&&u.y<=l[1]&&l[1]<=u.y+u.height)i={node:o,offsetX:l[0],offsetY:l[1]};else return!1}},this),i},e.type="treemap",e}(Rt);function Uo(){return{nodeGroup:[],background:[],content:[]}}function MF(r,e,t,a,i,n,o,s,l,u){if(!o)return;var f=o.getLayout(),h=r.getData(),v=o.getModel();if(h.setItemGraphicEl(o.dataIndex,null),!f||!f.isInView)return;var c=f.width,p=f.height,d=f.borderWidth,g=f.invisible,y=o.getRawIndex(),m=s&&s.getRawIndex(),_=o.viewChildren,S=f.upperHeight,w=_&&_.length,x=v.getModel("itemStyle"),b=v.getModel(["emphasis","itemStyle"]),T=v.getModel(["blur","itemStyle"]),C=v.getModel(["select","itemStyle"]),M=x.get("borderRadius")||0,D=ft("nodeGroup",ld);if(!D)return;if(l.add(D),D.x=f.x||0,D.y=f.y||0,D.markRedraw(),Mf(D).nodeWidth=c,Mf(D).nodeHeight=p,f.isAboveViewRoot)return D;var L=ft("background",tS,u,TF);L&&V(D,L,w&&f.upperLabelHeight);var I=v.getModel("emphasis"),P=I.get("focus"),R=I.get("blurScope"),E=I.get("disabled"),N=P==="ancestor"?o.getAncestorsIndices():P==="descendant"?o.getDescendantIndices():P;if(w)Es(D)&&Bi(D,!1),L&&(Bi(L,!E),h.setItemGraphicEl(o.dataIndex,L),Dp(L,N,R));else{var k=ft("content",tS,u,CF);k&&F(D,k),L.disableMorphing=!0,L&&Es(L)&&Bi(L,!1),Bi(D,!E),h.setItemGraphicEl(o.dataIndex,D),Dp(D,N,R)}return D;function V(pt,et,gt){var lt=at(et);if(lt.dataIndex=o.dataIndex,lt.seriesIndex=r.seriesIndex,et.setShape({x:0,y:0,width:c,height:p,r:M}),g)W(et);else{et.invisible=!1;var X=o.getVisual("style"),nt=X.stroke,zt=iS(x);zt.fill=nt;var mt=Di(b);mt.fill=b.get("borderColor");var Wt=Di(T);Wt.fill=T.get("borderColor");var Ft=Di(C);if(Ft.fill=C.get("borderColor"),gt){var ve=c-2*d;Z(et,nt,X.opacity,{x:d,y:0,width:ve,height:S})}else et.removeTextContent();et.setStyle(zt),et.ensureState("emphasis").style=mt,et.ensureState("blur").style=Wt,et.ensureState("select").style=Ft,tn(et)}pt.add(et)}function F(pt,et){var gt=at(et);gt.dataIndex=o.dataIndex,gt.seriesIndex=r.seriesIndex;var lt=Math.max(c-2*d,0),X=Math.max(p-2*d,0);if(et.culling=!0,et.setShape({x:d,y:d,width:lt,height:X,r:M}),g)W(et);else{et.invisible=!1;var nt=o.getVisual("style"),zt=nt.fill,mt=iS(x);mt.fill=zt,mt.decal=nt.decal;var Wt=Di(b),Ft=Di(T),ve=Di(C);Z(et,zt,nt.opacity,null),et.setStyle(mt),et.ensureState("emphasis").style=Wt,et.ensureState("blur").style=Ft,et.ensureState("select").style=ve,tn(et)}pt.add(et)}function W(pt){!pt.invisible&&n.push(pt)}function Z(pt,et,gt,lt){var X=v.getModel(lt?aS:rS),nt=Jt(v.get("name"),null),zt=X.getShallow("show");me(pt,oe(v,lt?aS:rS),{defaultText:zt?nt:null,inheritColor:et,defaultOpacity:gt,labelFetcher:r,labelDataIndex:o.dataIndex});var mt=pt.getTextContent();if(!!mt){var Wt=mt.style,Ft=$d(Wt.padding||0);lt&&(pt.setTextConfig({layoutRect:lt}),mt.disableLabelLayout=!0),mt.beforeUpdate=function(){var Ur=Math.max((lt?lt.width:pt.shape.width)-Ft[1]-Ft[3],0),Ae=Math.max((lt?lt.height:pt.shape.height)-Ft[0]-Ft[2],0);(Wt.width!==Ur||Wt.height!==Ae)&&mt.setStyle({width:Ur,height:Ae})},Wt.truncateMinChar=2,Wt.lineOverflow="truncate",tt(Wt,lt,f);var ve=mt.getState("emphasis");tt(ve?ve.style:null,lt,f)}}function tt(pt,et,gt){var lt=pt?pt.text:null;if(!et&>.isLeafRoot&<!=null){var X=r.get("drillDownIcon",!0);pt.text=X?X+" "+lt:lt}}function ft(pt,et,gt,lt){var X=m!=null&&t[pt][m],nt=i[pt];return X?(t[pt][m]=null,Dt(nt,X)):g||(X=new et,X instanceof nr&&(X.z2=DF(gt,lt)),At(nt,X)),e[pt][y]=X}function Dt(pt,et){var gt=pt[y]={};et instanceof ld?(gt.oldX=et.x,gt.oldY=et.y):gt.oldShape=B({},et.shape)}function At(pt,et){var gt=pt[y]={},lt=o.parentNode,X=et instanceof rt;if(lt&&(!a||a.direction==="drillDown")){var nt=0,zt=0,mt=i.background[lt.getRawIndex()];!a&&mt&&mt.oldShape&&(nt=mt.oldShape.width,zt=mt.oldShape.height),X?(gt.oldX=0,gt.oldY=zt):gt.oldShape={x:nt,y:zt,width:0,height:0}}gt.fadein=!X}}function DF(r,e){return r*bF+e}var LF=AF,Zs=A,IF=J,Df=-1,ny=function(){function r(e){var t=e.mappingMethod,a=e.type,i=this.option=j(e);this.type=a,this.mappingMethod=t,this._normalizeData=EF[t];var n=r.visualHandlers[a];this.applyVisual=n.applyVisual,this.getColorMapper=n.getColorMapper,this._normalizedToVisual=n._normalizedToVisual[t],t==="piecewise"?(ic(i),PF(i)):t==="category"?i.categories?RF(i):ic(i,!0):(Te(t!=="linear"||i.dataExtent),ic(i))}return r.prototype.mapValueToVisual=function(e){var t=this._normalizeData(e);return this._normalizedToVisual(t,e)},r.prototype.getNormalizer=function(){return U(this._normalizeData,this)},r.listVisualTypes=function(){return yt(r.visualHandlers)},r.isValidType=function(e){return r.visualHandlers.hasOwnProperty(e)},r.eachVisual=function(e,t,a){J(e)?A(e,t,a):t.call(a,e)},r.mapVisual=function(e,t,a){var i,n=z(e)?[]:J(e)?{}:(i=!0,null);return r.eachVisual(e,function(o,s){var l=t.call(a,o,s);i?n=l:n[s]=l}),n},r.retrieveVisuals=function(e){var t={},a;return e&&Zs(r.visualHandlers,function(i,n){e.hasOwnProperty(n)&&(t[n]=e[n],a=!0)}),a?t:null},r.prepareVisualTypes=function(e){if(z(e))e=e.slice();else if(IF(e)){var t=[];Zs(e,function(a,i){t.push(i)}),e=t}else return[];return e.sort(function(a,i){return i==="color"&&a!=="color"&&a.indexOf("color")===0?1:-1}),e},r.dependsOn=function(e,t){return t==="color"?!!(e&&e.indexOf(t)===0):e===t},r.findPieceIndex=function(e,t,a){for(var i,n=1/0,o=0,s=t.length;o=0;n--)a[n]==null&&(delete t[e[n]],e.pop())}function ic(r,e){var t=r.visual,a=[];J(t)?Zs(t,function(n){a.push(n)}):t!=null&&a.push(t);var i={color:1,symbol:1};!e&&a.length===1&&!i.hasOwnProperty(r.type)&&(a[1]=a[0]),QM(r,a)}function hu(r){return{applyVisual:function(e,t,a){var i=this.mapValueToVisual(e);a("color",r(t("color"),i))},_normalizedToVisual:ud([0,1])}}function nS(r){var e=this.option.visual;return e[Math.round(Lt(r,[0,1],[0,e.length-1],!0))]||{}}function Yo(r){return function(e,t,a){a(r,this.mapValueToVisual(e))}}function ss(r){var e=this.option.visual;return e[this.option.loop&&r!==Df?r%e.length:r]}function Li(){return this.option.visual[0]}function ud(r){return{linear:function(e){return Lt(e,r,this.option.visual,!0)},category:ss,piecewise:function(e,t){var a=fd.call(this,t);return a==null&&(a=Lt(e,r,this.option.visual,!0)),a},fixed:Li}}function fd(r){var e=this.option,t=e.pieceList;if(e.hasSpecialVisual){var a=ny.findPieceIndex(r,t),i=t[a];if(i&&i.visual)return i.visual[this.type]}}function QM(r,e){return r.visual=e,r.type==="color"&&(r.parsedVisual=G(e,function(t){var a=ze(t);return a||[0,0,0,1]})),e}var EF={linear:function(r){return Lt(r,this.option.dataExtent,[0,1],!0)},piecewise:function(r){var e=this.option.pieceList,t=ny.findPieceIndex(r,e,!0);if(t!=null)return Lt(t,[0,e.length-1],[0,1],!0)},category:function(r){var e=this.option.categories?this.option.categoryMap[r]:r;return e==null?Df:e},fixed:qt};function vu(r,e,t){return r?e<=t:e=t.length||d===t[d.depth]){var y=zF(i,l,d,g,p,a);jM(d,y,t,a)}})}}}function NF(r,e,t){var a=B({},e),i=t.designatedVisualItemStyle;return A(["color","colorAlpha","colorSaturation"],function(n){i[n]=e[n];var o=r.get(n);i[n]=null,o!=null&&(a[n]=o)}),a}function oS(r){var e=nc(r,"color");if(e){var t=nc(r,"colorAlpha"),a=nc(r,"colorSaturation");return a&&(e=hs(e,null,null,a)),t&&(e=Ku(e,t)),e}}function VF(r,e){return e!=null?hs(e,null,null,r):null}function nc(r,e){var t=r[e];if(t!=null&&t!=="none")return t}function BF(r,e,t,a,i,n){if(!(!n||!n.length)){var o=oc(e,"color")||i.color!=null&&i.color!=="none"&&(oc(e,"colorAlpha")||oc(e,"colorSaturation"));if(!!o){var s=e.get("visualMin"),l=e.get("visualMax"),u=t.dataExtent.slice();s!=null&&su[1]&&(u[1]=l);var f=e.get("colorMappingBy"),h={type:o.name,dataExtent:u,visual:o.range};h.type==="color"&&(f==="index"||f==="id")?(h.mappingMethod="category",h.loop=!0):h.mappingMethod="linear";var v=new ue(h);return JM(v).drColorMappingBy=f,v}}}function oc(r,e){var t=r.get(e);return z(t)&&t.length?{name:e,range:t}:null}function zF(r,e,t,a,i,n){var o=B({},e);if(i){var s=i.type,l=s==="color"&&JM(i).drColorMappingBy,u=l==="index"?a:l==="id"?n.mapIdToIndex(t.getId()):t.getValue(r.get("visualDimension"));o[s]=i.mapValueToVisual(u)}return o}var Xs=Math.max,Lf=Math.min,sS=ie,oy=A,tD=["itemStyle","borderWidth"],GF=["itemStyle","gapWidth"],FF=["upperLabel","show"],HF=["upperLabel","height"],WF={seriesType:"treemap",reset:function(r,e,t,a){var i=t.getWidth(),n=t.getHeight(),o=r.option,s=jt(r.getBoxLayoutParams(),{width:t.getWidth(),height:t.getHeight()}),l=o.size||[],u=H(sS(s.width,l[0]),i),f=H(sS(s.height,l[1]),n),h=a&&a.type,v=["treemapZoomToNode","treemapRootToNode"],c=Ys(a,v,r),p=h==="treemapRender"||h==="treemapMove"?a.rootRect:null,d=r.getViewRoot(),g=XM(d);if(h!=="treemapMove"){var y=h==="treemapZoomToNode"?qF(r,c,d,u,f):p?[p.width,p.height]:[u,f],m=o.sort;m&&m!=="asc"&&m!=="desc"&&(m="desc");var _={squareRatio:o.squareRatio,sort:m,leafDepth:o.leafDepth};d.hostTree.clearLayouts();var S={x:0,y:0,width:y[0],height:y[1],area:y[0]*y[1]};d.setLayout(S),eD(d,_,!1,0),S=d.getLayout(),oy(g,function(x,b){var T=(g[b+1]||d).getValue();x.setLayout(B({dataExtent:[T,T],borderWidth:0,upperHeight:0},S))})}var w=r.getData().tree.root;w.setLayout(KF(s,p,c),!0),r.setLayoutInfo(s),rD(w,new ut(-s.x,-s.y,i,n),g,d,0)}};function eD(r,e,t,a){var i,n;if(!r.isRemoved()){var o=r.getLayout();i=o.width,n=o.height;var s=r.getModel(),l=s.get(tD),u=s.get(GF)/2,f=aD(s),h=Math.max(l,f),v=l-u,c=h-u;r.setLayout({borderWidth:l,upperHeight:h,upperLabelHeight:f},!0),i=Xs(i-2*v,0),n=Xs(n-v-c,0);var p=i*n,d=$F(r,s,p,e,t,a);if(!!d.length){var g={x:v,y:c,width:i,height:n},y=Lf(i,n),m=1/0,_=[];_.area=0;for(var S=0,w=d.length;S=0;l--){var u=i[a==="asc"?o-l-1:l].getValue();u/t*es[1]&&(s[1]=u)})),{sum:a,dataExtent:s}}function XF(r,e,t){for(var a=0,i=1/0,n=0,o=void 0,s=r.length;na&&(a=o));var l=r.area*r.area,u=e*e*t;return l?Xs(u*a/l,l/(u*i)):1/0}function lS(r,e,t,a,i){var n=e===t.width?0:1,o=1-n,s=["x","y"],l=["width","height"],u=t[s[n]],f=e?r.area/e:0;(i||f>t[l[o]])&&(f=t[l[o]]);for(var h=0,v=r.length;h_m&&(u=_m),n=s}ua&&(a=e);var n=a%2?a+2:a+3;i=[];for(var o=0;o0&&(w[0]=-w[0],w[1]=-w[1]);var b=S[0]<0?-1:1;if(n.__position!=="start"&&n.__position!=="end"){var T=-Math.atan2(S[1],S[0]);h[0].8?"left":v[0]<-.8?"right":"center",d=v[1]>.8?"top":v[1]<-.8?"bottom":"middle";break;case"start":n.x=-v[0]*y+f[0],n.y=-v[1]*m+f[1],p=v[0]>.8?"right":v[0]<-.8?"left":"center",d=v[1]>.8?"bottom":v[1]<-.8?"top":"middle";break;case"insideStartTop":case"insideStart":case"insideStartBottom":n.x=y*b+f[0],n.y=f[1]+C,p=S[0]<0?"right":"left",n.originX=-y*b,n.originY=-C;break;case"insideMiddleTop":case"insideMiddle":case"insideMiddleBottom":case"middle":n.x=x[0],n.y=x[1]+C,p="center",n.originY=-C;break;case"insideEndTop":case"insideEnd":case"insideEndBottom":n.x=-y*b+h[0],n.y=h[1]+C,p=S[0]>=0?"right":"left",n.originX=y*b,n.originY=-C;break}n.scaleX=n.scaleY=o,n.setStyle({verticalAlign:n.__verticalAlign||d,align:n.__align||p})}},e}(rt),ly=d3,g3=function(){function r(e){this.group=new rt,this._LineCtor=e||ly}return r.prototype.updateData=function(e){var t=this;this._progressiveEls=null;var a=this,i=a.group,n=a._lineData;a._lineData=e,n||i.removeAll();var o=cS(e);e.diff(n).add(function(s){t._doAdd(e,s,o)}).update(function(s,l){t._doUpdate(n,e,l,s,o)}).remove(function(s){i.remove(n.getItemGraphicEl(s))}).execute()},r.prototype.updateLayout=function(){var e=this._lineData;!e||e.eachItemGraphicEl(function(t,a){t.updateLayout(e,a)},this)},r.prototype.incrementalPrepareUpdate=function(e){this._seriesScope=cS(e),this._lineData=null,this.group.removeAll()},r.prototype.incrementalUpdate=function(e,t){this._progressiveEls=[];function a(s){!s.isGroup&&!y3(s)&&(s.incremental=!0,s.ensureState("emphasis").hoverLayer=!0)}for(var i=e.start;i0}function cS(r){var e=r.hostModel,t=e.getModel("emphasis");return{lineStyle:e.getModel("lineStyle").getLineStyle(),emphasisLineStyle:t.getModel(["lineStyle"]).getLineStyle(),blurLineStyle:e.getModel(["blur","lineStyle"]).getLineStyle(),selectLineStyle:e.getModel(["select","lineStyle"]).getLineStyle(),emphasisDisabled:t.get("disabled"),blurScope:t.get("blurScope"),focus:t.get("focus"),labelStatesModels:oe(e)}}function pS(r){return isNaN(r[0])||isNaN(r[1])}function hc(r){return r&&!pS(r[0])&&!pS(r[1])}var uy=g3,vc=[],cc=[],pc=[],An=ae,dc=Hi,dS=Math.abs;function gS(r,e,t){for(var a=r[0],i=r[1],n=r[2],o=1/0,s,l=t*t,u=.1,f=.1;f<=.9;f+=.1){vc[0]=An(a[0],i[0],n[0],f),vc[1]=An(a[1],i[1],n[1],f);var h=dS(dc(vc,e)-l);h=0?s=s+u:s=s-u:p>=0?s=s-u:s=s+u}return s}function gc(r,e){var t=[],a=Ds,i=[[],[],[]],n=[[],[]],o=[];e/=2,r.eachEdge(function(s,l){var u=s.getLayout(),f=s.getVisual("fromSymbol"),h=s.getVisual("toSymbol");u.__original||(u.__original=[ta(u[0]),ta(u[1])],u[2]&&u.__original.push(ta(u[2])));var v=u.__original;if(u[2]!=null){if(Se(i[0],v[0]),Se(i[1],v[2]),Se(i[2],v[1]),f&&f!=="none"){var c=us(s.node1),p=gS(i,v[0],c*e);a(i[0][0],i[1][0],i[2][0],p,t),i[0][0]=t[3],i[1][0]=t[4],a(i[0][1],i[1][1],i[2][1],p,t),i[0][1]=t[3],i[1][1]=t[4]}if(h&&h!=="none"){var c=us(s.node2),p=gS(i,v[1],c*e);a(i[0][0],i[1][0],i[2][0],p,t),i[1][0]=t[1],i[2][0]=t[2],a(i[0][1],i[1][1],i[2][1],p,t),i[1][1]=t[1],i[2][1]=t[2]}Se(u[0],i[0]),Se(u[1],i[2]),Se(u[2],i[1])}else{if(Se(n[0],v[0]),Se(n[1],v[1]),Ni(o,n[1],n[0]),tl(o,o),f&&f!=="none"){var c=us(s.node1);tp(n[0],n[0],o,c*e)}if(h&&h!=="none"){var c=us(s.node2);tp(n[1],n[1],o,-c*e)}Se(u[0],n[0]),Se(u[1],n[1])}})}function yS(r){return r.type==="view"}var m3=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,a){var i=new dl,n=new uy,o=this.group;this._controller=new _l(a.getZr()),this._controllerHost={target:o},o.add(i.group),o.add(n.group),this._symbolDraw=i,this._lineDraw=n,this._firstRender=!0},e.prototype.render=function(t,a,i){var n=this,o=t.coordinateSystem;this._model=t;var s=this._symbolDraw,l=this._lineDraw,u=this.group;if(yS(o)){var f={x:o.x,y:o.y,scaleX:o.scaleX,scaleY:o.scaleY};this._firstRender?u.attr(f):wt(u,f,t)}gc(t.getGraph(),ls(t));var h=t.getData();s.updateData(h);var v=t.getEdgeData();l.updateData(v),this._updateNodeAndLinkScale(),this._updateController(t,a,i),clearTimeout(this._layoutTimeout);var c=t.forceLayout,p=t.get(["force","layoutAnimation"]);c&&this._startForceLayoutIteration(c,p),h.graph.eachNode(function(m){var _=m.dataIndex,S=m.getGraphicEl(),w=m.getModel();if(!!S){S.off("drag").off("dragend");var x=w.get("draggable");x&&S.on("drag",function(){c&&(c.warmUp(),!n._layouting&&n._startForceLayoutIteration(c,p),c.setFixed(_),h.setItemLayout(_,[S.x,S.y]))}).on("dragend",function(){c&&c.setUnfixed(_)}),S.setDraggable(x&&!!c,!!w.get("cursor"));var b=w.get(["emphasis","focus"]);b==="adjacency"&&(at(S).focus=m.getAdjacentDataIndices())}}),h.graph.eachEdge(function(m){var _=m.getGraphicEl(),S=m.getModel().get(["emphasis","focus"]);!_||S==="adjacency"&&(at(_).focus={edge:[m.dataIndex],node:[m.node1.dataIndex,m.node2.dataIndex]})});var d=t.get("layout")==="circular"&&t.get(["circular","rotateLabel"]),g=h.getLayout("cx"),y=h.getLayout("cy");h.eachItemGraphicEl(function(m,_){var S=h.getItemModel(_),w=S.get(["label","rotate"])||0,x=m.getSymbolPath();if(d){var b=h.getItemLayout(_),T=Math.atan2(b[1]-y,b[0]-g);T<0&&(T=Math.PI*2+T);var C=b[0]=0&&e.call(t,a[n],n)},r.prototype.eachEdge=function(e,t){for(var a=this.edges,i=a.length,n=0;n=0&&a[n].node1.dataIndex>=0&&a[n].node2.dataIndex>=0&&e.call(t,a[n],n)},r.prototype.breadthFirstTraverse=function(e,t,a,i){if(t instanceof Ii||(t=this._nodesMap[Mn(t)]),!!t){for(var n=a==="out"?"outEdges":a==="in"?"inEdges":"edges",o=0;o=0&&l.node2.dataIndex>=0});for(var n=0,o=i.length;n=0&&this[r][e].setItemVisual(this.dataIndex,t,a)},getVisual:function(t){return this[r][e].getItemVisual(this.dataIndex,t)},setLayout:function(t,a){this.dataIndex>=0&&this[r][e].setItemLayout(this.dataIndex,t,a)},getLayout:function(){return this[r][e].getItemLayout(this.dataIndex)},getGraphicEl:function(){return this[r][e].getItemGraphicEl(this.dataIndex)},getRawIndex:function(){return this[r][e].getRawIndex(this.dataIndex)}}}Qt(Ii,hD("hostGraph","data"));Qt(fD,hD("hostGraph","edgeData"));var x3=S3;function vD(r,e,t,a,i){for(var n=new x3(a),o=0;o "+v)),u++)}var c=t.get("coordinateSystem"),p;if(c==="cartesian2d"||c==="polar")p=ca(r,t);else{var d=ul.get(c),g=d?d.dimensions||[]:[];ht(g,"value")<0&&g.concat(["value"]);var y=xo(r,{coordDimensions:g,encodeDefine:t.getEncode()}).dimensions;p=new be(y,t),p.initData(r)}var m=new be(["value"],t);return m.initData(l,s),i&&i(p,m),YM({mainData:p,struct:n,structAttr:"graph",datas:{node:p,edge:m},datasAttr:{node:"data",edge:"edgeData"}}),n.update(),n}var w3=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.hasSymbolVisual=!0,t}return e.prototype.init=function(t){r.prototype.init.apply(this,arguments);var a=this;function i(){return a._categoriesData}this.legendVisualProvider=new ml(i,i),this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},e.prototype.mergeOption=function(t){r.prototype.mergeOption.apply(this,arguments),this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},e.prototype.mergeDefaultAndTheme=function(t){r.prototype.mergeDefaultAndTheme.apply(this,arguments),Qi(t,"edgeLabel",["show"])},e.prototype.getInitialData=function(t,a){var i=t.edges||t.links||[],n=t.data||t.nodes||[],o=this;if(n&&i){a3(this);var s=vD(n,i,this,!0,l);return A(s.edges,function(u){i3(u.node1,u.node2,this,u.dataIndex)},this),s.data}function l(u,f){u.wrapMethod("getItemModel",function(p){var d=o._categoriesModels,g=p.getShallow("category"),y=d[g];return y&&(y.parentModel=p.parentModel,p.parentModel=y),p});var h=Ot.prototype.getModel;function v(p,d){var g=h.call(this,p,d);return g.resolveParentPath=c,g}f.wrapMethod("getItemModel",function(p){return p.resolveParentPath=c,p.getModel=v,p});function c(p){if(p&&(p[0]==="label"||p[1]==="label")){var d=p.slice();return p[0]==="label"?d[0]="edgeLabel":p[1]==="label"&&(d[1]="edgeLabel"),d}return p}}},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.getCategoriesData=function(){return this._categoriesData},e.prototype.formatTooltip=function(t,a,i){if(i==="edge"){var n=this.getData(),o=this.getDataParams(t,i),s=n.graph.getEdgeByIndex(t),l=n.getName(s.node1.dataIndex),u=n.getName(s.node2.dataIndex),f=[];return l!=null&&f.push(l),u!=null&&f.push(u),re("nameValue",{name:f.join(" > "),value:o.value,noValue:o.value==null})}var h=kC({series:this,dataIndex:t,multipleSeries:a});return h},e.prototype._updateCategoriesData=function(){var t=G(this.option.categories||[],function(i){return i.value!=null?i:B({value:0},i)}),a=new be(["value"],this);a.initData(t),this._categoriesData=a,this._categoriesModels=a.mapArray(function(i){return a.getItemModel(i)})},e.prototype.setZoom=function(t){this.option.zoom=t},e.prototype.setCenter=function(t){this.option.center=t},e.prototype.isAnimationEnabled=function(){return r.prototype.isAnimationEnabled.call(this)&&!(this.get("layout")==="force"&&this.get(["force","layoutAnimation"]))},e.type="series.graph",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={z:2,coordinateSystem:"view",legendHoverLink:!0,layout:null,circular:{rotateLabel:!1},force:{initLayout:null,repulsion:[0,50],gravity:.1,friction:.6,edgeLength:30,layoutAnimation:!0},left:"center",top:"center",symbol:"circle",symbolSize:10,edgeSymbol:["none","none"],edgeSymbolSize:10,edgeLabel:{position:"middle",distance:5},draggable:!1,roam:!1,center:null,zoom:1,nodeScaleRatio:.6,label:{show:!1,formatter:"{b}"},itemStyle:{},lineStyle:{color:"#aaa",width:1,opacity:.5},emphasis:{scale:!0,label:{show:!0}},select:{itemStyle:{borderColor:"#212121"}}},e}(Vt),b3=w3,T3={type:"graphRoam",event:"graphRoam",update:"none"};function C3(r){r.registerChartView(_3),r.registerSeriesModel(b3),r.registerProcessor(JF),r.registerVisual(jF),r.registerVisual(t3),r.registerLayout(n3),r.registerLayout(r.PRIORITY.VISUAL.POST_CHART_LAYOUT,s3),r.registerLayout(u3),r.registerCoordinateSystem("graphView",{dimensions:Sl.dimensions,create:h3}),r.registerAction({type:"focusNodeAdjacency",event:"focusNodeAdjacency",update:"series:focusNodeAdjacency"},qt),r.registerAction({type:"unfocusNodeAdjacency",event:"unfocusNodeAdjacency",update:"series:unfocusNodeAdjacency"},qt),r.registerAction(T3,function(e,t,a){t.eachComponent({mainType:"series",query:e},function(i){var n=i.coordinateSystem,o=ey(n,e,void 0,a);i.setCenter&&i.setCenter(o.center),i.setZoom&&i.setZoom(o.zoom)})})}var A3=function(){function r(){this.angle=0,this.width=10,this.r=10,this.x=0,this.y=0}return r}(),M3=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;return a.type="pointer",a}return e.prototype.getDefaultShape=function(){return new A3},e.prototype.buildPath=function(t,a){var i=Math.cos,n=Math.sin,o=a.r,s=a.width,l=a.angle,u=a.x-i(l)*s*(s>=o/3?1:2),f=a.y-n(l)*s*(s>=o/3?1:2);l=a.angle-Math.PI/2,t.moveTo(u,f),t.lineTo(a.x+i(l)*s,a.y+n(l)*s),t.lineTo(a.x+i(a.angle)*o,a.y+n(a.angle)*o),t.lineTo(a.x-i(l)*s,a.y-n(l)*s),t.lineTo(u,f)},e}(dt),D3=M3;function L3(r,e){var t=r.get("center"),a=e.getWidth(),i=e.getHeight(),n=Math.min(a,i),o=H(t[0],e.getWidth()),s=H(t[1],e.getHeight()),l=H(r.get("radius"),n/2);return{cx:o,cy:s,r:l}}function pu(r,e){var t=r==null?"":r+"";return e&&($(e)?t=e.replace("{value}",t):K(e)&&(t=e(r))),t}var I3=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){this.group.removeAll();var n=t.get(["axisLine","lineStyle","color"]),o=L3(t,i);this._renderMain(t,a,i,n,o),this._data=t.getData()},e.prototype.dispose=function(){},e.prototype._renderMain=function(t,a,i,n,o){var s=this.group,l=t.get("clockwise"),u=-t.get("startAngle")/180*Math.PI,f=-t.get("endAngle")/180*Math.PI,h=t.getModel("axisLine"),v=h.get("roundCap"),c=v?Tf:Re,p=h.get("show"),d=h.getModel("lineStyle"),g=d.get("width"),y=[u,f];$b(y,!l),u=y[0],f=y[1];for(var m=f-u,_=u,S=0;p&&S=T&&(C===0?0:n[C-1][0]).8?"bottom":"middle",align:P<-.4?"left":P>.4?"right":"center"},{inheritColor:F}),silent:!0}))}if(m.get("show")&&E!==S){var N=m.get("distance");N=N?N+f:f;for(var W=0;W<=w;W++){P=Math.cos(T),R=Math.sin(T);var Z=new ne({shape:{x1:P*(p-N)+v,y1:R*(p-N)+c,x2:P*(p-b-N)+v,y2:R*(p-b-N)+c},silent:!0,style:L});L.stroke==="auto"&&Z.setStyle({stroke:n((E+W/w)/S)}),h.add(Z),T+=M}T-=M}else T+=C}},e.prototype._renderPointer=function(t,a,i,n,o,s,l,u,f){var h=this.group,v=this._data,c=this._progressEls,p=[],d=t.get(["pointer","show"]),g=t.getModel("progress"),y=g.get("show"),m=t.getData(),_=m.mapDimension("value"),S=+t.get("min"),w=+t.get("max"),x=[S,w],b=[s,l];function T(M,D){var L=m.getItemModel(M),I=L.getModel("pointer"),P=H(I.get("width"),o.r),R=H(I.get("length"),o.r),E=t.get(["pointer","icon"]),N=I.get("offsetCenter"),k=H(N[0],o.r),V=H(N[1],o.r),F=I.get("keepAspect"),W;return E?W=Kt(E,k-P/2,V-R,P,R,null,F):W=new D3({shape:{angle:-Math.PI/2,width:P,r:R,x:k,y:V}}),W.rotation=-(D+Math.PI/2),W.x=o.cx,W.y=o.cy,W}function C(M,D){var L=g.get("roundCap"),I=L?Tf:Re,P=g.get("overlap"),R=P?g.get("width"):f/m.count(),E=P?o.r-R:o.r-(M+1)*R,N=P?o.r:o.r-M*R,k=new I({shape:{startAngle:s,endAngle:D,cx:o.cx,cy:o.cy,clockwise:u,r0:E,r:N}});return P&&(k.z2=w-m.get(_,M)%w),k}(y||d)&&(m.diff(v).add(function(M){var D=m.get(_,M);if(d){var L=T(M,s);Gt(L,{rotation:-((isNaN(+D)?b[0]:Lt(D,x,b,!0))+Math.PI/2)},t),h.add(L),m.setItemGraphicEl(M,L)}if(y){var I=C(M,s),P=g.get("clip");Gt(I,{shape:{endAngle:Lt(D,x,b,P)}},t),h.add(I),Cp(t.seriesIndex,m.dataType,M,I),p[M]=I}}).update(function(M,D){var L=m.get(_,M);if(d){var I=v.getItemGraphicEl(D),P=I?I.rotation:s,R=T(M,P);R.rotation=P,wt(R,{rotation:-((isNaN(+L)?b[0]:Lt(L,x,b,!0))+Math.PI/2)},t),h.add(R),m.setItemGraphicEl(M,R)}if(y){var E=c[D],N=E?E.shape.endAngle:s,k=C(M,N),V=g.get("clip");wt(k,{shape:{endAngle:Lt(L,x,b,V)}},t),h.add(k),Cp(t.seriesIndex,m.dataType,M,k),p[M]=k}}).execute(),m.each(function(M){var D=m.getItemModel(M),L=D.getModel("emphasis"),I=L.get("focus"),P=L.get("blurScope"),R=L.get("disabled");if(d){var E=m.getItemGraphicEl(M),N=m.getItemVisual(M,"style"),k=N.fill;if(E instanceof he){var V=E.style;E.useStyle(B({image:V.image,x:V.x,y:V.y,width:V.width,height:V.height},N))}else E.useStyle(N),E.type!=="pointer"&&E.setColor(k);E.setStyle(D.getModel(["pointer","itemStyle"]).getItemStyle()),E.style.fill==="auto"&&E.setStyle("fill",n(Lt(m.get(_,M),x,[0,1],!0))),E.z2EmphasisLift=0,fe(E,D),Ut(E,I,P,R)}if(y){var F=p[M];F.useStyle(m.getItemVisual(M,"style")),F.setStyle(D.getModel(["progress","itemStyle"]).getItemStyle()),F.z2EmphasisLift=0,fe(F,D),Ut(F,I,P,R)}}),this._progressEls=p)},e.prototype._renderAnchor=function(t,a){var i=t.getModel("anchor"),n=i.get("show");if(n){var o=i.get("size"),s=i.get("icon"),l=i.get("offsetCenter"),u=i.get("keepAspect"),f=Kt(s,a.cx-o/2+H(l[0],a.r),a.cy-o/2+H(l[1],a.r),o,o,null,u);f.z2=i.get("showAbove")?1:0,f.setStyle(i.getModel("itemStyle").getItemStyle()),this.group.add(f)}},e.prototype._renderTitleAndDetail=function(t,a,i,n,o){var s=this,l=t.getData(),u=l.mapDimension("value"),f=+t.get("min"),h=+t.get("max"),v=new rt,c=[],p=[],d=t.isAnimationEnabled(),g=t.get(["pointer","showAbove"]);l.diff(this._data).add(function(y){c[y]=new Tt({silent:!0}),p[y]=new Tt({silent:!0})}).update(function(y,m){c[y]=s._titleEls[m],p[y]=s._detailEls[m]}).execute(),l.each(function(y){var m=l.getItemModel(y),_=l.get(u,y),S=new rt,w=n(Lt(_,[f,h],[0,1],!0)),x=m.getModel("title");if(x.get("show")){var b=x.get("offsetCenter"),T=o.cx+H(b[0],o.r),C=o.cy+H(b[1],o.r),M=c[y];M.attr({z2:g?0:2,style:Bt(x,{x:T,y:C,text:l.getName(y),align:"center",verticalAlign:"middle"},{inheritColor:w})}),S.add(M)}var D=m.getModel("detail");if(D.get("show")){var L=D.get("offsetCenter"),I=o.cx+H(L[0],o.r),P=o.cy+H(L[1],o.r),R=H(D.get("width"),o.r),E=H(D.get("height"),o.r),N=t.get(["progress","show"])?l.getItemVisual(y,"style").fill:w,M=p[y],k=D.get("formatter");M.attr({z2:g?0:2,style:Bt(D,{x:I,y:P,text:pu(_,k),width:isNaN(R)?null:R,height:isNaN(E)?null:E,align:"center",verticalAlign:"middle"},{inheritColor:N})}),NT(M,{normal:D},_,function(F){return pu(F,k)}),d&&VT(M,y,l,t,{getFormattedLabel:function(F,W,Z,tt,ft,Dt){return pu(Dt?Dt.interpolatedValue:_,k)}}),S.add(M)}v.add(S)}),this.group.add(v),this._titleEls=c,this._detailEls=p},e.type="gauge",e}(Rt),P3=I3,R3=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.visualStyleAccessPath="itemStyle",t}return e.prototype.getInitialData=function(t,a){return wo(this,["value"])},e.type="series.gauge",e.defaultOption={z:2,colorBy:"data",center:["50%","50%"],legendHoverLink:!0,radius:"75%",startAngle:225,endAngle:-45,clockwise:!0,min:0,max:100,splitNumber:10,axisLine:{show:!0,roundCap:!1,lineStyle:{color:[[1,"#E6EBF8"]],width:10}},progress:{show:!1,overlap:!0,width:10,roundCap:!1,clip:!0},splitLine:{show:!0,length:10,distance:10,lineStyle:{color:"#63677A",width:3,type:"solid"}},axisTick:{show:!0,splitNumber:5,length:6,distance:10,lineStyle:{color:"#63677A",width:1,type:"solid"}},axisLabel:{show:!0,distance:15,color:"#464646",fontSize:12},pointer:{icon:null,offsetCenter:[0,0],show:!0,showAbove:!0,length:"60%",width:6,keepAspect:!1},anchor:{show:!1,showAbove:!1,size:6,icon:"circle",offsetCenter:[0,0],keepAspect:!1,itemStyle:{color:"#fff",borderWidth:0,borderColor:"#5470c6"}},title:{show:!0,offsetCenter:[0,"20%"],color:"#464646",fontSize:16,valueAnimation:!1},detail:{show:!0,backgroundColor:"rgba(0,0,0,0)",borderWidth:0,borderColor:"#ccc",width:100,height:null,padding:[5,10],offsetCenter:[0,"40%"],color:"#464646",fontSize:30,fontWeight:"bold",lineHeight:30,valueAnimation:!1}},e}(Vt),E3=R3;function k3(r){r.registerChartView(P3),r.registerSeriesModel(E3)}var O3=["itemStyle","opacity"],N3=function(r){O(e,r);function e(t,a){var i=r.call(this)||this,n=i,o=new ke,s=new Tt;return n.setTextContent(s),i.setTextGuideLine(o),i.updateData(t,a,!0),i}return e.prototype.updateData=function(t,a,i){var n=this,o=t.hostModel,s=t.getItemModel(a),l=t.getItemLayout(a),u=s.getModel("emphasis"),f=s.get(O3);f=f==null?1:f,i||_r(n),n.useStyle(t.getItemVisual(a,"style")),n.style.lineJoin="round",i?(n.setShape({points:l.points}),n.style.opacity=0,Gt(n,{style:{opacity:f}},o,a)):wt(n,{style:{opacity:f},shape:{points:l.points}},o,a),fe(n,s),this._updateLabel(t,a),Ut(this,u.get("focus"),u.get("blurScope"),u.get("disabled"))},e.prototype._updateLabel=function(t,a){var i=this,n=this.getTextGuideLine(),o=i.getTextContent(),s=t.hostModel,l=t.getItemModel(a),u=t.getItemLayout(a),f=u.label,h=t.getItemVisual(a,"style"),v=h.fill;me(o,oe(l),{labelFetcher:t.hostModel,labelDataIndex:a,defaultOpacity:h.opacity,defaultText:t.getName(a)},{normal:{align:f.textAlign,verticalAlign:f.verticalAlign}}),i.setTextConfig({local:!0,inside:!!f.inside,insideStroke:v,outsideFill:v});var c=f.linePoints;n.setShape({points:c}),i.textGuideLineConfig={anchor:c?new ot(c[0][0],c[0][1]):null},wt(o,{style:{x:f.x,y:f.y}},s,a),o.attr({rotation:f.rotation,originX:f.x,originY:f.y,z2:10}),Wg(i,$g(l),{stroke:v})},e}(Ee),V3=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.ignoreLabelLineUpdate=!0,t}return e.prototype.render=function(t,a,i){var n=t.getData(),o=this._data,s=this.group;n.diff(o).add(function(l){var u=new N3(n,l);n.setItemGraphicEl(l,u),s.add(u)}).update(function(l,u){var f=o.getItemGraphicEl(u);f.updateData(n,l),s.add(f),n.setItemGraphicEl(l,f)}).remove(function(l){var u=o.getItemGraphicEl(l);ks(u,t,l)}).execute(),this._data=n},e.prototype.remove=function(){this.group.removeAll(),this._data=null},e.prototype.dispose=function(){},e.type="funnel",e}(Rt),B3=V3,z3=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t){r.prototype.init.apply(this,arguments),this.legendVisualProvider=new ml(U(this.getData,this),U(this.getRawData,this)),this._defaultLabelLine(t)},e.prototype.getInitialData=function(t,a){return wo(this,{coordDimensions:["value"],encodeDefaulter:it(_g,this)})},e.prototype._defaultLabelLine=function(t){Qi(t,"labelLine",["show"]);var a=t.labelLine,i=t.emphasis.labelLine;a.show=a.show&&t.label.show,i.show=i.show&&t.emphasis.label.show},e.prototype.getDataParams=function(t){var a=this.getData(),i=r.prototype.getDataParams.call(this,t),n=a.mapDimension("value"),o=a.getSum(n);return i.percent=o?+(a.get(n,t)/o*100).toFixed(2):0,i.$vars.push("percent"),i},e.type="series.funnel",e.defaultOption={z:2,legendHoverLink:!0,colorBy:"data",left:80,top:60,right:80,bottom:60,minSize:"0%",maxSize:"100%",sort:"descending",orient:"vertical",gap:0,funnelAlign:"center",label:{show:!0,position:"outer"},labelLine:{show:!0,length:20,lineStyle:{width:1}},itemStyle:{borderColor:"#fff",borderWidth:1},emphasis:{label:{show:!0}},select:{itemStyle:{borderColor:"#212121"}}},e}(Vt),G3=z3;function F3(r,e){return jt(r.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}function H3(r,e){for(var t=r.mapDimension("value"),a=r.mapArray(t,function(l){return l}),i=[],n=e==="ascending",o=0,s=r.count();osH)return;var i=this._model.coordinateSystem.getSlidedAxisExpandWindow([r.offsetX,r.offsetY]);i.behavior!=="none"&&this._dispatchExpand({axisExpandWindow:i.axisExpandWindow})}this._mouseDownPoint=null},mousemove:function(r){if(!(this._mouseDownPoint||!mc(this,"mousemove"))){var e=this._model,t=e.coordinateSystem.getSlidedAxisExpandWindow([r.offsetX,r.offsetY]),a=t.behavior;a==="jump"&&this._throttledDispatchExpand.debounceNextCall(e.get("axisExpandDebounce")),this._throttledDispatchExpand(a==="none"?null:{axisExpandWindow:t.axisExpandWindow,animation:a==="jump"?null:{duration:0}})}}};function mc(r,e){var t=r._model;return t.get("axisExpandable")&&t.get("axisExpandTriggerOn")===e}var fH=lH,hH=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(){r.prototype.init.apply(this,arguments),this.mergeOption({})},e.prototype.mergeOption=function(t){var a=this.option;t&&st(a,t,!0),this._initDimensions()},e.prototype.contains=function(t,a){var i=t.get("parallelIndex");return i!=null&&a.getComponent("parallel",i)===this},e.prototype.setAxisExpand=function(t){A(["axisExpandable","axisExpandCenter","axisExpandCount","axisExpandWidth","axisExpandWindow"],function(a){t.hasOwnProperty(a)&&(this.option[a]=t[a])},this)},e.prototype._initDimensions=function(){var t=this.dimensions=[],a=this.parallelAxisIndex=[],i=It(this.ecModel.queryComponents({mainType:"parallelAxis"}),function(n){return(n.get("parallelIndex")||0)===this.componentIndex},this);A(i,function(n){t.push("dim"+n.get("dim")),a.push(n.componentIndex)})},e.type="parallel",e.dependencies=["parallelAxis"],e.layoutMode="box",e.defaultOption={z:0,left:80,top:60,right:80,bottom:60,layout:"horizontal",axisExpandable:!1,axisExpandCenter:null,axisExpandCount:0,axisExpandWidth:50,axisExpandRate:17,axisExpandDebounce:50,axisExpandSlideTriggerArea:[-.15,.05,.4],axisExpandTriggerOn:"click",parallelAxisDefault:null},e}(St),vH=hH,cH=function(r){O(e,r);function e(t,a,i,n,o){var s=r.call(this,t,a,i)||this;return s.type=n||"value",s.axisIndex=o,s}return e.prototype.isHorizontal=function(){return this.coordinateSystem.getModel().get("layout")!=="horizontal"},e}(xr),pH=cH;function hn(r,e,t,a,i,n){r=r||0;var o=t[1]-t[0];if(i!=null&&(i=Dn(i,[0,o])),n!=null&&(n=Math.max(n,i!=null?i:0)),a==="all"){var s=Math.abs(e[1]-e[0]);s=Dn(s,[0,o]),i=n=Dn(s,[i,n]),a=0}e[0]=Dn(e[0],t),e[1]=Dn(e[1],t);var l=_c(e,a);e[a]+=r;var u=i||0,f=t.slice();l.sign<0?f[0]+=u:f[1]-=u,e[a]=Dn(e[a],f);var h;return h=_c(e,a),i!=null&&(h.sign!==l.sign||h.spann&&(e[1-a]=e[a]+h.sign*n),e}function _c(r,e){var t=r[e]-r[1-e];return{span:Math.abs(t),sign:t>0?-1:t<0?1:e?-1:1}}function Dn(r,e){return Math.min(e[1]!=null?e[1]:1/0,Math.max(e[0]!=null?e[0]:-1/0,r))}var Sc=A,pD=Math.min,dD=Math.max,SS=Math.floor,dH=Math.ceil,xS=$t,gH=Math.PI,yH=function(){function r(e,t,a){this.type="parallel",this._axesMap=q(),this._axesLayout={},this.dimensions=e.dimensions,this._model=e,this._init(e,t,a)}return r.prototype._init=function(e,t,a){var i=e.dimensions,n=e.parallelAxisIndex;Sc(i,function(o,s){var l=n[s],u=t.getComponent("parallelAxis",l),f=this._axesMap.set(o,new pH(o,_h(u),[0,0],u.get("type"),l)),h=f.type==="category";f.onBand=h&&u.get("boundaryGap"),f.inverse=u.get("inverse"),u.axis=f,f.model=u,f.coordinateSystem=u.coordinateSystem=this},this)},r.prototype.update=function(e,t){this._updateAxesFromSeries(this._model,e)},r.prototype.containPoint=function(e){var t=this._makeLayoutInfo(),a=t.axisBase,i=t.layoutBase,n=t.pixelDimIndex,o=e[1-n],s=e[n];return o>=a&&o<=a+t.axisLength&&s>=i&&s<=i+t.layoutLength},r.prototype.getModel=function(){return this._model},r.prototype._updateAxesFromSeries=function(e,t){t.eachSeries(function(a){if(!!e.contains(a,t)){var i=a.getData();Sc(this.dimensions,function(n){var o=this._axesMap.get(n);o.scale.unionExtentFromData(i,i.mapDimension(n)),jn(o.scale,o.model)},this)}},this)},r.prototype.resize=function(e,t){this._rect=jt(e.getBoxLayoutParams(),{width:t.getWidth(),height:t.getHeight()}),this._layoutAxes()},r.prototype.getRect=function(){return this._rect},r.prototype._makeLayoutInfo=function(){var e=this._model,t=this._rect,a=["x","y"],i=["width","height"],n=e.get("layout"),o=n==="horizontal"?0:1,s=t[i[o]],l=[0,s],u=this.dimensions.length,f=du(e.get("axisExpandWidth"),l),h=du(e.get("axisExpandCount")||0,[0,u]),v=e.get("axisExpandable")&&u>3&&u>h&&h>1&&f>0&&s>0,c=e.get("axisExpandWindow"),p;if(c)p=du(c[1]-c[0],l),c[1]=c[0]+p;else{p=du(f*(h-1),l);var d=e.get("axisExpandCenter")||SS(u/2);c=[f*d-p/2],c[1]=c[0]+p}var g=(s-p)/(u-h);g<3&&(g=0);var y=[SS(xS(c[0]/f,1))+1,dH(xS(c[1]/f,1))-1],m=g/f*c[0];return{layout:n,pixelDimIndex:o,layoutBase:t[a[o]],layoutLength:s,axisBase:t[a[1-o]],axisLength:t[i[1-o]],axisExpandable:v,axisExpandWidth:f,axisCollapseWidth:g,axisExpandWindow:c,axisCount:u,winInnerIndices:y,axisExpandWindow0Pos:m}},r.prototype._layoutAxes=function(){var e=this._rect,t=this._axesMap,a=this.dimensions,i=this._makeLayoutInfo(),n=i.layout;t.each(function(o){var s=[0,i.axisLength],l=o.inverse?1:0;o.setExtent(s[l],s[1-l])}),Sc(a,function(o,s){var l=(i.axisExpandable?_H:mH)(s,i),u={horizontal:{x:l.position,y:i.axisLength},vertical:{x:0,y:l.position}},f={horizontal:gH/2,vertical:0},h=[u[n].x+e.x,u[n].y+e.y],v=f[n],c=ir();on(c,c,v),Br(c,c,h),this._axesLayout[o]={position:h,rotation:v,transform:c,axisNameAvailableWidth:l.axisNameAvailableWidth,axisLabelShow:l.axisLabelShow,nameTruncateMaxWidth:l.nameTruncateMaxWidth,tickDirection:1,labelDirection:1}},this)},r.prototype.getAxis=function(e){return this._axesMap.get(e)},r.prototype.dataToPoint=function(e,t){return this.axisCoordToPoint(this._axesMap.get(t).dataToCoord(e),t)},r.prototype.eachActiveState=function(e,t,a,i){a==null&&(a=0),i==null&&(i=e.count());var n=this._axesMap,o=this.dimensions,s=[],l=[];A(o,function(g){s.push(e.mapDimension(g)),l.push(n.get(g).model)});for(var u=this.hasAxisBrushed(),f=a;fn*(1-h[0])?(u="jump",l=s-n*(1-h[2])):(l=s-n*h[1])>=0&&(l=s-n*(1-h[1]))<=0&&(l=0),l*=t.axisExpandWidth/f,l?hn(l,i,o,"all"):u="none";else{var c=i[1]-i[0],p=o[1]*s/c;i=[dD(0,p-c/2)],i[1]=pD(o[1],i[0]+c),i[0]=i[1]-c}return{axisExpandWindow:i,behavior:u}},r}();function du(r,e){return pD(dD(r,e[0]),e[1])}function mH(r,e){var t=e.layoutLength/(e.axisCount-1);return{position:t*r,axisNameAvailableWidth:t,axisLabelShow:!0}}function _H(r,e){var t=e.layoutLength,a=e.axisExpandWidth,i=e.axisCount,n=e.axisCollapseWidth,o=e.winInnerIndices,s,l=n,u=!1,f;return r=0;i--)rr(a[i])},e.prototype.getActiveState=function(t){var a=this.activeIntervals;if(!a.length)return"normal";if(t==null||isNaN(+t))return"inactive";if(a.length===1){var i=a[0];if(i[0]<=t&&t<=i[1])return"active"}else for(var n=0,o=a.length;nAH}function wD(r){var e=r.length-1;return e<0&&(e=0),[r[0],r[e]]}function bD(r,e,t,a){var i=new rt;return i.add(new _t({name:"main",style:cy(t),silent:!0,draggable:!0,cursor:"move",drift:it(CS,r,e,i,["n","s","w","e"]),ondragend:it(an,e,{isEnd:!0})})),A(a,function(n){i.add(new _t({name:n.join(""),style:{opacity:0},draggable:!0,silent:!0,invisible:!0,drift:it(CS,r,e,i,n),ondragend:it(an,e,{isEnd:!0})}))}),i}function TD(r,e,t,a){var i=a.brushStyle.lineWidth||0,n=ro(i,MH),o=t[0][0],s=t[1][0],l=o-i/2,u=s-i/2,f=t[0][1],h=t[1][1],v=f-n+i/2,c=h-n+i/2,p=f-o,d=h-s,g=p+i,y=d+i;Xr(r,e,"main",o,s,p,d),a.transformable&&(Xr(r,e,"w",l,u,n,y),Xr(r,e,"e",v,u,n,y),Xr(r,e,"n",l,u,g,n),Xr(r,e,"s",l,c,g,n),Xr(r,e,"nw",l,u,n,n),Xr(r,e,"ne",v,u,n,n),Xr(r,e,"sw",l,c,n,n),Xr(r,e,"se",v,c,n,n))}function dd(r,e){var t=e.__brushOption,a=t.transformable,i=e.childAt(0);i.useStyle(cy(t)),i.attr({silent:!a,cursor:a?"move":"default"}),A([["w"],["e"],["n"],["s"],["s","e"],["s","w"],["n","e"],["n","w"]],function(n){var o=e.childOfName(n.join("")),s=n.length===1?gd(r,n[0]):kH(r,n);o&&o.attr({silent:!a,invisible:!a,cursor:a?LH[s]+"-resize":null})})}function Xr(r,e,t,a,i,n,o){var s=e.childOfName(t);s&&s.setShape(NH(py(r,e,[[a,i],[a+n,i+o]])))}function cy(r){return Q({strokeNoScale:!0},r.brushStyle)}function CD(r,e,t,a){var i=[Ks(r,t),Ks(e,a)],n=[ro(r,t),ro(e,a)];return[[i[0],n[0]],[i[1],n[1]]]}function EH(r){return Yi(r.group)}function gd(r,e){var t={w:"left",e:"right",n:"top",s:"bottom"},a={left:"w",right:"e",top:"n",bottom:"s"},i=ih(t[e],EH(r));return a[i]}function kH(r,e){var t=[gd(r,e[0]),gd(r,e[1])];return(t[0]==="e"||t[0]==="w")&&t.reverse(),t.join("")}function CS(r,e,t,a,i,n){var o=t.__brushOption,s=r.toRectRange(o.range),l=AD(e,i,n);A(a,function(u){var f=DH[u];s[f[0]][f[1]]+=l[f[0]]}),o.range=r.fromRectRange(CD(s[0][0],s[1][0],s[0][1],s[1][1])),fy(e,t),an(e,{isEnd:!1})}function OH(r,e,t,a){var i=e.__brushOption.range,n=AD(r,t,a);A(i,function(o){o[0]+=n[0],o[1]+=n[1]}),fy(r,e),an(r,{isEnd:!1})}function AD(r,e,t){var a=r.group,i=a.transformCoordToLocal(e,t),n=a.transformCoordToLocal(0,0);return[i[0]-n[0],i[1]-n[1]]}function py(r,e,t){var a=xD(r,e);return a&&a!==rn?a.clipPath(t,r._transform):j(t)}function NH(r){var e=Ks(r[0][0],r[1][0]),t=Ks(r[0][1],r[1][1]),a=ro(r[0][0],r[1][0]),i=ro(r[0][1],r[1][1]);return{x:e,y:t,width:a-e,height:i-t}}function VH(r,e,t){if(!(!r._brushType||zH(r,e.offsetX,e.offsetY))){var a=r._zr,i=r._covers,n=vy(r,e,t);if(!r._dragging)for(var o=0;oa.getWidth()||t<0||t>a.getHeight()}var Ah={lineX:DS(0),lineY:DS(1),rect:{createCover:function(r,e){function t(a){return a}return bD({toRectRange:t,fromRectRange:t},r,e,[["w"],["e"],["n"],["s"],["s","e"],["s","w"],["n","e"],["n","w"]])},getCreatingRange:function(r){var e=wD(r);return CD(e[1][0],e[1][1],e[0][0],e[0][1])},updateCoverShape:function(r,e,t,a){TD(r,e,t,a)},updateCommon:dd,contain:md},polygon:{createCover:function(r,e){var t=new rt;return t.add(new ke({name:"main",style:cy(e),silent:!0})),t},getCreatingRange:function(r){return r},endCreating:function(r,e){e.remove(e.childAt(0)),e.add(new Ee({name:"main",draggable:!0,drift:it(OH,r,e),ondragend:it(an,r,{isEnd:!0})}))},updateCoverShape:function(r,e,t,a){e.childAt(0).setShape({points:py(r,e,t)})},updateCommon:dd,contain:md}};function DS(r){return{createCover:function(e,t){return bD({toRectRange:function(a){var i=[a,[0,100]];return r&&i.reverse(),i},fromRectRange:function(a){return a[r]}},e,t,[[["w"],["e"]],[["n"],["s"]]][r])},getCreatingRange:function(e){var t=wD(e),a=Ks(t[0][r],t[1][r]),i=ro(t[0][r],t[1][r]);return[a,i]},updateCoverShape:function(e,t,a,i){var n,o=xD(e,t);if(o!==rn&&o.getLinearBrushOtherExtent)n=o.getLinearBrushOtherExtent(r);else{var s=e._zr;n=[0,[s.getWidth(),s.getHeight()][1-r]]}var l=[a,n];r&&l.reverse(),TD(e,t,l,i)},updateCommon:dd,contain:md}}var dy=PH;function DD(r){return r=gy(r),function(e){return RT(e,r)}}function LD(r,e){return r=gy(r),function(t){var a=e!=null?e:t,i=a?r.width:r.height,n=a?r.x:r.y;return[n,n+(i||0)]}}function ID(r,e,t){var a=gy(r);return function(i,n){return a.contain(n[0],n[1])&&!wh(i,e,t)}}function gy(r){return ut.create(r)}var GH=["axisLine","axisTickLabel","axisName"],FH=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,a){r.prototype.init.apply(this,arguments),(this._brushController=new dy(a.getZr())).on("brush",U(this._onBrush,this))},e.prototype.render=function(t,a,i,n){if(!HH(t,a,n)){this.axisModel=t,this.api=i,this.group.removeAll();var o=this._axisGroup;if(this._axisGroup=new rt,this.group.add(this._axisGroup),!!t.get("show")){var s=$H(t,a),l=s.coordinateSystem,u=t.getAreaSelectStyle(),f=u.width,h=t.axis.dim,v=l.getAxisLayout(h),c=B({strokeContainThreshold:f},v),p=new fa(t,c);A(GH,p.add,p),this._axisGroup.add(p.getGroup()),this._refreshBrushController(c,u,t,s,f,i),ol(o,this._axisGroup,t)}}},e.prototype._refreshBrushController=function(t,a,i,n,o,s){var l=i.axis.getExtent(),u=l[1]-l[0],f=Math.min(30,Math.abs(u)*.1),h=ut.create({x:l[0],y:-o/2,width:u,height:o});h.x-=f,h.width+=2*f,this._brushController.mount({enableGlobalPan:!0,rotation:t.rotation,x:t.position[0],y:t.position[1]}).setPanels([{panelId:"pl",clipPath:DD(h),isTargetByCursor:ID(h,s,n),getLinearBrushOtherExtent:LD(h,0)}]).enableBrush({brushType:"lineX",brushStyle:a,removeOnClick:!0}).updateCovers(WH(i))},e.prototype._onBrush=function(t){var a=t.areas,i=this.axisModel,n=i.axis,o=G(a,function(s){return[n.coordToData(s.range[0],!0),n.coordToData(s.range[1],!0)]});(!i.option.realtime===t.isEnd||t.removeOnClick)&&this.api.dispatchAction({type:"axisAreaSelect",parallelAxisId:i.id,intervals:o})},e.prototype.dispose=function(){this._brushController.dispose()},e.type="parallelAxis",e}(Ht);function HH(r,e,t){return t&&t.type==="axisAreaSelect"&&e.findComponents({mainType:"parallelAxis",query:t})[0]===r}function WH(r){var e=r.axis;return G(r.activeIntervals,function(t){return{brushType:"lineX",panelId:"pl",range:[e.dataToCoord(t[0],!0),e.dataToCoord(t[1],!0)]}})}function $H(r,e){return e.getComponent("parallel",r.get("parallelIndex"))}var UH=FH,YH={type:"axisAreaSelect",event:"axisAreaSelected"};function ZH(r){r.registerAction(YH,function(e,t){t.eachComponent({mainType:"parallelAxis",query:e},function(a){a.axis.model.setActiveIntervals(e.intervals)})}),r.registerAction("parallelAxisExpand",function(e,t){t.eachComponent({mainType:"parallel",query:e},function(a){a.setAxisExpand(e)})})}var XH={type:"value",areaSelectStyle:{width:20,borderWidth:1,borderColor:"rgba(160,197,232)",color:"rgba(160,197,232)",opacity:.3},realtime:!0,z:10};function PD(r){r.registerComponentView(fH),r.registerComponentModel(vH),r.registerCoordinateSystem("parallel",bH),r.registerPreprocessor(iH),r.registerComponentModel(wS),r.registerComponentView(UH),eo(r,"parallel",wS,XH),ZH(r)}function qH(r){ct(PD),r.registerChartView(K3),r.registerSeriesModel(tH),r.registerVisual(r.PRIORITY.VISUAL.BRUSH,aH)}var KH=function(){function r(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.cpx1=0,this.cpy1=0,this.cpx2=0,this.cpy2=0,this.extent=0}return r}(),QH=function(r){O(e,r);function e(t){return r.call(this,t)||this}return e.prototype.getDefaultShape=function(){return new KH},e.prototype.buildPath=function(t,a){var i=a.extent;t.moveTo(a.x1,a.y1),t.bezierCurveTo(a.cpx1,a.cpy1,a.cpx2,a.cpy2,a.x2,a.y2),a.orient==="vertical"?(t.lineTo(a.x2+i,a.y2),t.bezierCurveTo(a.cpx2+i,a.cpy2,a.cpx1+i,a.cpy1,a.x1+i,a.y1)):(t.lineTo(a.x2,a.y2+i),t.bezierCurveTo(a.cpx2,a.cpy2+i,a.cpx1,a.cpy1+i,a.x1,a.y1+i)),t.closePath()},e.prototype.highlight=function(){sa(this)},e.prototype.downplay=function(){la(this)},e}(dt),JH=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._focusAdjacencyDisabled=!1,t}return e.prototype.render=function(t,a,i){var n=this,o=t.getGraph(),s=this.group,l=t.layoutInfo,u=l.width,f=l.height,h=t.getData(),v=t.getData("edge"),c=t.get("orient");this._model=t,s.removeAll(),s.x=l.x,s.y=l.y,o.eachEdge(function(p){var d=new QH,g=at(d);g.dataIndex=p.dataIndex,g.seriesIndex=t.seriesIndex,g.dataType="edge";var y=p.getModel(),m=y.getModel("lineStyle"),_=m.get("curveness"),S=p.node1.getLayout(),w=p.node1.getModel(),x=w.get("localX"),b=w.get("localY"),T=p.node2.getLayout(),C=p.node2.getModel(),M=C.get("localX"),D=C.get("localY"),L=p.getLayout(),I,P,R,E,N,k,V,F;switch(d.shape.extent=Math.max(1,L.dy),d.shape.orient=c,c==="vertical"?(I=(x!=null?x*u:S.x)+L.sy,P=(b!=null?b*f:S.y)+S.dy,R=(M!=null?M*u:T.x)+L.ty,E=D!=null?D*f:T.y,N=I,k=P*(1-_)+E*_,V=R,F=P*_+E*(1-_)):(I=(x!=null?x*u:S.x)+S.dx,P=(b!=null?b*f:S.y)+L.sy,R=M!=null?M*u:T.x,E=(D!=null?D*f:T.y)+L.ty,N=I*(1-_)+R*_,k=P,V=I*_+R*(1-_),F=E),d.setShape({x1:I,y1:P,x2:R,y2:E,cpx1:N,cpy1:k,cpx2:V,cpy2:F}),d.useStyle(m.getItemStyle()),d.style.fill){case"source":d.style.fill=p.node1.getVisual("color"),d.style.decal=p.node1.getVisual("style").decal;break;case"target":d.style.fill=p.node2.getVisual("color"),d.style.decal=p.node2.getVisual("style").decal;break;case"gradient":var W=p.node1.getVisual("color"),Z=p.node2.getVisual("color");$(W)&&$(Z)&&(d.style.fill=new nl(0,0,+(c==="horizontal"),+(c==="vertical"),[{color:W,offset:0},{color:Z,offset:1}]))}var tt=y.getModel("emphasis");fe(d,y,"lineStyle",function(Dt){return Dt.getItemStyle()}),s.add(d),v.setItemGraphicEl(p.dataIndex,d);var ft=tt.get("focus");Ut(d,ft==="adjacency"?p.getAdjacentDataIndices():ft,tt.get("blurScope"),tt.get("disabled")),at(d).dataType="edge"}),o.eachNode(function(p){var d=p.getLayout(),g=p.getModel(),y=g.get("localX"),m=g.get("localY"),_=g.getModel("emphasis"),S=new _t({shape:{x:y!=null?y*u:d.x,y:m!=null?m*f:d.y,width:d.dx,height:d.dy},style:g.getModel("itemStyle").getItemStyle(),z2:10});me(S,oe(g),{labelFetcher:t,labelDataIndex:p.dataIndex,defaultText:p.id}),S.disableLabelAnimation=!0,S.setStyle("fill",p.getVisual("color")),S.setStyle("decal",p.getVisual("style").decal),fe(S,g),s.add(S),h.setItemGraphicEl(p.dataIndex,S),at(S).dataType="node";var w=_.get("focus");Ut(S,w==="adjacency"?p.getAdjacentDataIndices():w,_.get("blurScope"),_.get("disabled"))}),h.eachItemGraphicEl(function(p,d){var g=h.getItemModel(d);g.get("draggable")&&(p.drift=function(y,m){n._focusAdjacencyDisabled=!0,this.shape.x+=y,this.shape.y+=m,this.dirty(),i.dispatchAction({type:"dragNode",seriesId:t.id,dataIndex:h.getRawIndex(d),localX:this.shape.x/u,localY:this.shape.y/f})},p.ondragend=function(){n._focusAdjacencyDisabled=!1},p.draggable=!0,p.cursor="move")}),!this._data&&t.isAnimationEnabled()&&s.setClipPath(jH(s.getBoundingRect(),t,function(){s.removeClipPath()})),this._data=t.getData()},e.prototype.dispose=function(){},e.type="sankey",e}(Rt);function jH(r,e,t){var a=new _t({shape:{x:r.x-10,y:r.y-10,width:0,height:r.height+20}});return Gt(a,{shape:{width:r.width+20}},e,t),a}var t4=JH,e4=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.getInitialData=function(t,a){var i=t.edges||t.links,n=t.data||t.nodes,o=t.levels;this.levelModels=[];for(var s=this.levelModels,l=0;l=0&&(s[o[l].depth]=new Ot(o[l],this,a));if(n&&i){var u=vD(n,i,this,!0,f);return u.data}function f(h,v){h.wrapMethod("getItemModel",function(c,p){var d=c.parentModel,g=d.getData().getItemLayout(p);if(g){var y=g.depth,m=d.levelModels[y];m&&(c.parentModel=m)}return c}),v.wrapMethod("getItemModel",function(c,p){var d=c.parentModel,g=d.getGraph().getEdgeByIndex(p),y=g.node1.getLayout();if(y){var m=y.depth,_=d.levelModels[m];_&&(c.parentModel=_)}return c})}},e.prototype.setNodePosition=function(t,a){var i=this.option.data||this.option.nodes,n=i[t];n.localX=a[0],n.localY=a[1]},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.formatTooltip=function(t,a,i){function n(c){return isNaN(c)||c==null}if(i==="edge"){var o=this.getDataParams(t,i),s=o.data,l=o.value,u=s.source+" -- "+s.target;return re("nameValue",{name:u,value:l,noValue:n(l)})}else{var f=this.getGraph().getNodeByIndex(t),h=f.getLayout().value,v=this.getDataParams(t,i).data.name;return re("nameValue",{name:v!=null?v+"":null,value:h,noValue:n(h)})}},e.prototype.optionUpdated=function(){},e.prototype.getDataParams=function(t,a){var i=r.prototype.getDataParams.call(this,t,a);if(i.value==null&&a==="node"){var n=this.getGraph().getNodeByIndex(t),o=n.getLayout().value;i.value=o}return i},e.type="series.sankey",e.defaultOption={z:2,coordinateSystem:"view",left:"5%",top:"5%",right:"20%",bottom:"5%",orient:"horizontal",nodeWidth:20,nodeGap:8,draggable:!0,layoutIterations:32,label:{show:!0,position:"right",fontSize:12},levels:[],nodeAlign:"justify",lineStyle:{color:"#314656",opacity:.2,curveness:.5},emphasis:{label:{show:!0},lineStyle:{opacity:.5}},select:{itemStyle:{borderColor:"#212121"}},animationEasing:"linear",animationDuration:1e3},e}(Vt),r4=e4;function a4(r,e){r.eachSeriesByType("sankey",function(t){var a=t.get("nodeWidth"),i=t.get("nodeGap"),n=i4(t,e);t.layoutInfo=n;var o=n.width,s=n.height,l=t.getGraph(),u=l.nodes,f=l.edges;o4(u);var h=It(u,function(d){return d.getLayout().value===0}),v=h.length!==0?0:t.get("layoutIterations"),c=t.get("orient"),p=t.get("nodeAlign");n4(u,f,a,i,o,s,v,c,p)})}function i4(r,e){return jt(r.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}function n4(r,e,t,a,i,n,o,s,l){s4(r,e,t,i,n,s,l),h4(r,e,n,i,a,o,s),S4(r,s)}function o4(r){A(r,function(e){var t=Fa(e.outEdges,If),a=Fa(e.inEdges,If),i=e.getValue()||0,n=Math.max(t,a,i);e.setLayout({value:n},!0)})}function s4(r,e,t,a,i,n,o){for(var s=[],l=[],u=[],f=[],h=0,v=0;v=0;y&&g.depth>c&&(c=g.depth),d.setLayout({depth:y?g.depth:h},!0),n==="vertical"?d.setLayout({dy:t},!0):d.setLayout({dx:t},!0);for(var m=0;mh-1?c:h-1;o&&o!=="left"&&l4(r,o,n,b);var T=n==="vertical"?(i-t)/b:(a-t)/b;f4(r,T,n)}function RD(r){var e=r.hostGraph.data.getRawDataItem(r.dataIndex);return e.depth!=null&&e.depth>=0}function l4(r,e,t,a){if(e==="right"){for(var i=[],n=r,o=0;n.length;){for(var s=0;s0;n--)l*=.99,p4(s,l,o),xc(s,i,t,a,o),_4(s,l,o),xc(s,i,t,a,o)}function v4(r,e){var t=[],a=e==="vertical"?"y":"x",i=xp(r,function(n){return n.getLayout()[a]});return i.keys.sort(function(n,o){return n-o}),A(i.keys,function(n){t.push(i.buckets.get(n))}),t}function c4(r,e,t,a,i,n){var o=1/0;A(r,function(s){var l=s.length,u=0;A(s,function(h){u+=h.getLayout().value});var f=n==="vertical"?(a-(l-1)*i)/u:(t-(l-1)*i)/u;f0&&(s=l.getLayout()[n]+u,i==="vertical"?l.setLayout({x:s},!0):l.setLayout({y:s},!0)),f=l.getLayout()[n]+l.getLayout()[v]+e;var p=i==="vertical"?a:t;if(u=f-e-p,u>0){s=l.getLayout()[n]-u,i==="vertical"?l.setLayout({x:s},!0):l.setLayout({y:s},!0),f=s;for(var c=h-2;c>=0;--c)l=o[c],u=l.getLayout()[n]+l.getLayout()[v]+e-f,u>0&&(s=l.getLayout()[n]-u,i==="vertical"?l.setLayout({x:s},!0):l.setLayout({y:s},!0)),f=l.getLayout()[n]}})}function p4(r,e,t){A(r.slice().reverse(),function(a){A(a,function(i){if(i.outEdges.length){var n=Fa(i.outEdges,d4,t)/Fa(i.outEdges,If);if(isNaN(n)){var o=i.outEdges.length;n=o?Fa(i.outEdges,g4,t)/o:0}if(t==="vertical"){var s=i.getLayout().x+(n-qa(i,t))*e;i.setLayout({x:s},!0)}else{var l=i.getLayout().y+(n-qa(i,t))*e;i.setLayout({y:l},!0)}}})})}function d4(r,e){return qa(r.node2,e)*r.getValue()}function g4(r,e){return qa(r.node2,e)}function y4(r,e){return qa(r.node1,e)*r.getValue()}function m4(r,e){return qa(r.node1,e)}function qa(r,e){return e==="vertical"?r.getLayout().x+r.getLayout().dx/2:r.getLayout().y+r.getLayout().dy/2}function If(r){return r.getValue()}function Fa(r,e,t){for(var a=0,i=r.length,n=-1;++nn&&(n=s)}),A(a,function(o){var s=new ue({type:"color",mappingMethod:"linear",dataExtent:[i,n],visual:e.get("color")}),l=s.mapValueToVisual(o.getLayout().value),u=o.getModel().get(["itemStyle","color"]);u!=null?(o.setVisual("color",u),o.setVisual("style",{fill:u})):(o.setVisual("color",l),o.setVisual("style",{fill:l}))})}})}function w4(r){r.registerChartView(t4),r.registerSeriesModel(r4),r.registerLayout(a4),r.registerVisual(x4),r.registerAction({type:"dragNode",event:"dragnode",update:"update"},function(e,t){t.eachComponent({mainType:"series",subType:"sankey",query:e},function(a){a.setNodePosition(e.dataIndex,[e.localX,e.localY])})})}var ED=function(){function r(){}return r.prototype.getInitialData=function(e,t){var a,i=t.getComponent("xAxis",this.get("xAxisIndex")),n=t.getComponent("yAxis",this.get("yAxisIndex")),o=i.get("type"),s=n.get("type"),l;o==="category"?(e.layout="horizontal",a=i.getOrdinalMeta(),l=!0):s==="category"?(e.layout="vertical",a=n.getOrdinalMeta(),l=!0):e.layout=e.layout||"horizontal";var u=["x","y"],f=e.layout==="horizontal"?0:1,h=this._baseAxisDim=u[f],v=u[1-f],c=[i,n],p=c[f].get("type"),d=c[1-f].get("type"),g=e.data;if(g&&l){var y=[];A(g,function(S,w){var x;z(S)?(x=S.slice(),S.unshift(w)):z(S.value)?(x=B({},S),x.value=x.value.slice(),S.value.unshift(w)):x=S,y.push(x)}),e.data=y}var m=this.defaultValueDimensions,_=[{name:h,type:mf(p),ordinalMeta:a,otherDims:{tooltip:!1,itemName:0},dimsDef:["base"]},{name:v,type:mf(d),dimsDef:m.slice()}];return wo(this,{coordDimensions:_,dimensionsCount:m.length+1,encodeDefaulter:it(nC,_,this)})},r.prototype.getBaseAxis=function(){var e=this._baseAxisDim;return this.ecModel.getComponent(e+"Axis",this.get(e+"AxisIndex")).axis},r}(),kD=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.defaultValueDimensions=[{name:"min",defaultTooltip:!0},{name:"Q1",defaultTooltip:!0},{name:"median",defaultTooltip:!0},{name:"Q3",defaultTooltip:!0},{name:"max",defaultTooltip:!0}],t.visualDrawType="stroke",t}return e.type="series.boxplot",e.dependencies=["xAxis","yAxis","grid"],e.defaultOption={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,layout:null,boxWidth:[7,50],itemStyle:{color:"#fff",borderWidth:1},emphasis:{scale:!0,itemStyle:{borderWidth:2,shadowBlur:5,shadowOffsetX:1,shadowOffsetY:1,shadowColor:"rgba(0,0,0,0.2)"}},animationDuration:800},e}(Vt);Qt(kD,ED,!0);var b4=kD,T4=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){var n=t.getData(),o=this.group,s=this._data;this._data||o.removeAll();var l=t.get("layout")==="horizontal"?1:0;n.diff(s).add(function(u){if(n.hasValue(u)){var f=n.getItemLayout(u),h=LS(f,n,u,l,!0);n.setItemGraphicEl(u,h),o.add(h)}}).update(function(u,f){var h=s.getItemGraphicEl(f);if(!n.hasValue(u)){o.remove(h);return}var v=n.getItemLayout(u);h?(_r(h),OD(v,h,n,u)):h=LS(v,n,u,l),o.add(h),n.setItemGraphicEl(u,h)}).remove(function(u){var f=s.getItemGraphicEl(u);f&&o.remove(f)}).execute(),this._data=n},e.prototype.remove=function(t){var a=this.group,i=this._data;this._data=null,i&&i.eachItemGraphicEl(function(n){n&&a.remove(n)})},e.type="boxplot",e}(Rt),C4=function(){function r(){}return r}(),A4=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;return a.type="boxplotBoxPath",a}return e.prototype.getDefaultShape=function(){return new C4},e.prototype.buildPath=function(t,a){var i=a.points,n=0;for(t.moveTo(i[n][0],i[n][1]),n++;n<4;n++)t.lineTo(i[n][0],i[n][1]);for(t.closePath();nd){var S=[y,_];a.push(S)}}}return{boxData:t,outliers:a}}var O4={type:"echarts:boxplot",transform:function(e){var t=e.upstream;if(t.sourceFormat!==ye){var a="";Mt(a)}var i=k4(t.getRawData(),e.config);return[{dimensions:["ItemName","Low","Q1","Q2","Q3","High"],data:i.boxData},{data:i.outliers}]}};function N4(r){r.registerSeriesModel(b4),r.registerChartView(D4),r.registerVisual(L4),r.registerLayout(I4),r.registerTransform(O4)}var V4=["color","borderColor"],B4=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){this.group.removeClipPath(),this._progressiveEls=null,this._updateDrawMode(t),this._isLargeDraw?this._renderLarge(t):this._renderNormal(t)},e.prototype.incrementalPrepareRender=function(t,a,i){this._clear(),this._updateDrawMode(t)},e.prototype.incrementalRender=function(t,a,i,n){this._progressiveEls=[],this._isLargeDraw?this._incrementalRenderLarge(t,a):this._incrementalRenderNormal(t,a)},e.prototype.eachRendered=function(t){Ja(this._progressiveEls||this.group,t)},e.prototype._updateDrawMode=function(t){var a=t.pipelineContext.large;(this._isLargeDraw==null||a!==this._isLargeDraw)&&(this._isLargeDraw=a,this._clear())},e.prototype._renderNormal=function(t){var a=t.getData(),i=this._data,n=this.group,o=a.getLayout("isSimpleBox"),s=t.get("clip",!0),l=t.coordinateSystem,u=l.getArea&&l.getArea();this._data||n.removeAll(),a.diff(i).add(function(f){if(a.hasValue(f)){var h=a.getItemLayout(f);if(s&&IS(u,h))return;var v=wc(h,f,!0);Gt(v,{shape:{points:h.ends}},t,f),bc(v,a,f,o),n.add(v),a.setItemGraphicEl(f,v)}}).update(function(f,h){var v=i.getItemGraphicEl(h);if(!a.hasValue(f)){n.remove(v);return}var c=a.getItemLayout(f);if(s&&IS(u,c)){n.remove(v);return}v?(wt(v,{shape:{points:c.ends}},t,f),_r(v)):v=wc(c),bc(v,a,f,o),n.add(v),a.setItemGraphicEl(f,v)}).remove(function(f){var h=i.getItemGraphicEl(f);h&&n.remove(h)}).execute(),this._data=a},e.prototype._renderLarge=function(t){this._clear(),RS(t,this.group);var a=t.get("clip",!0)?xh(t.coordinateSystem,!1,t):null;a?this.group.setClipPath(a):this.group.removeClipPath()},e.prototype._incrementalRenderNormal=function(t,a){for(var i=a.getData(),n=i.getLayout("isSimpleBox"),o;(o=t.next())!=null;){var s=i.getItemLayout(o),l=wc(s);bc(l,i,o,n),l.incremental=!0,this.group.add(l),this._progressiveEls.push(l)}},e.prototype._incrementalRenderLarge=function(t,a){RS(a,this.group,this._progressiveEls,!0)},e.prototype.remove=function(t){this._clear()},e.prototype._clear=function(){this.group.removeAll(),this._data=null},e.type="candlestick",e}(Rt),z4=function(){function r(){}return r}(),G4=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;return a.type="normalCandlestickBox",a}return e.prototype.getDefaultShape=function(){return new z4},e.prototype.buildPath=function(t,a){var i=a.points;this.__simpleBox?(t.moveTo(i[4][0],i[4][1]),t.lineTo(i[6][0],i[6][1])):(t.moveTo(i[0][0],i[0][1]),t.lineTo(i[1][0],i[1][1]),t.lineTo(i[2][0],i[2][1]),t.lineTo(i[3][0],i[3][1]),t.closePath(),t.moveTo(i[4][0],i[4][1]),t.lineTo(i[5][0],i[5][1]),t.moveTo(i[6][0],i[6][1]),t.lineTo(i[7][0],i[7][1]))},e}(dt);function wc(r,e,t){var a=r.ends;return new G4({shape:{points:t?F4(a,r):a},z2:100})}function IS(r,e){for(var t=!0,a=0;a0?"borderColor":"borderColor0"])||t.get(["itemStyle",r>0?"color":"color0"]),n=t.getModel("itemStyle").getItemStyle(V4);e.useStyle(n),e.style.fill=null,e.style.stroke=i}var W4=B4,ND=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.defaultValueDimensions=[{name:"open",defaultTooltip:!0},{name:"close",defaultTooltip:!0},{name:"lowest",defaultTooltip:!0},{name:"highest",defaultTooltip:!0}],t}return e.prototype.getShadowDim=function(){return"open"},e.prototype.brushSelector=function(t,a,i){var n=a.getItemLayout(t);return n&&i.rect(n.brushRect)},e.type="series.candlestick",e.dependencies=["xAxis","yAxis","grid"],e.defaultOption={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,layout:null,clip:!0,itemStyle:{color:"#eb5454",color0:"#47b262",borderColor:"#eb5454",borderColor0:"#47b262",borderWidth:1},emphasis:{scale:!0,itemStyle:{borderWidth:2}},barMaxWidth:null,barMinWidth:null,barWidth:null,large:!0,largeThreshold:600,progressive:3e3,progressiveThreshold:1e4,progressiveChunkMode:"mod",animationEasing:"linear",animationDuration:300},e}(Vt);Qt(ND,ED,!0);var $4=ND;function U4(r){!r||!z(r.series)||A(r.series,function(e){J(e)&&e.type==="k"&&(e.type="candlestick")})}var Y4=["itemStyle","borderColor"],Z4=["itemStyle","borderColor0"],X4=["itemStyle","color"],q4=["itemStyle","color0"],K4={seriesType:"candlestick",plan:mo(),performRawSeries:!0,reset:function(r,e){function t(n,o){return o.get(n>0?X4:q4)}function a(n,o){return o.get(n>0?Y4:Z4)}if(!e.isSeriesFiltered(r)){var i=r.pipelineContext.large;return!i&&{progress:function(n,o){for(var s;(s=n.next())!=null;){var l=o.getItemModel(s),u=o.getItemLayout(s).sign,f=l.getItemStyle();f.fill=t(u,l),f.stroke=a(u,l)||f.fill;var h=o.ensureUniqueItemVisual(s,"style");B(h,f)}}}}}},Q4=K4,J4={seriesType:"candlestick",plan:mo(),reset:function(r){var e=r.coordinateSystem,t=r.getData(),a=j4(r,t),i=0,n=1,o=["x","y"],s=t.getDimensionIndex(t.mapDimension(o[i])),l=G(t.mapDimensionsAll(o[n]),t.getDimensionIndex,t),u=l[0],f=l[1],h=l[2],v=l[3];if(t.setLayout({candleWidth:a,isSimpleBox:a<=1.3}),s<0||l.length<4)return;return{progress:r.pipelineContext.large?p:c};function c(d,g){for(var y,m=g.getStore();(y=d.next())!=null;){var _=m.get(s,y),S=m.get(u,y),w=m.get(f,y),x=m.get(h,y),b=m.get(v,y),T=Math.min(S,w),C=Math.max(S,w),M=R(T,_),D=R(C,_),L=R(x,_),I=R(b,_),P=[];E(P,D,0),E(P,M,1),P.push(k(I),k(D),k(L),k(M)),g.setItemLayout(y,{sign:kS(m,y,S,w,f),initBaseline:S>w?D[n]:M[n],ends:P,brushRect:N(x,b,_)})}function R(V,F){var W=[];return W[i]=F,W[n]=V,isNaN(F)||isNaN(V)?[NaN,NaN]:e.dataToPoint(W)}function E(V,F,W){var Z=F.slice(),tt=F.slice();Z[i]=Nu(Z[i]+a/2,1,!1),tt[i]=Nu(tt[i]-a/2,1,!0),W?V.push(Z,tt):V.push(tt,Z)}function N(V,F,W){var Z=R(V,W),tt=R(F,W);return Z[i]-=a/2,tt[i]-=a/2,{x:Z[0],y:Z[1],width:a,height:tt[1]-Z[1]}}function k(V){return V[i]=Nu(V[i],1),V}}function p(d,g){for(var y=kr(d.count*4),m=0,_,S=[],w=[],x,b=g.getStore();(x=d.next())!=null;){var T=b.get(s,x),C=b.get(u,x),M=b.get(f,x),D=b.get(h,x),L=b.get(v,x);if(isNaN(T)||isNaN(D)||isNaN(L)){y[m++]=NaN,m+=3;continue}y[m++]=kS(b,x,C,M,f),S[i]=T,S[n]=D,_=e.dataToPoint(S,null,w),y[m++]=_?_[0]:NaN,y[m++]=_?_[1]:NaN,S[n]=L,_=e.dataToPoint(S,null,w),y[m++]=_?_[1]:NaN}g.setLayout("largePoints",y)}}};function kS(r,e,t,a,i){var n;return t>a?n=-1:t0?r.get(i,e-1)<=a?1:-1:1,n}function j4(r,e){var t=r.getBaseAxis(),a,i=t.type==="category"?t.getBandWidth():(a=t.getExtent(),Math.abs(a[1]-a[0])/e.count()),n=H(vt(r.get("barMaxWidth"),i),i),o=H(vt(r.get("barMinWidth"),1),i),s=r.get("barWidth");return s!=null?H(s,i):Math.max(Math.min(i/2,n),o)}var tW=J4;function eW(r){r.registerChartView(W4),r.registerSeriesModel($4),r.registerPreprocessor(U4),r.registerVisual(Q4),r.registerLayout(tW)}function OS(r,e){var t=e.rippleEffectColor||e.color;r.eachChild(function(a){a.attr({z:e.z,zlevel:e.zlevel,style:{stroke:e.brushType==="stroke"?t:null,fill:e.brushType==="fill"?t:null}})})}var rW=function(r){O(e,r);function e(t,a){var i=r.call(this)||this,n=new pl(t,a),o=new rt;return i.add(n),i.add(o),i.updateData(t,a),i}return e.prototype.stopEffectAnimation=function(){this.childAt(1).removeAll()},e.prototype.startEffectAnimation=function(t){for(var a=t.symbolType,i=t.color,n=t.rippleNumber,o=this.childAt(1),s=0;s0&&(s=this._getLineLength(n)/u*1e3),s!==this._period||l!==this._loop){n.stopAnimation();var h=void 0;K(f)?h=f(i):h=f,n.__t>0&&(h=-s*n.__t),this._animateSymbol(n,s,h,l)}this._period=s,this._loop=l}},e.prototype._animateSymbol=function(t,a,i,n){if(a>0){t.__t=0;var o=this,s=t.animate("",n).when(a,{__t:1}).delay(i).during(function(){o._updateSymbolPosition(t)});n||s.done(function(){o.remove(t)}),s.start()}},e.prototype._getLineLength=function(t){return Da(t.__p1,t.__cp1)+Da(t.__cp1,t.__p2)},e.prototype._updateAnimationPoints=function(t,a){t.__p1=a[0],t.__p2=a[1],t.__cp1=a[2]||[(a[0][0]+a[1][0])/2,(a[0][1]+a[1][1])/2]},e.prototype.updateData=function(t,a,i){this.childAt(0).updateData(t,a,i),this._updateEffectSymbol(t,a)},e.prototype._updateSymbolPosition=function(t){var a=t.__p1,i=t.__p2,n=t.__cp1,o=t.__t,s=[t.x,t.y],l=s.slice(),u=ae,f=lp;s[0]=u(a[0],n[0],i[0],o),s[1]=u(a[1],n[1],i[1],o);var h=f(a[0],n[0],i[0],o),v=f(a[1],n[1],i[1],o);t.rotation=-Math.atan2(v,h)-Math.PI/2,(this._symbolType==="line"||this._symbolType==="rect"||this._symbolType==="roundRect")&&(t.__lastT!==void 0&&t.__lastT=0&&!(n[l]<=a);l--);l=Math.min(l,o-2)}else{for(l=s;la);l++);l=Math.min(l-1,o-2)}var f=(a-n[l])/(n[l+1]-n[l]),h=i[l],v=i[l+1];t.x=h[0]*(1-f)+f*v[0],t.y=h[1]*(1-f)+f*v[1];var c=v[0]-h[0],p=v[1]-h[1];t.rotation=-Math.atan2(p,c)-Math.PI/2,this._lastFrame=l,this._lastFramePercent=a,t.ignore=!1}},e}(VD),vW=hW,cW=function(){function r(){this.polyline=!1,this.curveness=0,this.segs=[]}return r}(),pW=function(r){O(e,r);function e(t){var a=r.call(this,t)||this;return a._off=0,a.hoverDataIdx=-1,a}return e.prototype.reset=function(){this.notClear=!1,this._off=0},e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new cW},e.prototype.buildPath=function(t,a){var i=a.segs,n=a.curveness,o;if(a.polyline)for(o=this._off;o0){t.moveTo(i[o++],i[o++]);for(var l=1;l0){var c=(u+h)/2-(f-v)*n,p=(f+v)/2-(h-u)*n;t.quadraticCurveTo(c,p,h,v)}else t.lineTo(h,v)}this.incremental&&(this._off=o,this.notClear=!0)},e.prototype.findDataIndex=function(t,a){var i=this.shape,n=i.segs,o=i.curveness,s=this.style.lineWidth;if(i.polyline)for(var l=0,u=0;u0)for(var h=n[u++],v=n[u++],c=1;c0){var g=(h+p)/2-(v-d)*o,y=(v+d)/2-(p-h)*o;if(Ub(h,v,g,y,p,d,s,t,a))return l}else if(Aa(h,v,p,d,s,t,a))return l;l++}return-1},e.prototype.contain=function(t,a){var i=this.transformCoordToLocal(t,a),n=this.getBoundingRect();if(t=i[0],a=i[1],n.contain(t,a)){var o=this.hoverDataIdx=this.findDataIndex(t,a);return o>=0}return this.hoverDataIdx=-1,!1},e.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var a=this.shape,i=a.segs,n=1/0,o=1/0,s=-1/0,l=-1/0,u=0;u0&&(o.dataIndex=l+e.__startIndex)})},r.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},r}(),gW=dW,yW={seriesType:"lines",plan:mo(),reset:function(r){var e=r.coordinateSystem;if(!!e){var t=r.get("polyline"),a=r.pipelineContext.large;return{progress:function(i,n){var o=[];if(a){var s=void 0,l=i.end-i.start;if(t){for(var u=0,f=i.start;f0&&(f||u.configLayer(s,{motionBlur:!0,lastFrameAlpha:Math.max(Math.min(l/10+.9,1),0)})),o.updateData(n);var h=t.get("clip",!0)&&xh(t.coordinateSystem,!1,t);h?this.group.setClipPath(h):this.group.removeClipPath(),this._lastZlevel=s,this._finished=!0},e.prototype.incrementalPrepareRender=function(t,a,i){var n=t.getData(),o=this._updateLineDraw(n,t);o.incrementalPrepareUpdate(n),this._clearLayer(i),this._finished=!1},e.prototype.incrementalRender=function(t,a,i){this._lineDraw.incrementalUpdate(t,a.getData()),this._finished=t.end===a.getData().count()},e.prototype.eachRendered=function(t){this._lineDraw&&this._lineDraw.eachRendered(t)},e.prototype.updateTransform=function(t,a,i){var n=t.getData(),o=t.pipelineContext;if(!this._finished||o.large||o.progressiveRender)return{update:!0};var s=zD.reset(t,a,i);s.progress&&s.progress({start:0,end:n.count(),count:n.count()},n),this._lineDraw.updateLayout(),this._clearLayer(i)},e.prototype._updateLineDraw=function(t,a){var i=this._lineDraw,n=this._showEffect(a),o=!!a.get("polyline"),s=a.pipelineContext,l=s.large;return(!i||n!==this._hasEffet||o!==this._isPolyline||l!==this._isLargeDraw)&&(i&&i.remove(),i=this._lineDraw=l?new gW:new uy(o?n?vW:BD:n?VD:ly),this._hasEffet=n,this._isPolyline=o,this._isLargeDraw=l),this.group.add(i.group),i},e.prototype._showEffect=function(t){return!!t.get(["effect","show"])},e.prototype._clearLayer=function(t){var a=t.getZr(),i=a.painter.getType()==="svg";!i&&this._lastZlevel!=null&&a.painter.getLayer(this._lastZlevel).clear(!0)},e.prototype.remove=function(t,a){this._lineDraw&&this._lineDraw.remove(),this._lineDraw=null,this._clearLayer(a)},e.prototype.dispose=function(t,a){this.remove(t,a)},e.type="lines",e}(Rt),_W=mW,SW=typeof Uint32Array=="undefined"?Array:Uint32Array,xW=typeof Float64Array=="undefined"?Array:Float64Array;function NS(r){var e=r.data;e&&e[0]&&e[0][0]&&e[0][0].coord&&(r.data=G(e,function(t){var a=[t[0].coord,t[1].coord],i={coords:a};return t[0].name&&(i.fromName=t[0].name),t[1].name&&(i.toName=t[1].name),Hd([i,t[0],t[1]])}))}var wW=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.visualStyleAccessPath="lineStyle",t.visualDrawType="stroke",t}return e.prototype.init=function(t){t.data=t.data||[],NS(t);var a=this._processFlatCoordsArray(t.data);this._flatCoords=a.flatCoords,this._flatCoordsOffset=a.flatCoordsOffset,a.flatCoords&&(t.data=new Float32Array(a.count)),r.prototype.init.apply(this,arguments)},e.prototype.mergeOption=function(t){if(NS(t),t.data){var a=this._processFlatCoordsArray(t.data);this._flatCoords=a.flatCoords,this._flatCoordsOffset=a.flatCoordsOffset,a.flatCoords&&(t.data=new Float32Array(a.count))}r.prototype.mergeOption.apply(this,arguments)},e.prototype.appendData=function(t){var a=this._processFlatCoordsArray(t.data);a.flatCoords&&(this._flatCoords?(this._flatCoords=Zu(this._flatCoords,a.flatCoords),this._flatCoordsOffset=Zu(this._flatCoordsOffset,a.flatCoordsOffset)):(this._flatCoords=a.flatCoords,this._flatCoordsOffset=a.flatCoordsOffset),t.data=new Float32Array(a.count)),this.getRawData().appendData(t.data)},e.prototype._getCoordsFromItemModel=function(t){var a=this.getData().getItemModel(t),i=a.option instanceof Array?a.option:a.getShallow("coords");return i},e.prototype.getLineCoordsCount=function(t){return this._flatCoordsOffset?this._flatCoordsOffset[t*2+1]:this._getCoordsFromItemModel(t).length},e.prototype.getLineCoords=function(t,a){if(this._flatCoordsOffset){for(var i=this._flatCoordsOffset[t*2],n=this._flatCoordsOffset[t*2+1],o=0;o ")})},e.prototype.preventIncremental=function(){return!!this.get(["effect","show"])},e.prototype.getProgressive=function(){var t=this.option.progressive;return t==null?this.option.large?1e4:this.get("progressive"):t},e.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return t==null?this.option.large?2e4:this.get("progressiveThreshold"):t},e.prototype.getZLevelKey=function(){var t=this.getModel("effect"),a=t.get("trailLength");return this.getData().count()>this.getProgressiveThreshold()?this.id:t.get("show")&&a>0?a+"":""},e.type="series.lines",e.dependencies=["grid","polar","geo","calendar"],e.defaultOption={coordinateSystem:"geo",z:2,legendHoverLink:!0,xAxisIndex:0,yAxisIndex:0,symbol:["none","none"],symbolSize:[10,10],geoIndex:0,effect:{show:!1,period:4,constantSpeed:0,symbol:"circle",symbolSize:3,loop:!0,trailLength:.2},large:!1,largeThreshold:2e3,polyline:!1,clip:!0,label:{show:!1,position:"end"},lineStyle:{opacity:.5}},e}(Vt),bW=wW;function gu(r){return r instanceof Array||(r=[r,r]),r}var TW={seriesType:"lines",reset:function(r){var e=gu(r.get("symbol")),t=gu(r.get("symbolSize")),a=r.getData();a.setVisual("fromSymbol",e&&e[0]),a.setVisual("toSymbol",e&&e[1]),a.setVisual("fromSymbolSize",t&&t[0]),a.setVisual("toSymbolSize",t&&t[1]);function i(n,o){var s=n.getItemModel(o),l=gu(s.getShallow("symbol",!0)),u=gu(s.getShallow("symbolSize",!0));l[0]&&n.setItemVisual(o,"fromSymbol",l[0]),l[1]&&n.setItemVisual(o,"toSymbol",l[1]),u[0]&&n.setItemVisual(o,"fromSymbolSize",u[0]),u[1]&&n.setItemVisual(o,"toSymbolSize",u[1])}return{dataEach:a.hasItemOption?i:null}}},CW=TW;function AW(r){r.registerChartView(_W),r.registerSeriesModel(bW),r.registerLayout(zD),r.registerVisual(CW)}var MW=256,DW=function(){function r(){this.blurSize=30,this.pointSize=20,this.maxOpacity=1,this.minOpacity=0,this._gradientPixels={inRange:null,outOfRange:null};var e=Wa.createCanvas();this.canvas=e}return r.prototype.update=function(e,t,a,i,n,o){var s=this._getBrush(),l=this._getGradient(n,"inRange"),u=this._getGradient(n,"outOfRange"),f=this.pointSize+this.blurSize,h=this.canvas,v=h.getContext("2d"),c=e.length;h.width=t,h.height=a;for(var p=0;p0){var L=o(_)?l:u;_>0&&(_=_*M+T),w[x++]=L[D],w[x++]=L[D+1],w[x++]=L[D+2],w[x++]=L[D+3]*_*256}else x+=4}return v.putImageData(S,0,0),h},r.prototype._getBrush=function(){var e=this._brushCanvas||(this._brushCanvas=Wa.createCanvas()),t=this.pointSize+this.blurSize,a=t*2;e.width=a,e.height=a;var i=e.getContext("2d");return i.clearRect(0,0,a,a),i.shadowOffsetX=a,i.shadowBlur=this.blurSize,i.shadowColor="#000",i.beginPath(),i.arc(-t,t,this.pointSize,0,Math.PI*2,!0),i.closePath(),i.fill(),e},r.prototype._getGradient=function(e,t){for(var a=this._gradientPixels,i=a[t]||(a[t]=new Uint8ClampedArray(256*4)),n=[0,0,0,0],o=0,s=0;s<256;s++)e[t](s/255,!0,n),i[o++]=n[0],i[o++]=n[1],i[o++]=n[2],i[o++]=n[3];return i},r}(),LW=DW;function IW(r,e,t){var a=r[1]-r[0];e=G(e,function(o){return{interval:[(o.interval[0]-r[0])/a,(o.interval[1]-r[0])/a]}});var i=e.length,n=0;return function(o){var s;for(s=n;s=0;s--){var l=e[s].interval;if(l[0]<=o&&o<=l[1]){n=s;break}}return s>=0&&s=e[0]&&a<=e[1]}}function VS(r){var e=r.dimensions;return e[0]==="lng"&&e[1]==="lat"}var RW=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){var n;a.eachComponent("visualMap",function(s){s.eachTargetSeries(function(l){l===t&&(n=s)})}),this._progressiveEls=null,this.group.removeAll();var o=t.coordinateSystem;o.type==="cartesian2d"||o.type==="calendar"?this._renderOnCartesianAndCalendar(t,i,0,t.getData().count()):VS(o)&&this._renderOnGeo(o,t,n,i)},e.prototype.incrementalPrepareRender=function(t,a,i){this.group.removeAll()},e.prototype.incrementalRender=function(t,a,i,n){var o=a.coordinateSystem;o&&(VS(o)?this.render(a,i,n):(this._progressiveEls=[],this._renderOnCartesianAndCalendar(a,n,t.start,t.end,!0)))},e.prototype.eachRendered=function(t){Ja(this._progressiveEls||this.group,t)},e.prototype._renderOnCartesianAndCalendar=function(t,a,i,n,o){var s=t.coordinateSystem,l=un(s,"cartesian2d"),u,f,h,v;if(l){var c=s.getAxis("x"),p=s.getAxis("y");u=c.getBandWidth()+.5,f=p.getBandWidth()+.5,h=c.scale.getExtent(),v=p.scale.getExtent()}for(var d=this.group,g=t.getData(),y=t.getModel(["emphasis","itemStyle"]).getItemStyle(),m=t.getModel(["blur","itemStyle"]).getItemStyle(),_=t.getModel(["select","itemStyle"]).getItemStyle(),S=t.get(["itemStyle","borderRadius"]),w=oe(t),x=t.getModel("emphasis"),b=x.get("focus"),T=x.get("blurScope"),C=x.get("disabled"),M=l?[g.mapDimension("x"),g.mapDimension("y"),g.mapDimension("value")]:[g.mapDimension("time"),g.mapDimension("value")],D=i;Dh[1]||Rv[1])continue;var E=s.dataToPoint([P,R]);L=new _t({shape:{x:E[0]-u/2,y:E[1]-f/2,width:u,height:f},style:I})}else{if(isNaN(g.get(M[1],D)))continue;L=new _t({z2:1,shape:s.dataToRect([g.get(M[0],D)]).contentShape,style:I})}if(g.hasItemOption){var N=g.getItemModel(D),k=N.getModel("emphasis");y=k.getModel("itemStyle").getItemStyle(),m=N.getModel(["blur","itemStyle"]).getItemStyle(),_=N.getModel(["select","itemStyle"]).getItemStyle(),S=N.get(["itemStyle","borderRadius"]),b=k.get("focus"),T=k.get("blurScope"),C=k.get("disabled"),w=oe(N)}L.shape.r=S;var V=t.getRawValue(D),F="-";V&&V[2]!=null&&(F=V[2]+""),me(L,w,{labelFetcher:t,labelDataIndex:D,defaultOpacity:I.opacity,defaultText:F}),L.ensureState("emphasis").style=y,L.ensureState("blur").style=m,L.ensureState("select").style=_,Ut(L,b,T,C),L.incremental=o,o&&(L.states.emphasis.hoverLayer=!0),d.add(L),g.setItemGraphicEl(D,L),this._progressiveEls&&this._progressiveEls.push(L)}},e.prototype._renderOnGeo=function(t,a,i,n){var o=i.targetVisuals.inRange,s=i.targetVisuals.outOfRange,l=a.getData(),u=this._hmLayer||this._hmLayer||new LW;u.blurSize=a.get("blurSize"),u.pointSize=a.get("pointSize"),u.minOpacity=a.get("minOpacity"),u.maxOpacity=a.get("maxOpacity");var f=t.getViewRect().clone(),h=t.getRoamTransform();f.applyTransform(h);var v=Math.max(f.x,0),c=Math.max(f.y,0),p=Math.min(f.width+f.x,n.getWidth()),d=Math.min(f.height+f.y,n.getHeight()),g=p-v,y=d-c,m=[l.mapDimension("lng"),l.mapDimension("lat"),l.mapDimension("value")],_=l.mapArray(m,function(b,T,C){var M=t.dataToPoint([b,T]);return M[0]-=v,M[1]-=c,M.push(C),M}),S=i.getExtent(),w=i.type==="visualMap.continuous"?PW(S,i.option.range):IW(S,i.getPieceList(),i.option.selected);u.update(_,g,y,o.color.getNormalizer(),{inRange:o.color.getColorMapper(),outOfRange:s.color.getColorMapper()},w);var x=new he({style:{width:g,height:y,x:v,y:c,image:u.canvas},silent:!0});this.group.add(x)},e.type="heatmap",e}(Rt),EW=RW,kW=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.getInitialData=function(t,a){return ca(null,this,{generateCoord:"value"})},e.prototype.preventIncremental=function(){var t=ul.get(this.get("coordinateSystem"));if(t&&t.dimensions)return t.dimensions[0]==="lng"&&t.dimensions[1]==="lat"},e.type="series.heatmap",e.dependencies=["grid","geo","calendar"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,geoIndex:0,blurSize:30,pointSize:20,maxOpacity:1,minOpacity:0,select:{itemStyle:{borderColor:"#212121"}}},e}(Vt),OW=kW;function NW(r){r.registerChartView(EW),r.registerSeriesModel(OW)}var VW=["itemStyle","borderWidth"],BS=[{xy:"x",wh:"width",index:0,posDesc:["left","right"]},{xy:"y",wh:"height",index:1,posDesc:["top","bottom"]}],Tc=new Hr,BW=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){var n=this.group,o=t.getData(),s=this._data,l=t.coordinateSystem,u=l.getBaseAxis(),f=u.isHorizontal(),h=l.master.getRect(),v={ecSize:{width:i.getWidth(),height:i.getHeight()},seriesModel:t,coordSys:l,coordSysExtent:[[h.x,h.x+h.width],[h.y,h.y+h.height]],isHorizontal:f,valueDim:BS[+f],categoryDim:BS[1-+f]};return o.diff(s).add(function(c){if(!!o.hasValue(c)){var p=GS(o,c),d=zS(o,c,p,v),g=FS(o,v,d);o.setItemGraphicEl(c,g),n.add(g),WS(g,v,d)}}).update(function(c,p){var d=s.getItemGraphicEl(p);if(!o.hasValue(c)){n.remove(d);return}var g=GS(o,c),y=zS(o,c,g,v),m=UD(o,y);d&&m!==d.__pictorialShapeStr&&(n.remove(d),o.setItemGraphicEl(c,null),d=null),d?UW(d,v,y):d=FS(o,v,y,!0),o.setItemGraphicEl(c,d),d.__pictorialSymbolMeta=y,n.add(d),WS(d,v,y)}).remove(function(c){var p=s.getItemGraphicEl(c);p&&HS(s,c,p.__pictorialSymbolMeta.animationModel,p)}).execute(),this._data=o,this.group},e.prototype.remove=function(t,a){var i=this.group,n=this._data;t.get("animation")?n&&n.eachItemGraphicEl(function(o){HS(n,at(o).dataIndex,t,o)}):i.removeAll()},e.type="pictorialBar",e}(Rt);function zS(r,e,t,a){var i=r.getItemLayout(e),n=t.get("symbolRepeat"),o=t.get("symbolClip"),s=t.get("symbolPosition")||"start",l=t.get("symbolRotate"),u=(l||0)*Math.PI/180||0,f=t.get("symbolPatternSize")||2,h=t.isAnimationEnabled(),v={dataIndex:e,layout:i,itemModel:t,symbolType:r.getItemVisual(e,"symbol")||"circle",style:r.getItemVisual(e,"style"),symbolClip:o,symbolRepeat:n,symbolRepeatDirection:t.get("symbolRepeatDirection"),symbolPatternSize:f,rotation:u,animationModel:h?t:null,hoverScale:h&&t.get(["emphasis","scale"]),z2:t.getShallow("z",!0)||0};zW(t,n,i,a,v),GW(r,e,i,n,o,v.boundingLength,v.pxSign,f,a,v),FW(t,v.symbolScale,u,a,v);var c=v.symbolSize,p=So(t.get("symbolOffset"),c);return HW(t,c,i,n,o,p,s,v.valueLineWidth,v.boundingLength,v.repeatCutLength,a,v),v}function zW(r,e,t,a,i){var n=a.valueDim,o=r.get("symbolBoundingData"),s=a.coordSys.getOtherAxis(a.coordSys.getBaseAxis()),l=s.toGlobalCoord(s.dataToCoord(0)),u=1-+(t[n.wh]<=0),f;if(z(o)){var h=[Cc(s,o[0])-l,Cc(s,o[1])-l];h[1]0?1:-1}function Cc(r,e){return r.toGlobalCoord(r.dataToCoord(r.scale.parse(e)))}function GW(r,e,t,a,i,n,o,s,l,u){var f=l.valueDim,h=l.categoryDim,v=Math.abs(t[h.wh]),c=r.getItemVisual(e,"symbolSize"),p;z(c)?p=c.slice():c==null?p=["100%","100%"]:p=[c,c],p[h.index]=H(p[h.index],v),p[f.index]=H(p[f.index],a?v:Math.abs(n)),u.symbolSize=p;var d=u.symbolScale=[p[0]/s,p[1]/s];d[f.index]*=(l.isHorizontal?-1:1)*o}function FW(r,e,t,a,i){var n=r.get(VW)||0;n&&(Tc.attr({scaleX:e[0],scaleY:e[1],rotation:t}),Tc.updateTransform(),n/=Tc.getLineScale(),n*=e[a.valueDim.index]),i.valueLineWidth=n||0}function HW(r,e,t,a,i,n,o,s,l,u,f,h){var v=f.categoryDim,c=f.valueDim,p=h.pxSign,d=Math.max(e[c.index]+s,0),g=d;if(a){var y=Math.abs(l),m=ie(r.get("symbolMargin"),"15%")+"",_=!1;m.lastIndexOf("!")===m.length-1&&(_=!0,m=m.slice(0,m.length-1));var S=H(m,e[c.index]),w=Math.max(d+S*2,0),x=_?0:S*2,b=Ib(a),T=b?a:$S((y+x)/w),C=y-T*d;S=C/2/(_?T:Math.max(T-1,1)),w=d+S*2,x=_?0:S*2,!b&&a!=="fixed"&&(T=u?$S((Math.abs(u)+x)/w):0),g=T*w-x,h.repeatTimes=T,h.symbolMargin=S}var M=p*(g/2),D=h.pathPosition=[];D[v.index]=t[v.wh]/2,D[c.index]=o==="start"?M:o==="end"?l-M:l/2,n&&(D[0]+=n[0],D[1]+=n[1]);var L=h.bundlePosition=[];L[v.index]=t[v.xy],L[c.index]=t[c.xy];var I=h.barRectShape=B({},t);I[c.wh]=p*Math.max(Math.abs(t[c.wh]),Math.abs(D[c.index]+M)),I[v.wh]=t[v.wh];var P=h.clipShape={};P[v.xy]=-t[v.xy],P[v.wh]=f.ecSize[v.wh],P[c.xy]=0,P[c.wh]=t[c.wh]}function GD(r){var e=r.symbolPatternSize,t=Kt(r.symbolType,-e/2,-e/2,e,e);return t.attr({culling:!0}),t.type!=="image"&&t.setStyle({strokeNoScale:!0}),t}function FD(r,e,t,a){var i=r.__pictorialBundle,n=t.symbolSize,o=t.valueLineWidth,s=t.pathPosition,l=e.valueDim,u=t.repeatTimes||0,f=0,h=n[e.valueDim.index]+o+t.symbolMargin*2;for(yy(r,function(d){d.__pictorialAnimationIndex=f,d.__pictorialRepeatTimes=u,f0:y<0)&&(m=u-1-d),g[l.index]=h*(m-u/2+.5)+s[l.index],{x:g[0],y:g[1],scaleX:t.symbolScale[0],scaleY:t.symbolScale[1],rotation:t.rotation}}}function HD(r,e,t,a){var i=r.__pictorialBundle,n=r.__pictorialMainPath;n?Xn(n,null,{x:t.pathPosition[0],y:t.pathPosition[1],scaleX:t.symbolScale[0],scaleY:t.symbolScale[1],rotation:t.rotation},t,a):(n=r.__pictorialMainPath=GD(t),i.add(n),Xn(n,{x:t.pathPosition[0],y:t.pathPosition[1],scaleX:0,scaleY:0,rotation:t.rotation},{scaleX:t.symbolScale[0],scaleY:t.symbolScale[1]},t,a))}function WD(r,e,t){var a=B({},e.barRectShape),i=r.__pictorialBarRect;i?Xn(i,null,{shape:a},e,t):(i=r.__pictorialBarRect=new _t({z2:2,shape:a,silent:!0,style:{stroke:"transparent",fill:"transparent",lineWidth:0}}),i.disableMorphing=!0,r.add(i))}function $D(r,e,t,a){if(t.symbolClip){var i=r.__pictorialClipPath,n=B({},t.clipShape),o=e.valueDim,s=t.animationModel,l=t.dataIndex;if(i)wt(i,{shape:n},s,l);else{n[o.wh]=0,i=new _t({shape:n}),r.__pictorialBundle.setClipPath(i),r.__pictorialClipPath=i;var u={};u[o.wh]=t.clipShape[o.wh],ll[a?"updateProps":"initProps"](i,{shape:u},s,l)}}}function GS(r,e){var t=r.getItemModel(e);return t.getAnimationDelayParams=WW,t.isAnimationEnabled=$W,t}function WW(r){return{index:r.__pictorialAnimationIndex,count:r.__pictorialRepeatTimes}}function $W(){return this.parentModel.isAnimationEnabled()&&!!this.getShallow("animation")}function FS(r,e,t,a){var i=new rt,n=new rt;return i.add(n),i.__pictorialBundle=n,n.x=t.bundlePosition[0],n.y=t.bundlePosition[1],t.symbolRepeat?FD(i,e,t):HD(i,e,t),WD(i,t,a),$D(i,e,t,a),i.__pictorialShapeStr=UD(r,t),i.__pictorialSymbolMeta=t,i}function UW(r,e,t){var a=t.animationModel,i=t.dataIndex,n=r.__pictorialBundle;wt(n,{x:t.bundlePosition[0],y:t.bundlePosition[1]},a,i),t.symbolRepeat?FD(r,e,t,!0):HD(r,e,t,!0),WD(r,t,!0),$D(r,e,t,!0)}function HS(r,e,t,a){var i=a.__pictorialBarRect;i&&i.removeTextContent();var n=[];yy(a,function(o){n.push(o)}),a.__pictorialMainPath&&n.push(a.__pictorialMainPath),a.__pictorialClipPath&&(t=null),A(n,function(o){Ua(o,{scaleX:0,scaleY:0},t,e,function(){a.parent&&a.parent.remove(a)})}),r.setItemGraphicEl(e,null)}function UD(r,e){return[r.getItemVisual(e.dataIndex,"symbol")||"none",!!e.symbolRepeat,!!e.symbolClip].join(":")}function yy(r,e,t){A(r.__pictorialBundle.children(),function(a){a!==r.__pictorialBarRect&&e.call(t,a)})}function Xn(r,e,t,a,i,n){e&&r.attr(e),a.symbolClip&&!i?t&&r.attr(t):t&&ll[i?"updateProps":"initProps"](r,t,a.animationModel,a.dataIndex,n)}function WS(r,e,t){var a=t.dataIndex,i=t.itemModel,n=i.getModel("emphasis"),o=n.getModel("itemStyle").getItemStyle(),s=i.getModel(["blur","itemStyle"]).getItemStyle(),l=i.getModel(["select","itemStyle"]).getItemStyle(),u=i.getShallow("cursor"),f=n.get("focus"),h=n.get("blurScope"),v=n.get("scale");yy(r,function(d){if(d instanceof he){var g=d.style;d.useStyle(B({image:g.image,x:g.x,y:g.y,width:g.width,height:g.height},t.style))}else d.useStyle(t.style);var y=d.ensureState("emphasis");y.style=o,v&&(y.scaleX=d.scaleX*1.1,y.scaleY=d.scaleY*1.1),d.ensureState("blur").style=s,d.ensureState("select").style=l,u&&(d.cursor=u),d.z2=t.z2});var c=e.valueDim.posDesc[+(t.boundingLength>0)],p=r.__pictorialBarRect;me(p,oe(i),{labelFetcher:e.seriesModel,labelDataIndex:a,defaultText:to(e.seriesModel.getData(),a),inheritColor:t.style.fill,defaultOpacity:t.style.opacity,defaultOutsidePosition:c}),Ut(r,f,h,n.get("disabled"))}function $S(r){var e=Math.round(r);return Math.abs(r-e)<1e-4?e:Math.ceil(r)}var YW=BW,ZW=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.hasSymbolVisual=!0,t.defaultSymbol="roundRect",t}return e.prototype.getInitialData=function(t){return t.stack=null,r.prototype.getInitialData.apply(this,arguments)},e.type="series.pictorialBar",e.dependencies=["grid"],e.defaultOption=ja(bf.defaultOption,{symbol:"circle",symbolSize:null,symbolRotate:null,symbolPosition:null,symbolOffset:null,symbolMargin:null,symbolRepeat:!1,symbolRepeatDirection:"end",symbolClip:!1,symbolBoundingData:null,symbolPatternSize:400,barGap:"-100%",progressive:0,emphasis:{scale:!1},select:{itemStyle:{borderColor:"#212121"}}}),e}(bf),XW=ZW;function qW(r){r.registerChartView(YW),r.registerSeriesModel(XW),r.registerLayout(r.PRIORITY.VISUAL.LAYOUT,it(MA,"pictorialBar")),r.registerLayout(r.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,DA("pictorialBar"))}var KW=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._layers=[],t}return e.prototype.render=function(t,a,i){var n=t.getData(),o=this,s=this.group,l=t.getLayerSeries(),u=n.getLayout("layoutInfo"),f=u.rect,h=u.boundaryGap;s.x=0,s.y=f.y+h[0];function v(g){return g.name}var c=new ua(this._layersSeries||[],l,v,v),p=[];c.add(U(d,this,"add")).update(U(d,this,"update")).remove(U(d,this,"remove")).execute();function d(g,y,m){var _=o._layers;if(g==="remove"){s.remove(_[y]);return}for(var S=[],w=[],x,b=l[y].indices,T=0;Tn&&(n=s),a.push(s)}for(var u=0;un&&(n=h)}return{y0:i,max:n}}function a$(r){r.registerChartView(JW),r.registerSeriesModel(t$),r.registerLayout(e$),r.registerProcessor(yl("themeRiver"))}var i$=2,n$=4,o$=function(r){O(e,r);function e(t,a,i,n){var o=r.call(this)||this;o.z2=i$,o.textConfig={inside:!0},at(o).seriesIndex=a.seriesIndex;var s=new Tt({z2:n$,silent:t.getModel().get(["label","silent"])});return o.setTextContent(s),o.updateData(!0,t,a,i,n),o}return e.prototype.updateData=function(t,a,i,n,o){this.node=a,a.piece=this,i=i||this._seriesModel,n=n||this._ecModel;var s=this;at(s).dataIndex=a.dataIndex;var l=a.getModel(),u=l.getModel("emphasis"),f=a.getLayout(),h=B({},f);h.label=null;var v=a.getVisual("style");v.lineJoin="bevel";var c=a.getVisual("decal");c&&(v.decal=Jn(c,o));var p=Hn(l.getModel("itemStyle"),h,!0);B(h,p),A(Ce,function(m){var _=s.ensureState(m),S=l.getModel([m,"itemStyle"]);_.style=S.getItemStyle();var w=Hn(S,h);w&&(_.shape=w)}),t?(s.setShape(h),s.shape.r=f.r0,wt(s,{shape:{r:f.r}},i,a.dataIndex)):(wt(s,{shape:h},i),_r(s)),s.useStyle(v),this._updateLabel(i);var d=l.getShallow("cursor");d&&s.attr("cursor",d),this._seriesModel=i||this._seriesModel,this._ecModel=n||this._ecModel;var g=u.get("focus"),y=g==="ancestor"?a.getAncestorsIndices():g==="descendant"?a.getDescendantIndices():g;Ut(this,y,u.get("blurScope"),u.get("disabled"))},e.prototype._updateLabel=function(t){var a=this,i=this.node.getModel(),n=i.getModel("label"),o=this.node.getLayout(),s=o.endAngle-o.startAngle,l=(o.startAngle+o.endAngle)/2,u=Math.cos(l),f=Math.sin(l),h=this,v=h.getTextContent(),c=this.node.dataIndex,p=n.get("minAngle")/180*Math.PI,d=n.get("show")&&!(p!=null&&Math.abs(s)Math.PI/2?"right":"left"):!L||L==="center"?(s===2*Math.PI&&o.r0===0?M=0:M=(o.r+o.r0)/2,L="center"):L==="left"?(M=o.r0+D,l>Math.PI/2&&(L="right")):L==="right"&&(M=o.r-D,l>Math.PI/2&&(L="left")),S.style.align=L,S.style.verticalAlign=g(m,"verticalAlign")||"middle",S.x=M*u+o.cx,S.y=M*f+o.cy;var I=g(m,"rotate"),P=0;I==="radial"?(P=-l,P<-Math.PI/2&&(P+=Math.PI)):I==="tangential"?(P=Math.PI/2-l,P>Math.PI/2?P-=Math.PI:P<-Math.PI/2&&(P+=Math.PI)):xt(I)&&(P=I*Math.PI/180),S.rotation=P});function g(y,m){var _=y.get(m);return _==null?n.get(m):_}v.dirtyStyle()},e}(Re),YS=o$,_d="sunburstRootToNode",ZS="sunburstHighlight",s$="sunburstUnhighlight";function l$(r){r.registerAction({type:_d,update:"updateView"},function(e,t){t.eachComponent({mainType:"series",subType:"sunburst",query:e},a);function a(i,n){var o=Ys(e,[_d],i);if(o){var s=i.getViewRoot();s&&(e.direction=iy(s,o.node)?"rollUp":"drillDown"),i.resetViewRoot(o.node)}}}),r.registerAction({type:ZS,update:"none"},function(e,t,a){e=B({},e),t.eachComponent({mainType:"series",subType:"sunburst",query:e},i);function i(n){var o=Ys(e,[ZS],n);o&&(e.dataIndex=o.node.dataIndex)}a.dispatchAction(B(e,{type:"highlight"}))}),r.registerAction({type:s$,update:"updateView"},function(e,t,a){e=B({},e),a.dispatchAction(B(e,{type:"downplay"}))})}var u$=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i,n){var o=this;this.seriesModel=t,this.api=i,this.ecModel=a;var s=t.getData(),l=s.tree.root,u=t.getViewRoot(),f=this.group,h=t.get("renderLabelForZeroData"),v=[];u.eachNode(function(m){v.push(m)});var c=this._oldChildren||[];p(v,c),y(l,u),this._initEvents(),this._oldChildren=v;function p(m,_){if(m.length===0&&_.length===0)return;new ua(_,m,S,S).add(w).update(w).remove(it(w,null)).execute();function S(x){return x.getId()}function w(x,b){var T=x==null?null:m[x],C=b==null?null:_[b];d(T,C)}}function d(m,_){if(!h&&m&&!m.getValue()&&(m=null),m!==l&&_!==l){if(_&&_.piece)m?(_.piece.updateData(!1,m,t,a,i),s.setItemGraphicEl(m.dataIndex,_.piece)):g(_);else if(m){var S=new YS(m,t,a,i);f.add(S),s.setItemGraphicEl(m.dataIndex,S)}}}function g(m){!m||m.piece&&(f.remove(m.piece),m.piece=null)}function y(m,_){_.depth>0?(o.virtualPiece?o.virtualPiece.updateData(!1,m,t,a,i):(o.virtualPiece=new YS(m,t,a,i),f.add(o.virtualPiece)),_.piece.off("click"),o.virtualPiece.on("click",function(S){o._rootToNode(_.parentNode)})):o.virtualPiece&&(f.remove(o.virtualPiece),o.virtualPiece=null)}},e.prototype._initEvents=function(){var t=this;this.group.off("click"),this.group.on("click",function(a){var i=!1,n=t.seriesModel.getViewRoot();n.eachNode(function(o){if(!i&&o.piece&&o.piece===a.target){var s=o.getModel().get("nodeClick");if(s==="rootToNode")t._rootToNode(o);else if(s==="link"){var l=o.getModel(),u=l.get("link");if(u){var f=l.get("target",!0)||"_blank";ff(u,f)}}i=!0}})})},e.prototype._rootToNode=function(t){t!==this.seriesModel.getViewRoot()&&this.api.dispatchAction({type:_d,from:this.uid,seriesId:this.seriesModel.id,targetNode:t})},e.prototype.containPoint=function(t,a){var i=a.getData(),n=i.getItemLayout(0);if(n){var o=t[0]-n.cx,s=t[1]-n.cy,l=Math.sqrt(o*o+s*s);return l<=n.r&&l>=n.r0}},e.type="sunburst",e}(Rt),f$=u$,h$=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.ignoreStyleOnData=!0,t}return e.prototype.getInitialData=function(t,a){var i={name:t.name,children:t.data};YD(i);var n=this._levelModels=G(t.levels||[],function(l){return new Ot(l,this,a)},this),o=ay.createTree(i,this,s);function s(l){l.wrapMethod("getItemModel",function(u,f){var h=o.getNodeByDataIndex(f),v=n[h.depth];return v&&(u.parentModel=v),u})}return o.data},e.prototype.optionUpdated=function(){this.resetViewRoot()},e.prototype.getDataParams=function(t){var a=r.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(t);return a.treePathInfo=Th(i,this),a},e.prototype.getLevelModel=function(t){return this._levelModels&&this._levelModels[t.depth]},e.prototype.getViewRoot=function(){return this._viewRoot},e.prototype.resetViewRoot=function(t){t?this._viewRoot=t:t=this._viewRoot;var a=this.getRawData().tree.root;(!t||t!==a&&!a.contains(t))&&(this._viewRoot=a)},e.prototype.enableAriaDecal=function(){qM(this)},e.type="series.sunburst",e.defaultOption={z:2,center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,stillShowZeroSum:!0,nodeClick:"rootToNode",renderLabelForZeroData:!1,label:{rotate:"radial",show:!0,opacity:1,align:"center",position:"inside",distance:5,silent:!0},itemStyle:{borderWidth:1,borderColor:"white",borderType:"solid",shadowBlur:0,shadowColor:"rgba(0, 0, 0, 0.2)",shadowOffsetX:0,shadowOffsetY:0,opacity:1},emphasis:{focus:"descendant"},blur:{itemStyle:{opacity:.2},label:{opacity:.1}},animationType:"expansion",animationDuration:1e3,animationDurationUpdate:500,data:[],sort:"desc"},e}(Vt);function YD(r){var e=0;A(r.children,function(a){YD(a);var i=a.value;z(i)&&(i=i[0]),e+=i});var t=r.value;z(t)&&(t=t[0]),(t==null||isNaN(t))&&(t=e),t<0&&(t=0),z(r.value)?r.value[0]=t:r.value=t}var v$=h$,XS=Math.PI/180;function c$(r,e,t){e.eachSeriesByType(r,function(a){var i=a.get("center"),n=a.get("radius");z(n)||(n=[0,n]),z(i)||(i=[i,i]);var o=t.getWidth(),s=t.getHeight(),l=Math.min(o,s),u=H(i[0],o),f=H(i[1],s),h=H(n[0],l/2),v=H(n[1],l/2),c=-a.get("startAngle")*XS,p=a.get("minAngle")*XS,d=a.getData().tree.root,g=a.getViewRoot(),y=g.depth,m=a.get("sort");m!=null&&ZD(g,m);var _=0;A(g.children,function(E){!isNaN(E.getValue())&&_++});var S=g.getValue(),w=Math.PI/(S||_)*2,x=g.depth>0,b=g.height-(x?-1:1),T=(v-h)/(b||1),C=a.get("clockwise"),M=a.get("stillShowZeroSum"),D=C?1:-1,L=function(E,N){if(!!E){var k=N;if(E!==d){var V=E.getValue(),F=S===0&&M?w:V*w;F1;)o=o.parentNode;var s=i.getColorFromPalette(o.name||o.dataIndex+"",e);return a.depth>1&&$(s)&&(s=hp(s,(a.depth-1)/(n-1)*.5)),s}r.eachSeriesByType("sunburst",function(a){var i=a.getData(),n=i.tree;n.eachNode(function(o){var s=o.getModel(),l=s.getModel("itemStyle").getItemStyle();l.fill||(l.fill=t(o,a,n.root.height));var u=i.ensureUniqueItemVisual(o.dataIndex,"style");B(u,l)})})}function g$(r){r.registerChartView(f$),r.registerSeriesModel(v$),r.registerLayout(it(c$,"sunburst")),r.registerProcessor(it(yl,"sunburst")),r.registerVisual(d$),l$(r)}var qS={color:"fill",borderColor:"stroke"},y$={symbol:1,symbolSize:1,symbolKeepAspect:1,legendIcon:1,visualMeta:1,liftZ:1,decal:1},aa=bt(),m$=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.optionUpdated=function(){this.currentZLevel=this.get("zlevel",!0),this.currentZ=this.get("z",!0)},e.prototype.getInitialData=function(t,a){return ca(null,this)},e.prototype.getDataParams=function(t,a,i){var n=r.prototype.getDataParams.call(this,t,a);return i&&(n.info=aa(i).info),n},e.type="series.custom",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,legendHoverLink:!0,clip:!1},e}(Vt),_$=m$;function S$(r,e){return e=e||[0,0],G(["x","y"],function(t,a){var i=this.getAxis(t),n=e[a],o=r[a]/2;return i.type==="category"?i.getBandWidth():Math.abs(i.dataToCoord(n-o)-i.dataToCoord(n+o))},this)}function x$(r){var e=r.master.getRect();return{coordSys:{type:"cartesian2d",x:e.x,y:e.y,width:e.width,height:e.height},api:{coord:function(t){return r.dataToPoint(t)},size:U(S$,r)}}}function w$(r,e){return e=e||[0,0],G([0,1],function(t){var a=e[t],i=r[t]/2,n=[],o=[];return n[t]=a-i,o[t]=a+i,n[1-t]=o[1-t]=e[1-t],Math.abs(this.dataToPoint(n)[t]-this.dataToPoint(o)[t])},this)}function b$(r){var e=r.getBoundingRect();return{coordSys:{type:"geo",x:e.x,y:e.y,width:e.width,height:e.height,zoom:r.getZoom()},api:{coord:function(t){return r.dataToPoint(t)},size:U(w$,r)}}}function T$(r,e){var t=this.getAxis(),a=e instanceof Array?e[0]:e,i=(r instanceof Array?r[0]:r)/2;return t.type==="category"?t.getBandWidth():Math.abs(t.dataToCoord(a-i)-t.dataToCoord(a+i))}function C$(r){var e=r.getRect();return{coordSys:{type:"singleAxis",x:e.x,y:e.y,width:e.width,height:e.height},api:{coord:function(t){return r.dataToPoint(t)},size:U(T$,r)}}}function A$(r,e){return e=e||[0,0],G(["Radius","Angle"],function(t,a){var i="get"+t+"Axis",n=this[i](),o=e[a],s=r[a]/2,l=n.type==="category"?n.getBandWidth():Math.abs(n.dataToCoord(o-s)-n.dataToCoord(o+s));return t==="Angle"&&(l=l*Math.PI/180),l},this)}function M$(r){var e=r.getRadiusAxis(),t=r.getAngleAxis(),a=e.getExtent();return a[0]>a[1]&&a.reverse(),{coordSys:{type:"polar",cx:r.cx,cy:r.cy,r:a[1],r0:a[0]},api:{coord:function(i){var n=e.dataToRadius(i[0]),o=t.dataToAngle(i[1]),s=r.coordToPoint([n,o]);return s.push(n,o*Math.PI/180),s},size:U(A$,r)}}}function D$(r){var e=r.getRect(),t=r.getRangeInfo();return{coordSys:{type:"calendar",x:e.x,y:e.y,width:e.width,height:e.height,cellWidth:r.getCellWidth(),cellHeight:r.getCellHeight(),rangeInfo:{start:t.start,end:t.end,weeks:t.weeks,dayCount:t.allDay}},api:{coord:function(a,i){return r.dataToPoint(a,i)}}}}function XD(r,e,t,a){return r&&(r.legacy||r.legacy!==!1&&!t&&!a&&e!=="tspan"&&(e==="text"||Y(r,"text")))}function qD(r,e,t){var a=r,i,n,o;if(e==="text")o=a;else{o={},Y(a,"text")&&(o.text=a.text),Y(a,"rich")&&(o.rich=a.rich),Y(a,"textFill")&&(o.fill=a.textFill),Y(a,"textStroke")&&(o.stroke=a.textStroke),Y(a,"fontFamily")&&(o.fontFamily=a.fontFamily),Y(a,"fontSize")&&(o.fontSize=a.fontSize),Y(a,"fontStyle")&&(o.fontStyle=a.fontStyle),Y(a,"fontWeight")&&(o.fontWeight=a.fontWeight),n={type:"text",style:o,silent:!0},i={};var s=Y(a,"textPosition");t?i.position=s?a.textPosition:"inside":s&&(i.position=a.textPosition),Y(a,"textPosition")&&(i.position=a.textPosition),Y(a,"textOffset")&&(i.offset=a.textOffset),Y(a,"textRotation")&&(i.rotation=a.textRotation),Y(a,"textDistance")&&(i.distance=a.textDistance)}return KS(o,r),A(o.rich,function(l){KS(l,l)}),{textConfig:i,textContent:n}}function KS(r,e){!e||(e.font=e.textFont||e.font,Y(e,"textStrokeWidth")&&(r.lineWidth=e.textStrokeWidth),Y(e,"textAlign")&&(r.align=e.textAlign),Y(e,"textVerticalAlign")&&(r.verticalAlign=e.textVerticalAlign),Y(e,"textLineHeight")&&(r.lineHeight=e.textLineHeight),Y(e,"textWidth")&&(r.width=e.textWidth),Y(e,"textHeight")&&(r.height=e.textHeight),Y(e,"textBackgroundColor")&&(r.backgroundColor=e.textBackgroundColor),Y(e,"textPadding")&&(r.padding=e.textPadding),Y(e,"textBorderColor")&&(r.borderColor=e.textBorderColor),Y(e,"textBorderWidth")&&(r.borderWidth=e.textBorderWidth),Y(e,"textBorderRadius")&&(r.borderRadius=e.textBorderRadius),Y(e,"textBoxShadowColor")&&(r.shadowColor=e.textBoxShadowColor),Y(e,"textBoxShadowBlur")&&(r.shadowBlur=e.textBoxShadowBlur),Y(e,"textBoxShadowOffsetX")&&(r.shadowOffsetX=e.textBoxShadowOffsetX),Y(e,"textBoxShadowOffsetY")&&(r.shadowOffsetY=e.textBoxShadowOffsetY))}function QS(r,e,t){var a=r;a.textPosition=a.textPosition||t.position||"inside",t.offset!=null&&(a.textOffset=t.offset),t.rotation!=null&&(a.textRotation=t.rotation),t.distance!=null&&(a.textDistance=t.distance);var i=a.textPosition.indexOf("inside")>=0,n=r.fill||"#000";JS(a,e);var o=a.textFill==null;return i?o&&(a.textFill=t.insideFill||"#fff",!a.textStroke&&t.insideStroke&&(a.textStroke=t.insideStroke),!a.textStroke&&(a.textStroke=n),a.textStrokeWidth==null&&(a.textStrokeWidth=2)):(o&&(a.textFill=r.fill||t.outsideFill||"#000"),!a.textStroke&&t.outsideStroke&&(a.textStroke=t.outsideStroke)),a.text=e.text,a.rich=e.rich,A(e.rich,function(s){JS(s,s)}),a}function JS(r,e){!e||(Y(e,"fill")&&(r.textFill=e.fill),Y(e,"stroke")&&(r.textStroke=e.fill),Y(e,"lineWidth")&&(r.textStrokeWidth=e.lineWidth),Y(e,"font")&&(r.font=e.font),Y(e,"fontStyle")&&(r.fontStyle=e.fontStyle),Y(e,"fontWeight")&&(r.fontWeight=e.fontWeight),Y(e,"fontSize")&&(r.fontSize=e.fontSize),Y(e,"fontFamily")&&(r.fontFamily=e.fontFamily),Y(e,"align")&&(r.textAlign=e.align),Y(e,"verticalAlign")&&(r.textVerticalAlign=e.verticalAlign),Y(e,"lineHeight")&&(r.textLineHeight=e.lineHeight),Y(e,"width")&&(r.textWidth=e.width),Y(e,"height")&&(r.textHeight=e.height),Y(e,"backgroundColor")&&(r.textBackgroundColor=e.backgroundColor),Y(e,"padding")&&(r.textPadding=e.padding),Y(e,"borderColor")&&(r.textBorderColor=e.borderColor),Y(e,"borderWidth")&&(r.textBorderWidth=e.borderWidth),Y(e,"borderRadius")&&(r.textBorderRadius=e.borderRadius),Y(e,"shadowColor")&&(r.textBoxShadowColor=e.shadowColor),Y(e,"shadowBlur")&&(r.textBoxShadowBlur=e.shadowBlur),Y(e,"shadowOffsetX")&&(r.textBoxShadowOffsetX=e.shadowOffsetX),Y(e,"shadowOffsetY")&&(r.textBoxShadowOffsetY=e.shadowOffsetY),Y(e,"textShadowColor")&&(r.textShadowColor=e.textShadowColor),Y(e,"textShadowBlur")&&(r.textShadowBlur=e.textShadowBlur),Y(e,"textShadowOffsetX")&&(r.textShadowOffsetX=e.textShadowOffsetX),Y(e,"textShadowOffsetY")&&(r.textShadowOffsetY=e.textShadowOffsetY))}var KD={position:["x","y"],scale:["scaleX","scaleY"],origin:["originX","originY"]},jS=yt(KD);Vr(zr,function(r,e){return r[e]=1,r},{});zr.join(", ");var Pf=["","style","shape","extra"],ao=bt();function my(r,e,t,a,i){var n=r+"Animation",o=uo(r,a,i)||{},s=ao(e).userDuring;return o.duration>0&&(o.during=s?U(E$,{el:e,userDuring:s}):null,o.setToFinal=!0,o.scope=r),B(o,t[n]),o}function Hu(r,e,t,a){a=a||{};var i=a.dataIndex,n=a.isInit,o=a.clearStyle,s=t.isAnimationEnabled(),l=ao(r),u=e.style;l.userDuring=e.during;var f={},h={};if(O$(r,e,h),ex("shape",e,h),ex("extra",e,h),!n&&s&&(k$(r,e,f),tx("shape",r,e,f),tx("extra",r,e,f),N$(r,e,u,f)),h.style=u,L$(r,h,o),P$(r,e),s)if(n){var v={};A(Pf,function(p){var d=p?e[p]:e;d&&d.enterFrom&&(p&&(v[p]=v[p]||{}),B(p?v[p]:v,d.enterFrom))});var c=my("enter",r,e,t,i);c.duration>0&&r.animateFrom(v,c)}else I$(r,e,i||0,t,f);QD(r,e),u?r.dirty():r.markRedraw()}function QD(r,e){for(var t=ao(r).leaveToProps,a=0;a0&&r.animateFrom(i,n)}}function P$(r,e){Y(e,"silent")&&(r.silent=e.silent),Y(e,"ignore")&&(r.ignore=e.ignore),r instanceof nr&&Y(e,"invisible")&&(r.invisible=e.invisible),r instanceof dt&&Y(e,"autoBatch")&&(r.autoBatch=e.autoBatch)}var Mr={},R$={setTransform:function(r,e){return Mr.el[r]=e,this},getTransform:function(r){return Mr.el[r]},setShape:function(r,e){var t=Mr.el,a=t.shape||(t.shape={});return a[r]=e,t.dirtyShape&&t.dirtyShape(),this},getShape:function(r){var e=Mr.el.shape;if(e)return e[r]},setStyle:function(r,e){var t=Mr.el,a=t.style;return a&&(a[r]=e,t.dirtyStyle&&t.dirtyStyle()),this},getStyle:function(r){var e=Mr.el.style;if(e)return e[r]},setExtra:function(r,e){var t=Mr.el.extra||(Mr.el.extra={});return t[r]=e,this},getExtra:function(r){var e=Mr.el.extra;if(e)return e[r]}};function E$(){var r=this,e=r.el;if(!!e){var t=ao(e).userDuring,a=r.userDuring;if(t!==a){r.el=r.userDuring=null;return}Mr.el=e,a(R$)}}function tx(r,e,t,a){var i=t[r];if(!!i){var n=e[r],o;if(n){var s=t.transition,l=i.transition;if(l)if(!o&&(o=a[r]={}),Ki(l))B(o,n);else for(var u=Pt(l),f=0;f=0){!o&&(o=a[r]={});for(var c=yt(n),f=0;f=0)){var v=r.getAnimationStyleProps(),c=v?v.style:null;if(c){!n&&(n=a.style={});for(var p=yt(t),u=0;u=0?e.getStore().get(N,R):void 0}var k=e.get(E.name,R),V=E&&E.ordinalMeta;return V?V.categories[k]:k}function x(P,R){R==null&&(R=u);var E=e.getItemVisual(R,"style"),N=E&&E.fill,k=E&&E.opacity,V=m(R,Na).getItemStyle();N!=null&&(V.fill=N),k!=null&&(V.opacity=k);var F={inheritColor:$(N)?N:"#000"},W=_(R,Na),Z=Bt(W,null,F,!1,!0);Z.text=W.getShallow("show")?vt(r.getFormattedLabel(R,Na),to(e,R)):null;var tt=lf(W,F,!1);return C(P,V),V=QS(V,Z,tt),P&&T(V,P),V.legacy=!0,V}function b(P,R){R==null&&(R=u);var E=m(R,ia).getItemStyle(),N=_(R,ia),k=Bt(N,null,null,!0,!0);k.text=N.getShallow("show")?jr(r.getFormattedLabel(R,ia),r.getFormattedLabel(R,Na),to(e,R)):null;var V=lf(N,null,!0);return C(P,E),E=QS(E,k,V),P&&T(E,P),E.legacy=!0,E}function T(P,R){for(var E in R)Y(R,E)&&(P[E]=R[E])}function C(P,R){P&&(P.textFill&&(R.textFill=P.textFill),P.textPosition&&(R.textPosition=P.textPosition))}function M(P,R){if(R==null&&(R=u),Y(qS,P)){var E=e.getItemVisual(R,"style");return E?E[qS[P]]:null}if(Y(y$,P))return e.getItemVisual(R,P)}function D(P){if(n.type==="cartesian2d"){var R=n.getBaseAxis();return qN(Q({axis:R},P))}}function L(){return t.getCurrentSeriesIndices()}function I(P){return OT(P,t)}}function Z$(r){var e={};return A(r.dimensions,function(t){var a=r.getDimensionInfo(t);if(!a.isExtraCoord){var i=a.coordDim,n=e[i]=e[i]||[];n[a.coordDimIndex]=r.getDimensionIndex(t)}}),e}function Lc(r,e,t,a,i,n,o){if(!a){n.remove(e);return}var s=by(r,e,t,a,i,n);return s&&o.setItemGraphicEl(t,s),s&&Ut(s,a.focus,a.blurScope,a.emphasisDisabled),s}function by(r,e,t,a,i,n){var o=-1,s=e;e&&eL(e,a,i)&&(o=ht(n.childrenRef(),e),e=null);var l=!e,u=e;u?u.clearStates():(u=xy(a),s&&H$(s,u)),a.morph===!1?u.disableMorphing=!0:u.disableMorphing&&(u.disableMorphing=!1),Ye.normal.cfg=Ye.normal.conOpt=Ye.emphasis.cfg=Ye.emphasis.conOpt=Ye.blur.cfg=Ye.blur.conOpt=Ye.select.cfg=Ye.select.conOpt=null,Ye.isLegacy=!1,q$(u,t,a,i,l,Ye),X$(u,t,a,i,l),wy(r,u,t,a,Ye,i,l),Y(a,"info")&&(aa(u).info=a.info);for(var f=0;f=0?n.replaceAt(u,o):n.add(u),u}function eL(r,e,t){var a=aa(r),i=e.type,n=e.shape,o=e.style;return t.isUniversalTransitionEnabled()||i!=null&&i!==a.customGraphicType||i==="path"&&j$(n)&&rL(n)!==a.customPathData||i==="image"&&Y(o,"image")&&o.image!==a.customImagePath}function X$(r,e,t,a,i){var n=t.clipPath;if(n===!1)r&&r.getClipPath()&&r.removeClipPath();else if(n){var o=r.getClipPath();o&&eL(o,n,a)&&(o=null),o||(o=xy(n),r.setClipPath(o)),wy(null,o,e,n,null,a,i)}}function q$(r,e,t,a,i,n){if(!r.isGroup){ax(t,null,n),ax(t,ia,n);var o=n.normal.conOpt,s=n.emphasis.conOpt,l=n.blur.conOpt,u=n.select.conOpt;if(o!=null||s!=null||u!=null||l!=null){var f=r.getTextContent();if(o===!1)f&&r.removeTextContent();else{o=n.normal.conOpt=o||{type:"text"},f?f.clearStates():(f=xy(o),r.setTextContent(f)),wy(null,f,e,o,null,a,i);for(var h=o&&o.style,v=0;v=f;h--){var v=e.childAt(h);Mh(v,aa(e).option,i)}}}function Q$(r){new ua(r.oldChildren,r.newChildren,ix,ix,r).add(nx).update(nx).remove(J$).execute()}function ix(r,e){var t=r&&r.name;return t!=null?t:G$+e}function nx(r,e){var t=this.context,a=r!=null?t.newChildren[r]:null,i=e!=null?t.oldChildren[e]:null;by(t.api,i,t.dataIndex,a,t.seriesModel,t.group)}function J$(r){var e=this.context,t=e.oldChildren[r];Mh(t,aa(t).option,e.seriesModel)}function rL(r){return r&&(r.pathData||r.d)}function j$(r){return r&&(Y(r,"pathData")||Y(r,"d"))}function t6(r){r.registerChartView($$),r.registerSeriesModel(_$)}var ki=bt(),ox=j,Ic=U,e6=function(){function r(){this._dragging=!1,this.animationThreshold=15}return r.prototype.render=function(e,t,a,i){var n=t.get("value"),o=t.get("status");if(this._axisModel=e,this._axisPointerModel=t,this._api=a,!(!i&&this._lastValue===n&&this._lastStatus===o)){this._lastValue=n,this._lastStatus=o;var s=this._group,l=this._handle;if(!o||o==="hide"){s&&s.hide(),l&&l.hide();return}s&&s.show(),l&&l.show();var u={};this.makeElOption(u,n,e,t,a);var f=u.graphicKey;f!==this._lastGraphicKey&&this.clear(a),this._lastGraphicKey=f;var h=this._moveAnimation=this.determineAnimation(e,t);if(!s)s=this._group=new rt,this.createPointerEl(s,u,e,t),this.createLabelEl(s,u,e,t),a.getZr().add(s);else{var v=it(sx,t,h);this.updatePointerEl(s,u,v),this.updateLabelEl(s,u,v,t)}ux(s,t,!0),this._renderHandle(n)}},r.prototype.remove=function(e){this.clear(e)},r.prototype.dispose=function(e){this.clear(e)},r.prototype.determineAnimation=function(e,t){var a=t.get("animation"),i=e.axis,n=i.type==="category",o=t.get("snap");if(!o&&!n)return!1;if(a==="auto"||a==null){var s=this.animationThreshold;if(n&&i.getBandWidth()>s)return!0;if(o){var l=Kg(e).seriesDataCount,u=i.getExtent();return Math.abs(u[0]-u[1])/l>s}return!1}return a===!0},r.prototype.makeElOption=function(e,t,a,i,n){},r.prototype.createPointerEl=function(e,t,a,i){var n=t.pointer;if(n){var o=ki(e).pointerEl=new ll[n.type](ox(t.pointer));e.add(o)}},r.prototype.createLabelEl=function(e,t,a,i){if(t.label){var n=ki(e).labelEl=new Tt(ox(t.label));e.add(n),lx(n,i)}},r.prototype.updatePointerEl=function(e,t,a){var i=ki(e).pointerEl;i&&t.pointer&&(i.setStyle(t.pointer.style),a(i,{shape:t.pointer.shape}))},r.prototype.updateLabelEl=function(e,t,a,i){var n=ki(e).labelEl;n&&(n.setStyle(t.label.style),a(n,{x:t.label.x,y:t.label.y}),lx(n,i))},r.prototype._renderHandle=function(e){if(!(this._dragging||!this.updateHandleTransform)){var t=this._axisPointerModel,a=this._api.getZr(),i=this._handle,n=t.getModel("handle"),o=t.get("status");if(!n.get("show")||!o||o==="hide"){i&&a.remove(i),this._handle=null;return}var s;this._handle||(s=!0,i=this._handle=sl(n.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(u){na(u.event)},onmousedown:Ic(this._onHandleDragMove,this,0,0),drift:Ic(this._onHandleDragMove,this),ondragend:Ic(this._onHandleDragEnd,this)}),a.add(i)),ux(i,t,!1),i.setStyle(n.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var l=n.get("size");z(l)||(l=[l,l]),i.scaleX=l[0]/2,i.scaleY=l[1]/2,_o(this,"_doDispatchAxisPointer",n.get("throttle")||0,"fixRate"),this._moveHandleToValue(e,s)}},r.prototype._moveHandleToValue=function(e,t){sx(this._axisPointerModel,!t&&this._moveAnimation,this._handle,Pc(this.getHandleTransform(e,this._axisModel,this._axisPointerModel)))},r.prototype._onHandleDragMove=function(e,t){var a=this._handle;if(!!a){this._dragging=!0;var i=this.updateHandleTransform(Pc(a),[e,t],this._axisModel,this._axisPointerModel);this._payloadInfo=i,a.stopAnimation(),a.attr(Pc(i)),ki(a).lastProp=null,this._doDispatchAxisPointer()}},r.prototype._doDispatchAxisPointer=function(){var e=this._handle;if(!!e){var t=this._payloadInfo,a=this._axisModel;this._api.dispatchAction({type:"updateAxisPointer",x:t.cursorPoint[0],y:t.cursorPoint[1],tooltipOption:t.tooltipOption,axesInfo:[{axisDim:a.axis.dim,axisIndex:a.componentIndex}]})}},r.prototype._onHandleDragEnd=function(){this._dragging=!1;var e=this._handle;if(!!e){var t=this._axisPointerModel.get("value");this._moveHandleToValue(t),this._api.dispatchAction({type:"hideTip"})}},r.prototype.clear=function(e){this._lastValue=null,this._lastStatus=null;var t=e.getZr(),a=this._group,i=this._handle;t&&a&&(this._lastGraphicKey=null,a&&t.remove(a),i&&t.remove(i),this._group=null,this._handle=null,this._payloadInfo=null),zs(this,"_doDispatchAxisPointer")},r.prototype.doClear=function(){},r.prototype.buildLabel=function(e,t,a){return a=a||0,{x:e[a],y:e[1-a],width:t[a],height:t[1-a]}},r}();function sx(r,e,t,a){aL(ki(t).lastProp,a)||(ki(t).lastProp=a,e?wt(t,a,r):(t.stopAnimation(),t.attr(a)))}function aL(r,e){if(J(r)&&J(e)){var t=!0;return A(e,function(a,i){t=t&&aL(r[i],a)}),!!t}else return r===e}function lx(r,e){r[e.get(["label","show"])?"show":"hide"]()}function Pc(r){return{x:r.x||0,y:r.y||0,rotation:r.rotation||0}}function ux(r,e,t){var a=e.get("z"),i=e.get("zlevel");r&&r.traverse(function(n){n.type!=="group"&&(a!=null&&(n.z=a),i!=null&&(n.zlevel=i),n.silent=t)})}var Cy=e6;function Ay(r){var e=r.get("type"),t=r.getModel(e+"Style"),a;return e==="line"?(a=t.getLineStyle(),a.fill=null):e==="shadow"&&(a=t.getAreaStyle(),a.stroke=null),a}function iL(r,e,t,a,i){var n=t.get("value"),o=nL(n,e.axis,e.ecModel,t.get("seriesDataIndices"),{precision:t.get(["label","precision"]),formatter:t.get(["label","formatter"])}),s=t.getModel("label"),l=co(s.get("padding")||0),u=s.getFont(),f=rl(o,u),h=i.position,v=f.width+l[1]+l[3],c=f.height+l[0]+l[2],p=i.align;p==="right"&&(h[0]-=v),p==="center"&&(h[0]-=v/2);var d=i.verticalAlign;d==="bottom"&&(h[1]-=c),d==="middle"&&(h[1]-=c/2),r6(h,v,c,a);var g=s.get("backgroundColor");(!g||g==="auto")&&(g=e.get(["axisLine","lineStyle","color"])),r.label={x:h[0],y:h[1],style:Bt(s,{text:o,font:u,fill:s.getTextColor(),padding:l,backgroundColor:g}),z2:10}}function r6(r,e,t,a){var i=a.getWidth(),n=a.getHeight();r[0]=Math.min(r[0]+e,i)-e,r[1]=Math.min(r[1]+t,n)-t,r[0]=Math.max(r[0],0),r[1]=Math.max(r[1],0)}function nL(r,e,t,a,i){r=e.scale.parse(r);var n=e.scale.getLabel({value:r},{precision:i.precision}),o=i.formatter;if(o){var s={value:Fg(e,{value:r}),axisDimension:e.dim,axisIndex:e.index,seriesData:[]};A(a,function(l){var u=t.getSeriesByIndex(l.seriesIndex),f=l.dataIndexInside,h=u&&u.getDataParams(f);h&&s.seriesData.push(h)}),$(o)?n=o.replace("{value}",n):K(o)&&(n=o(s))}return n}function My(r,e,t){var a=ir();return on(a,a,t.rotation),Br(a,a,t.position),yr([r.dataToCoord(e),(t.labelOffset||0)+(t.labelDirection||1)*(t.labelMargin||0)],a)}function oL(r,e,t,a,i,n){var o=fa.innerTextLayout(t.rotation,0,t.labelDirection);t.labelMargin=i.get(["label","margin"]),iL(e,a,i,n,{position:My(a.axis,r,t),align:o.textAlign,verticalAlign:o.textVerticalAlign})}function Dy(r,e,t){return t=t||0,{x1:r[t],y1:r[1-t],x2:e[t],y2:e[1-t]}}function sL(r,e,t){return t=t||0,{x:r[t],y:r[1-t],width:e[t],height:e[1-t]}}function fx(r,e,t,a,i,n){return{cx:r,cy:e,r0:t,r:a,startAngle:i,endAngle:n,clockwise:!0}}var a6=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.makeElOption=function(t,a,i,n,o){var s=i.axis,l=s.grid,u=n.get("type"),f=hx(l,s).getOtherAxis(s).getGlobalExtent(),h=s.toGlobalCoord(s.dataToCoord(a,!0));if(u&&u!=="none"){var v=Ay(n),c=i6[u](s,h,f);c.style=v,t.graphicKey=c.type,t.pointer=c}var p=ad(l.model,i);oL(a,t,p,i,n,o)},e.prototype.getHandleTransform=function(t,a,i){var n=ad(a.axis.grid.model,a,{labelInside:!1});n.labelMargin=i.get(["handle","margin"]);var o=My(a.axis,t,n);return{x:o[0],y:o[1],rotation:n.rotation+(n.labelDirection<0?Math.PI:0)}},e.prototype.updateHandleTransform=function(t,a,i,n){var o=i.axis,s=o.grid,l=o.getGlobalExtent(!0),u=hx(s,o).getOtherAxis(o).getGlobalExtent(),f=o.dim==="x"?0:1,h=[t.x,t.y];h[f]+=a[f],h[f]=Math.min(l[1],h[f]),h[f]=Math.max(l[0],h[f]);var v=(u[1]+u[0])/2,c=[v,v];c[f]=h[f];var p=[{verticalAlign:"middle"},{align:"center"}];return{x:h[0],y:h[1],rotation:t.rotation,cursorPoint:c,tooltipOption:p[f]}},e}(Cy);function hx(r,e){var t={};return t[e.dim+"AxisIndex"]=e.index,r.getCartesian(t)}var i6={line:function(r,e,t){var a=Dy([e,t[0]],[e,t[1]],vx(r));return{type:"Line",subPixelOptimize:!0,shape:a}},shadow:function(r,e,t){var a=Math.max(1,r.getBandWidth()),i=t[1]-t[0];return{type:"Rect",shape:sL([e-a/2,t[0]],[a,i],vx(r))}}};function vx(r){return r.dim==="x"?0:1}var n6=a6,o6=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="axisPointer",e.defaultOption={show:"auto",z:50,type:"line",snap:!1,triggerTooltip:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:"#B9BEC9",width:1,type:"dashed"},shadowStyle:{color:"rgba(210,219,238,0.2)"},label:{show:!0,formatter:null,precision:"auto",margin:3,color:"#fff",padding:[5,7,5,7],backgroundColor:"auto",borderColor:null,borderWidth:0,borderRadius:3},handle:{show:!1,icon:"M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z",size:45,margin:50,color:"#333",shadowBlur:3,shadowColor:"#aaa",shadowOffsetX:0,shadowOffsetY:2,throttle:40}},e}(St),s6=o6,Jr=bt(),l6=A;function lL(r,e,t){if(!Ct.node){var a=e.getZr();Jr(a).records||(Jr(a).records={}),u6(a,e);var i=Jr(a).records[r]||(Jr(a).records[r]={});i.handler=t}}function u6(r,e){if(Jr(r).initialized)return;Jr(r).initialized=!0,t("click",it(cx,"click")),t("mousemove",it(cx,"mousemove")),t("globalout",h6);function t(a,i){r.on(a,function(n){var o=v6(e);l6(Jr(r).records,function(s){s&&i(s,n,o.dispatchAction)}),f6(o.pendings,e)})}}function f6(r,e){var t=r.showTip.length,a=r.hideTip.length,i;t?i=r.showTip[t-1]:a&&(i=r.hideTip[a-1]),i&&(i.dispatchAction=null,e.dispatchAction(i))}function h6(r,e,t){r.handler("leave",null,t)}function cx(r,e,t,a){e.handler(r,t,a)}function v6(r){var e={showTip:[],hideTip:[]},t=function(a){var i=e[a.type];i?i.push(a):(a.dispatchAction=t,r.dispatchAction(a))};return{dispatchAction:t,pendings:e}}function wd(r,e){if(!Ct.node){var t=e.getZr(),a=(Jr(t).records||{})[r];a&&(Jr(t).records[r]=null)}}var c6=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){var n=a.getComponent("tooltip"),o=t.get("triggerOn")||n&&n.get("triggerOn")||"mousemove|click";lL("axisPointer",i,function(s,l,u){o!=="none"&&(s==="leave"||o.indexOf(s)>=0)&&u({type:"updateAxisPointer",currTrigger:s,x:l&&l.offsetX,y:l&&l.offsetY})})},e.prototype.remove=function(t,a){wd("axisPointer",a)},e.prototype.dispose=function(t,a){wd("axisPointer",a)},e.type="axisPointer",e}(Ht),p6=c6;function uL(r,e){var t=[],a=r.seriesIndex,i;if(a==null||!(i=e.getSeriesByIndex(a)))return{point:[]};var n=i.getData(),o=Ji(n,r);if(o==null||o<0||z(o))return{point:[]};var s=n.getItemGraphicEl(o),l=i.coordinateSystem;if(i.getTooltipPosition)t=i.getTooltipPosition(o)||[];else if(l&&l.dataToPoint)if(r.isStacked){var u=l.getBaseAxis(),f=l.getOtherAxis(u),h=f.dim,v=u.dim,c=h==="x"||h==="radius"?1:0,p=n.mapDimension(v),d=[];d[c]=n.get(p,o),d[1-c]=n.get(n.getCalculationInfo("stackResultDimension"),o),t=l.dataToPoint(d)||[]}else t=l.dataToPoint(n.getValues(G(l.dimensions,function(y){return n.mapDimension(y)}),o))||[];else if(s){var g=s.getBoundingRect().clone();g.applyTransform(s.transform),t=[g.x+g.width/2,g.y+g.height/2]}return{point:t,el:s}}var px=bt();function d6(r,e,t){var a=r.currTrigger,i=[r.x,r.y],n=r,o=r.dispatchAction||U(t.dispatchAction,t),s=e.getComponent("axisPointer").coordSysAxesInfo;if(!!s){Wu(i)&&(i=uL({seriesIndex:n.seriesIndex,dataIndex:n.dataIndex},e).point);var l=Wu(i),u=n.axesInfo,f=s.axesInfo,h=a==="leave"||Wu(i),v={},c={},p={list:[],map:{}},d={showPointer:it(y6,c),showTooltip:it(m6,p)};A(s.coordSysMap,function(y,m){var _=l||y.containPoint(i);A(s.coordSysAxesInfo[m],function(S,w){var x=S.axis,b=w6(u,S);if(!h&&_&&(!u||b)){var T=b&&b.value;T==null&&!l&&(T=x.pointToData(i)),T!=null&&dx(S,T,d,!1,v)}})});var g={};return A(f,function(y,m){var _=y.linkGroup;_&&!c[m]&&A(_.axesInfo,function(S,w){var x=c[w];if(S!==y&&x){var b=x.value;_.mapper&&(b=y.axis.scale.parse(_.mapper(b,gx(S),gx(y)))),g[y.key]=b}})}),A(g,function(y,m){dx(f[m],y,d,!0,v)}),_6(c,f,v),S6(p,i,r,o),x6(f,o,t),v}}function dx(r,e,t,a,i){var n=r.axis;if(!(n.scale.isBlank()||!n.containData(e))){if(!r.involveSeries){t.showPointer(r,e);return}var o=g6(e,r),s=o.payloadBatch,l=o.snapToValue;s[0]&&i.seriesIndex==null&&B(i,s[0]),!a&&r.snap&&n.containData(l)&&l!=null&&(e=l),t.showPointer(r,e,s),t.showTooltip(r,o,l)}}function g6(r,e){var t=e.axis,a=t.dim,i=r,n=[],o=Number.MAX_VALUE,s=-1;return A(e.seriesModels,function(l,u){var f=l.getData().mapDimensionsAll(a),h,v;if(l.getAxisTooltipData){var c=l.getAxisTooltipData(f,r,t);v=c.dataIndices,h=c.nestestValue}else{if(v=l.getData().indicesOfNearest(f[0],r,t.type==="category"?.5:null),!v.length)return;h=l.getData().get(f[0],v[0])}if(!(h==null||!isFinite(h))){var p=r-h,d=Math.abs(p);d<=o&&((d=0&&s<0)&&(o=d,s=p,i=h,n.length=0),A(v,function(g){n.push({seriesIndex:l.seriesIndex,dataIndexInside:g,dataIndex:l.getData().getRawIndex(g)})}))}}),{payloadBatch:n,snapToValue:i}}function y6(r,e,t,a){r[e.key]={value:t,payloadBatch:a}}function m6(r,e,t,a){var i=t.payloadBatch,n=e.axis,o=n.model,s=e.axisPointerModel;if(!(!e.triggerTooltip||!i.length)){var l=e.coordSys.model,u=Us(l),f=r.map[u];f||(f=r.map[u]={coordSysId:l.id,coordSysIndex:l.componentIndex,coordSysType:l.type,coordSysMainType:l.mainType,dataByAxis:[]},r.list.push(f)),f.dataByAxis.push({axisDim:n.dim,axisIndex:o.componentIndex,axisType:o.type,axisId:o.id,value:a,valueLabelOpt:{precision:s.get(["label","precision"]),formatter:s.get(["label","formatter"])},seriesDataIndices:i.slice()})}}function _6(r,e,t){var a=t.axesInfo=[];A(e,function(i,n){var o=i.axisPointerModel.option,s=r[n];s?(!i.useHandle&&(o.status="show"),o.value=s.value,o.seriesDataIndices=(s.payloadBatch||[]).slice()):!i.useHandle&&(o.status="hide"),o.status==="show"&&a.push({axisDim:i.axis.dim,axisIndex:i.axis.model.componentIndex,value:o.value})})}function S6(r,e,t,a){if(Wu(e)||!r.list.length){a({type:"hideTip"});return}var i=((r.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};a({type:"showTip",escapeConnect:!0,x:e[0],y:e[1],tooltipOption:t.tooltipOption,position:t.position,dataIndexInside:i.dataIndexInside,dataIndex:i.dataIndex,seriesIndex:i.seriesIndex,dataByCoordSys:r.list})}function x6(r,e,t){var a=t.getZr(),i="axisPointerLastHighlights",n=px(a)[i]||{},o=px(a)[i]={};A(r,function(u,f){var h=u.axisPointerModel.option;h.status==="show"&&A(h.seriesDataIndices,function(v){var c=v.seriesIndex+" | "+v.dataIndex;o[c]=v})});var s=[],l=[];A(n,function(u,f){!o[f]&&l.push(u)}),A(o,function(u,f){!n[f]&&s.push(u)}),l.length&&t.dispatchAction({type:"downplay",escapeConnect:!0,notBlur:!0,batch:l}),s.length&&t.dispatchAction({type:"highlight",escapeConnect:!0,notBlur:!0,batch:s})}function w6(r,e){for(var t=0;t<(r||[]).length;t++){var a=r[t];if(e.axis.dim===a.axisDim&&e.axis.model.componentIndex===a.axisIndex)return a}}function gx(r){var e=r.axis.model,t={},a=t.axisDim=r.axis.dim;return t.axisIndex=t[a+"AxisIndex"]=e.componentIndex,t.axisName=t[a+"AxisName"]=e.name,t.axisId=t[a+"AxisId"]=e.id,t}function Wu(r){return!r||r[0]==null||isNaN(r[0])||r[1]==null||isNaN(r[1])}function xl(r){fn.registerAxisPointerClass("CartesianAxisPointer",n6),r.registerComponentModel(s6),r.registerComponentView(p6),r.registerPreprocessor(function(e){if(e){(!e.axisPointer||e.axisPointer.length===0)&&(e.axisPointer={});var t=e.axisPointer.link;t&&!z(t)&&(e.axisPointer.link=[t])}}),r.registerProcessor(r.PRIORITY.PROCESSOR.STATISTIC,function(e,t){e.getComponent("axisPointer").coordSysAxesInfo=f5(e,t)}),r.registerAction({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},d6)}function b6(r){ct(kM),ct(xl)}var T6=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.makeElOption=function(t,a,i,n,o){var s=i.axis;s.dim==="angle"&&(this.animationThreshold=Math.PI/18);var l=s.polar,u=l.getOtherAxis(s),f=u.getExtent(),h=s.dataToCoord(a),v=n.get("type");if(v&&v!=="none"){var c=Ay(n),p=A6[v](s,l,h,f);p.style=c,t.graphicKey=p.type,t.pointer=p}var d=n.get(["label","margin"]),g=C6(a,i,n,l,d);iL(t,i,n,o,g)},e}(Cy);function C6(r,e,t,a,i){var n=e.axis,o=n.dataToCoord(r),s=a.getAngleAxis().getExtent()[0];s=s/180*Math.PI;var l=a.getRadiusAxis().getExtent(),u,f,h;if(n.dim==="radius"){var v=ir();on(v,v,s),Br(v,v,[a.cx,a.cy]),u=yr([o,-i],v);var c=e.getModel("axisLabel").get("rotate")||0,p=fa.innerTextLayout(s,c*Math.PI/180,-1);f=p.textAlign,h=p.textVerticalAlign}else{var d=l[1];u=a.coordToPoint([d+i,o]);var g=a.cx,y=a.cy;f=Math.abs(u[0]-g)/d<.3?"center":u[0]>g?"left":"right",h=Math.abs(u[1]-y)/d<.3?"middle":u[1]>y?"top":"bottom"}return{position:u,align:f,verticalAlign:h}}var A6={line:function(r,e,t,a){return r.dim==="angle"?{type:"Line",shape:Dy(e.coordToPoint([a[0],t]),e.coordToPoint([a[1],t]))}:{type:"Circle",shape:{cx:e.cx,cy:e.cy,r:t}}},shadow:function(r,e,t,a){var i=Math.max(1,r.getBandWidth()),n=Math.PI/180;return r.dim==="angle"?{type:"Sector",shape:fx(e.cx,e.cy,a[0],a[1],(-t-i/2)*n,(-t+i/2)*n)}:{type:"Sector",shape:fx(e.cx,e.cy,t-i/2,t+i/2,0,Math.PI*2)}}},M6=T6,D6=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.findAxisModel=function(t){var a,i=this.ecModel;return i.eachComponent(t,function(n){n.getCoordSysModel()===this&&(a=n)},this),a},e.type="polar",e.dependencies=["radiusAxis","angleAxis"],e.defaultOption={z:0,center:["50%","50%"],radius:"80%"},e}(St),L6=D6,Ly=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.getCoordSysModel=function(){return this.getReferringComponents("polar",Xt).models[0]},e.type="polarAxis",e}(St);Qt(Ly,cl);var I6=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="angleAxis",e}(Ly),P6=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="radiusAxis",e}(Ly),Iy=function(r){O(e,r);function e(t,a){return r.call(this,"radius",t,a)||this}return e.prototype.pointToData=function(t,a){return this.polar.pointToData(t,a)[this.dim==="radius"?0:1]},e}(xr);Iy.prototype.dataToRadius=xr.prototype.dataToCoord;Iy.prototype.radiusToData=xr.prototype.coordToData;var R6=Iy,E6=bt(),Py=function(r){O(e,r);function e(t,a){return r.call(this,"angle",t,a||[0,360])||this}return e.prototype.pointToData=function(t,a){return this.polar.pointToData(t,a)[this.dim==="radius"?0:1]},e.prototype.calculateCategoryInterval=function(){var t=this,a=t.getLabelModel(),i=t.scale,n=i.getExtent(),o=i.count();if(n[1]-n[0]<1)return 0;var s=n[0],l=t.dataToCoord(s+1)-t.dataToCoord(s),u=Math.abs(l),f=rl(s==null?"":s+"",a.getFont(),"center","top"),h=Math.max(f.height,7),v=h/u;isNaN(v)&&(v=1/0);var c=Math.max(0,Math.floor(v)),p=E6(t.model),d=p.lastAutoInterval,g=p.lastTickCount;return d!=null&&g!=null&&Math.abs(d-c)<=1&&Math.abs(g-o)<=1&&d>c?c=d:(p.lastTickCount=o,p.lastAutoInterval=c),c},e}(xr);Py.prototype.dataToAngle=xr.prototype.dataToCoord;Py.prototype.angleToData=xr.prototype.coordToData;var k6=Py,fL=["radius","angle"],O6=function(){function r(e){this.dimensions=fL,this.type="polar",this.cx=0,this.cy=0,this._radiusAxis=new R6,this._angleAxis=new k6,this.axisPointerEnabled=!0,this.name=e||"",this._radiusAxis.polar=this._angleAxis.polar=this}return r.prototype.containPoint=function(e){var t=this.pointToCoord(e);return this._radiusAxis.contain(t[0])&&this._angleAxis.contain(t[1])},r.prototype.containData=function(e){return this._radiusAxis.containData(e[0])&&this._angleAxis.containData(e[1])},r.prototype.getAxis=function(e){var t="_"+e+"Axis";return this[t]},r.prototype.getAxes=function(){return[this._radiusAxis,this._angleAxis]},r.prototype.getAxesByScale=function(e){var t=[],a=this._angleAxis,i=this._radiusAxis;return a.scale.type===e&&t.push(a),i.scale.type===e&&t.push(i),t},r.prototype.getAngleAxis=function(){return this._angleAxis},r.prototype.getRadiusAxis=function(){return this._radiusAxis},r.prototype.getOtherAxis=function(e){var t=this._angleAxis;return e===t?this._radiusAxis:t},r.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAngleAxis()},r.prototype.getTooltipAxes=function(e){var t=e!=null&&e!=="auto"?this.getAxis(e):this.getBaseAxis();return{baseAxes:[t],otherAxes:[this.getOtherAxis(t)]}},r.prototype.dataToPoint=function(e,t){return this.coordToPoint([this._radiusAxis.dataToRadius(e[0],t),this._angleAxis.dataToAngle(e[1],t)])},r.prototype.pointToData=function(e,t){var a=this.pointToCoord(e);return[this._radiusAxis.radiusToData(a[0],t),this._angleAxis.angleToData(a[1],t)]},r.prototype.pointToCoord=function(e){var t=e[0]-this.cx,a=e[1]-this.cy,i=this.getAngleAxis(),n=i.getExtent(),o=Math.min(n[0],n[1]),s=Math.max(n[0],n[1]);i.inverse?o=s-360:s=o+360;var l=Math.sqrt(t*t+a*a);t/=l,a/=l;for(var u=Math.atan2(-a,t)/Math.PI*180,f=us;)u+=f*360;return[l,u]},r.prototype.coordToPoint=function(e){var t=e[0],a=e[1]/180*Math.PI,i=Math.cos(a)*t+this.cx,n=-Math.sin(a)*t+this.cy;return[i,n]},r.prototype.getArea=function(){var e=this.getAngleAxis(),t=this.getRadiusAxis(),a=t.getExtent().slice();a[0]>a[1]&&a.reverse();var i=e.getExtent(),n=Math.PI/180;return{cx:this.cx,cy:this.cy,r0:a[0],r:a[1],startAngle:-i[0]*n,endAngle:-i[1]*n,clockwise:e.inverse,contain:function(o,s){var l=o-this.cx,u=s-this.cy,f=l*l+u*u-1e-4,h=this.r,v=this.r0;return f<=h*h&&f>=v*v}}},r.prototype.convertToPixel=function(e,t,a){var i=yx(t);return i===this?this.dataToPoint(a):null},r.prototype.convertFromPixel=function(e,t,a){var i=yx(t);return i===this?this.pointToData(a):null},r}();function yx(r){var e=r.seriesModel,t=r.polarModel;return t&&t.coordinateSystem||e&&e.coordinateSystem}var N6=O6;function V6(r,e,t){var a=e.get("center"),i=t.getWidth(),n=t.getHeight();r.cx=H(a[0],i),r.cy=H(a[1],n);var o=r.getRadiusAxis(),s=Math.min(i,n)/2,l=e.get("radius");l==null?l=[0,"100%"]:z(l)||(l=[0,l]);var u=[H(l[0],s),H(l[1],s)];o.inverse?o.setExtent(u[1],u[0]):o.setExtent(u[0],u[1])}function B6(r,e){var t=this,a=t.getAngleAxis(),i=t.getRadiusAxis();if(a.scale.setExtent(1/0,-1/0),i.scale.setExtent(1/0,-1/0),r.eachSeries(function(s){if(s.coordinateSystem===t){var l=s.getData();A(_f(l,"radius"),function(u){i.scale.unionExtentFromData(l,u)}),A(_f(l,"angle"),function(u){a.scale.unionExtentFromData(l,u)})}}),jn(a.scale,a.model),jn(i.scale,i.model),a.type==="category"&&!a.onBand){var n=a.getExtent(),o=360/a.scale.count();a.inverse?n[1]+=o:n[1]-=o,a.setExtent(n[0],n[1])}}function z6(r){return r.mainType==="angleAxis"}function mx(r,e){if(r.type=e.get("type"),r.scale=_h(e),r.onBand=e.get("boundaryGap")&&r.type==="category",r.inverse=e.get("inverse"),z6(e)){r.inverse=r.inverse!==e.get("clockwise");var t=e.get("startAngle");r.setExtent(t,t+(r.inverse?-360:360))}e.axis=r,r.model=e}var G6={dimensions:fL,create:function(r,e){var t=[];return r.eachComponent("polar",function(a,i){var n=new N6(i+"");n.update=B6;var o=n.getRadiusAxis(),s=n.getAngleAxis(),l=a.findAxisModel("radiusAxis"),u=a.findAxisModel("angleAxis");mx(o,l),mx(s,u),V6(n,a,e),t.push(n),a.coordinateSystem=n,n.model=a}),r.eachSeries(function(a){if(a.get("coordinateSystem")==="polar"){var i=a.getReferringComponents("polar",Xt).models[0];a.coordinateSystem=i.coordinateSystem}}),t}},F6=G6,H6=["axisLine","axisLabel","axisTick","minorTick","splitLine","minorSplitLine","splitArea"];function yu(r,e,t){e[1]>e[0]&&(e=e.slice().reverse());var a=r.coordToPoint([e[0],t]),i=r.coordToPoint([e[1],t]);return{x1:a[0],y1:a[1],x2:i[0],y2:i[1]}}function mu(r){var e=r.getRadiusAxis();return e.inverse?0:1}function _x(r){var e=r[0],t=r[r.length-1];e&&t&&Math.abs(Math.abs(e.coord-t.coord)-360)<1e-4&&r.pop()}var W6=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.axisPointerClass="PolarAxisPointer",t}return e.prototype.render=function(t,a){if(this.group.removeAll(),!!t.get("show")){var i=t.axis,n=i.polar,o=n.getRadiusAxis().getExtent(),s=i.getTicksCoords(),l=i.getMinorTicksCoords(),u=G(i.getViewLabels(),function(f){f=j(f);var h=i.scale,v=h.type==="ordinal"?h.getRawOrdinalNumber(f.tickValue):f.tickValue;return f.coord=i.dataToCoord(v),f});_x(u),_x(s),A(H6,function(f){t.get([f,"show"])&&(!i.scale.isBlank()||f==="axisLine")&&$6[f](this.group,t,n,s,l,o,u)},this)}},e.type="angleAxis",e}(fn),$6={axisLine:function(r,e,t,a,i,n){var o=e.getModel(["axisLine","lineStyle"]),s=mu(t),l=s?0:1,u;n[l]===0?u=new Hr({shape:{cx:t.cx,cy:t.cy,r:n[s]},style:o.getLineStyle(),z2:1,silent:!0}):u=new eh({shape:{cx:t.cx,cy:t.cy,r:n[s],r0:n[l]},style:o.getLineStyle(),z2:1,silent:!0}),u.style.fill=null,r.add(u)},axisTick:function(r,e,t,a,i,n){var o=e.getModel("axisTick"),s=(o.get("inside")?-1:1)*o.get("length"),l=n[mu(t)],u=G(a,function(f){return new ne({shape:yu(t,[l,l+s],f.coord)})});r.add(tr(u,{style:Q(o.getModel("lineStyle").getLineStyle(),{stroke:e.get(["axisLine","lineStyle","color"])})}))},minorTick:function(r,e,t,a,i,n){if(!!i.length){for(var o=e.getModel("axisTick"),s=e.getModel("minorTick"),l=(o.get("inside")?-1:1)*s.get("length"),u=n[mu(t)],f=[],h=0;hy?"left":"right",S=Math.abs(g[1]-m)/d<.3?"middle":g[1]>m?"top":"bottom";if(s&&s[p]){var w=s[p];J(w)&&w.textStyle&&(c=new Ot(w.textStyle,l,l.ecModel))}var x=new Tt({silent:fa.isLabelSilent(e),style:Bt(c,{x:g[0],y:g[1],fill:c.getTextColor()||e.get(["axisLine","lineStyle","color"]),text:h.formattedLabel,align:_,verticalAlign:S})});if(r.add(x),f){var b=fa.makeAxisEventDataBase(e);b.targetType="axisLabel",b.value=h.rawLabel,at(x).eventData=b}},this)},splitLine:function(r,e,t,a,i,n){var o=e.getModel("splitLine"),s=o.getModel("lineStyle"),l=s.get("color"),u=0;l=l instanceof Array?l:[l];for(var f=[],h=0;h=0?"p":"n",I=b;w&&(a[f][D]||(a[f][D]={p:b,n:b}),I=a[f][D][L]);var P=void 0,R=void 0,E=void 0,N=void 0;if(p.dim==="radius"){var k=p.dataToCoord(M)-b,V=l.dataToCoord(D);Math.abs(k)=N})}}})}function j6(r){var e={};A(r,function(a,i){var n=a.getData(),o=a.coordinateSystem,s=o.getBaseAxis(),l=vL(o,s),u=s.getExtent(),f=s.type==="category"?s.getBandWidth():Math.abs(u[1]-u[0])/n.count(),h=e[l]||{bandWidth:f,remainedWidth:f,autoWidthCount:0,categoryGap:"20%",gap:"30%",stacks:{}},v=h.stacks;e[l]=h;var c=hL(a);v[c]||h.autoWidthCount++,v[c]=v[c]||{width:0,maxWidth:0};var p=H(a.get("barWidth"),f),d=H(a.get("barMaxWidth"),f),g=a.get("barGap"),y=a.get("barCategoryGap");p&&!v[c].width&&(p=Math.min(h.remainedWidth,p),v[c].width=p,h.remainedWidth-=p),d&&(v[c].maxWidth=d),g!=null&&(h.gap=g),y!=null&&(h.categoryGap=y)});var t={};return A(e,function(a,i){t[i]={};var n=a.stacks,o=a.bandWidth,s=H(a.categoryGap,o),l=H(a.gap,1),u=a.remainedWidth,f=a.autoWidthCount,h=(u-s)/(f+(f-1)*l);h=Math.max(h,0),A(n,function(d,g){var y=d.maxWidth;y&&y=t.y&&e[1]<=t.y+t.height:a.contain(a.toLocalCoord(e[1]))&&e[0]>=t.y&&e[0]<=t.y+t.height},r.prototype.pointToData=function(e){var t=this.getAxis();return[t.coordToData(t.toLocalCoord(e[t.orient==="horizontal"?0:1]))]},r.prototype.dataToPoint=function(e){var t=this.getAxis(),a=this.getRect(),i=[],n=t.orient==="horizontal"?0:1;return e instanceof Array&&(e=e[0]),i[n]=t.toGlobalCoord(t.dataToCoord(+e)),i[1-n]=n===0?a.y+a.height/2:a.x+a.width/2,i},r.prototype.convertToPixel=function(e,t,a){var i=Sx(t);return i===this?this.dataToPoint(a):null},r.prototype.convertFromPixel=function(e,t,a){var i=Sx(t);return i===this?this.pointToData(a):null},r}();function Sx(r){var e=r.seriesModel,t=r.singleAxisModel;return t&&t.coordinateSystem||e&&e.coordinateSystem}function vU(r,e){var t=[];return r.eachComponent("singleAxis",function(a,i){var n=new hU(a,r,e);n.name="single_"+i,n.resize(a,e),a.coordinateSystem=n,t.push(n)}),r.eachSeries(function(a){if(a.get("coordinateSystem")==="singleAxis"){var i=a.getReferringComponents("singleAxis",Xt).models[0];a.coordinateSystem=i&&i.coordinateSystem}}),t}var cU={create:vU,dimensions:pL},pU=cU,xx=["x","y"],dU=["width","height"],gU=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.makeElOption=function(t,a,i,n,o){var s=i.axis,l=s.coordinateSystem,u=Ec(l,1-kf(s)),f=l.dataToPoint(a)[0],h=n.get("type");if(h&&h!=="none"){var v=Ay(n),c=yU[h](s,f,u);c.style=v,t.graphicKey=c.type,t.pointer=c}var p=bd(i);oL(a,t,p,i,n,o)},e.prototype.getHandleTransform=function(t,a,i){var n=bd(a,{labelInside:!1});n.labelMargin=i.get(["handle","margin"]);var o=My(a.axis,t,n);return{x:o[0],y:o[1],rotation:n.rotation+(n.labelDirection<0?Math.PI:0)}},e.prototype.updateHandleTransform=function(t,a,i,n){var o=i.axis,s=o.coordinateSystem,l=kf(o),u=Ec(s,l),f=[t.x,t.y];f[l]+=a[l],f[l]=Math.min(u[1],f[l]),f[l]=Math.max(u[0],f[l]);var h=Ec(s,1-l),v=(h[1]+h[0])/2,c=[v,v];return c[l]=f[l],{x:f[0],y:f[1],rotation:t.rotation,cursorPoint:c,tooltipOption:{verticalAlign:"middle"}}},e}(Cy),yU={line:function(r,e,t){var a=Dy([e,t[0]],[e,t[1]],kf(r));return{type:"Line",subPixelOptimize:!0,shape:a}},shadow:function(r,e,t){var a=r.getBandWidth(),i=t[1]-t[0];return{type:"Rect",shape:sL([e-a/2,t[0]],[a,i],kf(r))}}};function kf(r){return r.isHorizontal()?0:1}function Ec(r,e){var t=r.getRect();return[t[xx[e]],t[xx[e]]+t[dU[e]]]}var mU=gU,_U=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="single",e}(Ht);function SU(r){ct(xl),fn.registerAxisPointerClass("SingleAxisPointer",mU),r.registerComponentView(_U),r.registerComponentView(lU),r.registerComponentModel(Rc),eo(r,"single",Rc,Rc.defaultOption),r.registerCoordinateSystem("single",pU)}var xU=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,a,i){var n=po(t);r.prototype.init.apply(this,arguments),bx(t,n)},e.prototype.mergeOption=function(t){r.prototype.mergeOption.apply(this,arguments),bx(this.option,t)},e.prototype.getCellSize=function(){return this.option.cellSize},e.type="calendar",e.defaultOption={z:2,left:80,top:60,cellSize:20,orient:"horizontal",splitLine:{show:!0,lineStyle:{color:"#000",width:1,type:"solid"}},itemStyle:{color:"#fff",borderWidth:1,borderColor:"#ccc"},dayLabel:{show:!0,firstDay:0,position:"start",margin:"50%",color:"#000"},monthLabel:{show:!0,position:"start",margin:5,align:"center",formatter:null,color:"#000"},yearLabel:{show:!0,position:null,margin:30,formatter:null,color:"#ccc",fontFamily:"sans-serif",fontWeight:"bolder",fontSize:20}},e}(St);function bx(r,e){var t=r.cellSize,a;z(t)?a=t:a=r.cellSize=[t,t],a.length===1&&(a[1]=a[0]);var i=G([0,1],function(n){return LE(e,n)&&(a[n]="auto"),a[n]!=null&&a[n]!=="auto"});Ya(r,e,{type:"box",ignoreSize:i})}var wU=xU,bU=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){var n=this.group;n.removeAll();var o=t.coordinateSystem,s=o.getRangeInfo(),l=o.getOrient(),u=a.getLocaleModel();this._renderDayRect(t,s,n),this._renderLines(t,s,l,n),this._renderYearText(t,s,l,n),this._renderMonthText(t,u,l,n),this._renderWeekText(t,u,s,l,n)},e.prototype._renderDayRect=function(t,a,i){for(var n=t.coordinateSystem,o=t.getModel("itemStyle").getItemStyle(),s=n.getCellWidth(),l=n.getCellHeight(),u=a.start.time;u<=a.end.time;u=n.getNextNDay(u,1).time){var f=n.dataToRect([u],!1).tl,h=new _t({shape:{x:f[0],y:f[1],width:s,height:l},cursor:"default",style:o});i.add(h)}},e.prototype._renderLines=function(t,a,i,n){var o=this,s=t.coordinateSystem,l=t.getModel(["splitLine","lineStyle"]).getLineStyle(),u=t.get(["splitLine","show"]),f=l.lineWidth;this._tlpoints=[],this._blpoints=[],this._firstDayOfMonth=[],this._firstDayPoints=[];for(var h=a.start,v=0;h.time<=a.end.time;v++){p(h.formatedDate),v===0&&(h=s.getDateInfo(a.start.y+"-"+a.start.m));var c=h.date;c.setMonth(c.getMonth()+1),h=s.getDateInfo(c)}p(s.getNextNDay(a.end.time,1).formatedDate);function p(d){o._firstDayOfMonth.push(s.getDateInfo(d)),o._firstDayPoints.push(s.dataToRect([d],!1).tl);var g=o._getLinePointsOfOneWeek(t,d,i);o._tlpoints.push(g[0]),o._blpoints.push(g[g.length-1]),u&&o._drawSplitline(g,l,n)}u&&this._drawSplitline(o._getEdgesPoints(o._tlpoints,f,i),l,n),u&&this._drawSplitline(o._getEdgesPoints(o._blpoints,f,i),l,n)},e.prototype._getEdgesPoints=function(t,a,i){var n=[t[0].slice(),t[t.length-1].slice()],o=i==="horizontal"?0:1;return n[0][o]=n[0][o]-a/2,n[1][o]=n[1][o]+a/2,n},e.prototype._drawSplitline=function(t,a,i){var n=new ke({z2:20,shape:{points:t},style:a});i.add(n)},e.prototype._getLinePointsOfOneWeek=function(t,a,i){for(var n=t.coordinateSystem,o=n.getDateInfo(a),s=[],l=0;l<7;l++){var u=n.getNextNDay(o.time,l),f=n.dataToRect([u.time],!1);s[2*u.day]=f.tl,s[2*u.day+1]=f[i==="horizontal"?"bl":"tr"]}return s},e.prototype._formatterLabel=function(t,a){return $(t)&&t?AE(t,a):K(t)?t(a):a.nameMap},e.prototype._yearTextPositionControl=function(t,a,i,n,o){var s=a[0],l=a[1],u=["center","bottom"];n==="bottom"?(l+=o,u=["center","top"]):n==="left"?s-=o:n==="right"?(s+=o,u=["center","top"]):l-=o;var f=0;return(n==="left"||n==="right")&&(f=Math.PI/2),{rotation:f,x:s,y:l,style:{align:u[0],verticalAlign:u[1]}}},e.prototype._renderYearText=function(t,a,i,n){var o=t.getModel("yearLabel");if(!!o.get("show")){var s=o.get("margin"),l=o.get("position");l||(l=i!=="horizontal"?"top":"left");var u=[this._tlpoints[this._tlpoints.length-1],this._blpoints[0]],f=(u[0][0]+u[1][0])/2,h=(u[0][1]+u[1][1])/2,v=i==="horizontal"?0:1,c={top:[f,u[v][1]],bottom:[f,u[1-v][1]],left:[u[1-v][0],h],right:[u[v][0],h]},p=a.start.y;+a.end.y>+a.start.y&&(p=p+"-"+a.end.y);var d=o.get("formatter"),g={start:a.start.y,end:a.end.y,nameMap:p},y=this._formatterLabel(d,g),m=new Tt({z2:30,style:Bt(o,{text:y})});m.attr(this._yearTextPositionControl(m,c[l],i,l,s)),n.add(m)}},e.prototype._monthTextPositionControl=function(t,a,i,n,o){var s="left",l="top",u=t[0],f=t[1];return i==="horizontal"?(f=f+o,a&&(s="center"),n==="start"&&(l="bottom")):(u=u+o,a&&(l="middle"),n==="start"&&(s="right")),{x:u,y:f,align:s,verticalAlign:l}},e.prototype._renderMonthText=function(t,a,i,n){var o=t.getModel("monthLabel");if(!!o.get("show")){var s=o.get("nameMap"),l=o.get("margin"),u=o.get("position"),f=o.get("align"),h=[this._tlpoints,this._blpoints];(!s||$(s))&&(s&&(a=Ep(s)||a),s=a.get(["time","monthAbbr"])||[]);var v=u==="start"?0:1,c=i==="horizontal"?0:1;l=u==="start"?-l:l;for(var p=f==="center",d=0;d=i.start.time&&a.times.end.time&&t.reverse(),t},r.prototype._getRangeInfo=function(e){var t=[this.getDateInfo(e[0]),this.getDateInfo(e[1])],a;t[0].time>t[1].time&&(a=!0,t.reverse());var i=Math.floor(t[1].time/kc)-Math.floor(t[0].time/kc)+1,n=new Date(t[0].time),o=n.getDate(),s=t[1].date.getDate();n.setDate(o+i-1);var l=n.getDate();if(l!==s)for(var u=n.getTime()-t[1].time>0?1:-1;(l=n.getDate())!==s&&(n.getTime()-t[1].time)*u>0;)i-=u,n.setDate(l-u);var f=Math.floor((i+t[0].day+6)/7),h=a?-f+1:f-1;return a&&t.reverse(),{range:[t[0].formatedDate,t[1].formatedDate],start:t[0],end:t[1],allDay:i,weeks:f,nthWeek:h,fweek:t[0].day,lweek:t[1].day}},r.prototype._getDateByWeeksAndDay=function(e,t,a){var i=this._getRangeInfo(a);if(e>i.weeks||e===0&&ti.lweek)return null;var n=(e-1)*7-i.fweek+t,o=new Date(i.start.time);return o.setDate(+i.start.d+n),this.getDateInfo(o)},r.create=function(e,t){var a=[];return e.eachComponent("calendar",function(i){var n=new r(i);a.push(n),i.coordinateSystem=n}),e.eachSeries(function(i){i.get("coordinateSystem")==="calendar"&&(i.coordinateSystem=a[i.get("calendarIndex")||0])}),a},r.dimensions=["time","value"],r}();function Tx(r){var e=r.calendarModel,t=r.seriesModel,a=e?e.coordinateSystem:t?t.coordinateSystem:null;return a}var AU=CU;function MU(r){r.registerComponentModel(wU),r.registerComponentView(TU),r.registerCoordinateSystem("calendar",AU)}function DU(r,e){var t=r.existing;if(e.id=r.keyInfo.id,!e.type&&t&&(e.type=t.type),e.parentId==null){var a=e.parentOption;a?e.parentId=a.id:t&&(e.parentId=t.parentId)}e.parentOption=null}function Cx(r,e){var t;return A(e,function(a){r[a]!=null&&r[a]!=="auto"&&(t=!0)}),t}function LU(r,e,t){var a=B({},t),i=r[e],n=t.$action||"merge";n==="merge"?i?(st(i,a,!0),Ya(i,a,{ignoreSize:!0}),tC(t,i),_u(t,i),_u(t,i,"shape"),_u(t,i,"style"),_u(t,i,"extra"),t.clipPath=i.clipPath):r[e]=a:n==="replace"?r[e]=a:n==="remove"&&i&&(r[e]=null)}var dL=["transition","enterFrom","leaveTo"],IU=dL.concat(["enterAnimation","updateAnimation","leaveAnimation"]);function _u(r,e,t){if(t&&(!r[t]&&e[t]&&(r[t]={}),r=r[t],e=e[t]),!(!r||!e))for(var a=t?dL:IU,i=0;i=0;f--){var h=i[f],v=Jt(h.id,null),c=v!=null?o.get(v):null;if(!!c){var p=c.parent,y=Qe(p),m=p===n?{width:s,height:l}:{width:y.width,height:y.height},_={},S=hh(c,h,m,null,{hv:h.hv,boundingMode:h.bounding},_);if(!Qe(c).isNew&&S){for(var w=h.transition,x={},b=0;b=0)?x[T]=C:c[T]=C}wt(c,x,t,0)}else c.attr(_)}}},e.prototype._clear=function(){var t=this,a=this._elMap;a.each(function(i){$u(i,Qe(i).option,a,t._lastGraphicModel)}),this._elMap=q()},e.prototype.dispose=function(){this._clear()},e.type="graphic",e}(Ht);function Td(r){var e=Y(Ax,r)?Ax[r]:vg(r),t=new e({});return Qe(t).type=r,t}function Mx(r,e,t,a){var i=Td(t);return e.add(i),a.set(r,i),Qe(i).id=r,Qe(i).isNew=!0,i}function $u(r,e,t,a){var i=r&&r.parent;i&&(r.type==="group"&&r.traverse(function(n){$u(n,e,t,a)}),Mh(r,e,a),t.removeKey(Qe(r).id))}function Dx(r,e,t,a){r.isGroup||A([["cursor",nr.prototype.cursor],["zlevel",a||0],["z",t||0],["z2",0]],function(i){var n=i[0];Y(e,n)?r[n]=vt(e[n],i[1]):r[n]==null&&(r[n]=i[1])}),A(yt(e),function(i){if(i.indexOf("on")===0){var n=e[i];r[i]=K(n)?n:null}}),Y(e,"draggable")&&(r.draggable=e.draggable),e.name!=null&&(r.name=e.name),e.id!=null&&(r.id=e.id)}function kU(r){return r=B({},r),A(["id","parentId","$action","hv","bounding","textContent","clipPath"].concat(jT),function(e){delete r[e]}),r}function OU(r,e,t){var a=at(r).eventData;!r.silent&&!r.ignore&&!a&&(a=at(r).eventData={componentType:"graphic",componentIndex:e.componentIndex,name:r.name}),a&&(a.info=t.info)}function NU(r){r.registerComponentModel(RU),r.registerComponentView(EU),r.registerPreprocessor(function(e){var t=e.graphic;z(t)?!t[0]||!t[0].elements?e.graphic=[{elements:t}]:e.graphic=[e.graphic[0]]:t&&!t.elements&&(e.graphic=[{elements:[t]}])})}var Lx=["x","y","radius","angle","single"],VU=["cartesian2d","polar","singleAxis"];function BU(r){var e=r.get("coordinateSystem");return ht(VU,e)>=0}function Va(r){return r+"Axis"}function zU(r,e){var t=q(),a=[],i=q();r.eachComponent({mainType:"dataZoom",query:e},function(f){i.get(f.uid)||s(f)});var n;do n=!1,r.eachComponent("dataZoom",o);while(n);function o(f){!i.get(f.uid)&&l(f)&&(s(f),n=!0)}function s(f){i.set(f.uid,!0),a.push(f),u(f)}function l(f){var h=!1;return f.eachTargetAxis(function(v,c){var p=t.get(v);p&&p[c]&&(h=!0)}),h}function u(f){f.eachTargetAxis(function(h,v){(t.get(h)||t.set(h,[]))[v]=!0})}return a}function gL(r){var e=r.ecModel,t={infoList:[],infoMap:q()};return r.eachTargetAxis(function(a,i){var n=e.getComponent(Va(a),i);if(!!n){var o=n.getCoordSysModel();if(!!o){var s=o.uid,l=t.infoMap.get(s);l||(l={model:o,axisModels:[]},t.infoList.push(l),t.infoMap.set(s,l)),l.axisModels.push(n)}}}),t}var Oc=function(){function r(){this.indexList=[],this.indexMap=[]}return r.prototype.add=function(e){this.indexMap[e]||(this.indexList.push(e),this.indexMap[e]=!0)},r}(),GU=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._autoThrottle=!0,t._noTarget=!0,t._rangePropMode=["percent","percent"],t}return e.prototype.init=function(t,a,i){var n=Ix(t);this.settledOption=n,this.mergeDefaultAndTheme(t,i),this._doInit(n)},e.prototype.mergeOption=function(t){var a=Ix(t);st(this.option,t,!0),st(this.settledOption,a,!0),this._doInit(a)},e.prototype._doInit=function(t){var a=this.option;this._setDefaultThrottle(t),this._updateRangeUse(t);var i=this.settledOption;A([["start","startValue"],["end","endValue"]],function(n,o){this._rangePropMode[o]==="value"&&(a[n[0]]=i[n[0]]=null)},this),this._resetTarget()},e.prototype._resetTarget=function(){var t=this.get("orient",!0),a=this._targetAxisInfoMap=q(),i=this._fillSpecifiedTargetAxis(a);i?this._orient=t||this._makeAutoOrientByTargetAxis():(this._orient=t||"horizontal",this._fillAutoTargetAxisByOrient(a,this._orient)),this._noTarget=!0,a.each(function(n){n.indexList.length&&(this._noTarget=!1)},this)},e.prototype._fillSpecifiedTargetAxis=function(t){var a=!1;return A(Lx,function(i){var n=this.getReferringComponents(Va(i),rP);if(!!n.specified){a=!0;var o=new Oc;A(n.models,function(s){o.add(s.componentIndex)}),t.set(i,o)}},this),a},e.prototype._fillAutoTargetAxisByOrient=function(t,a){var i=this.ecModel,n=!0;if(n){var o=a==="vertical"?"y":"x",s=i.findComponents({mainType:o+"Axis"});l(s,o)}if(n){var s=i.findComponents({mainType:"singleAxis",filter:function(f){return f.get("orient",!0)===a}});l(s,"single")}function l(u,f){var h=u[0];if(!!h){var v=new Oc;if(v.add(h.componentIndex),t.set(f,v),n=!1,f==="x"||f==="y"){var c=h.getReferringComponents("grid",Xt).models[0];c&&A(u,function(p){h.componentIndex!==p.componentIndex&&c===p.getReferringComponents("grid",Xt).models[0]&&v.add(p.componentIndex)})}}}n&&A(Lx,function(u){if(!!n){var f=i.findComponents({mainType:Va(u),filter:function(v){return v.get("type",!0)==="category"}});if(f[0]){var h=new Oc;h.add(f[0].componentIndex),t.set(u,h),n=!1}}},this)},e.prototype._makeAutoOrientByTargetAxis=function(){var t;return this.eachTargetAxis(function(a){!t&&(t=a)},this),t==="y"?"vertical":"horizontal"},e.prototype._setDefaultThrottle=function(t){if(t.hasOwnProperty("throttle")&&(this._autoThrottle=!1),this._autoThrottle){var a=this.ecModel.option;this.option.throttle=a.animation&&a.animationDurationUpdate>0?100:20}},e.prototype._updateRangeUse=function(t){var a=this._rangePropMode,i=this.get("rangeMode");A([["start","startValue"],["end","endValue"]],function(n,o){var s=t[n[0]]!=null,l=t[n[1]]!=null;s&&!l?a[o]="percent":!s&&l?a[o]="value":i?a[o]=i[o]:s&&(a[o]="percent")})},e.prototype.noTarget=function(){return this._noTarget},e.prototype.getFirstTargetAxisModel=function(){var t;return this.eachTargetAxis(function(a,i){t==null&&(t=this.ecModel.getComponent(Va(a),i))},this),t},e.prototype.eachTargetAxis=function(t,a){this._targetAxisInfoMap.each(function(i,n){A(i.indexList,function(o){t.call(a,n,o)})})},e.prototype.getAxisProxy=function(t,a){var i=this.getAxisModel(t,a);if(i)return i.__dzAxisProxy},e.prototype.getAxisModel=function(t,a){var i=this._targetAxisInfoMap.get(t);if(i&&i.indexMap[a])return this.ecModel.getComponent(Va(t),a)},e.prototype.setRawRange=function(t){var a=this.option,i=this.settledOption;A([["start","startValue"],["end","endValue"]],function(n){(t[n[0]]!=null||t[n[1]]!=null)&&(a[n[0]]=i[n[0]]=t[n[0]],a[n[1]]=i[n[1]]=t[n[1]])},this),this._updateRangeUse(t)},e.prototype.setCalculatedRange=function(t){var a=this.option;A(["start","startValue","end","endValue"],function(i){a[i]=t[i]})},e.prototype.getPercentRange=function(){var t=this.findRepresentativeAxisProxy();if(t)return t.getDataPercentWindow()},e.prototype.getValueRange=function(t,a){if(t==null&&a==null){var i=this.findRepresentativeAxisProxy();if(i)return i.getDataValueWindow()}else return this.getAxisProxy(t,a).getDataValueWindow()},e.prototype.findRepresentativeAxisProxy=function(t){if(t)return t.__dzAxisProxy;for(var a,i=this._targetAxisInfoMap.keys(),n=0;no[1];if(_&&!S&&!w)return!0;_&&(g=!0),S&&(p=!0),w&&(d=!0)}return g&&p&&d})}else Nn(f,function(c){if(n==="empty")l.setData(u=u.map(c,function(d){return s(d)?d:NaN}));else{var p={};p[c]=o,u.selectRange(p)}});Nn(f,function(c){u.setApproximateExtent(o,c)})}});function s(l){return l>=o[0]&&l<=o[1]}},r.prototype._updateMinMaxSpan=function(){var e=this._minMaxSpan={},t=this._dataZoomModel,a=this._dataExtent;Nn(["min","max"],function(i){var n=t.get(i+"Span"),o=t.get(i+"ValueSpan");o!=null&&(o=this.getAxisModel().axis.scale.parse(o)),o!=null?n=Lt(a[0]+o,a,[0,100],!0):n!=null&&(o=Lt(n,[0,100],a,!0)-a[0]),e[i+"Span"]=n,e[i+"ValueSpan"]=o},this)},r.prototype._setAxisModel=function(){var e=this.getAxisModel(),t=this._percentWindow,a=this._valueWindow;if(!!t){var i=Mb(a,[0,500]);i=Math.min(i,20);var n=e.axis.scale.rawExtentInfo;t[0]!==0&&n.setDeterminedMinMax("min",+a[0].toFixed(i)),t[1]!==100&&n.setDeterminedMinMax("max",+a[1].toFixed(i)),n.freeze()}},r}();function ZU(r,e,t){var a=[1/0,-1/0];Nn(t,function(o){mV(a,o.getData(),e)});var i=r.getAxisModel(),n=kA(i.axis.scale,i,a).calculate();return[n.min,n.max]}var XU=YU,qU={getTargetSeries:function(r){function e(i){r.eachComponent("dataZoom",function(n){n.eachTargetAxis(function(o,s){var l=r.getComponent(Va(o),s);i(o,s,l,n)})})}e(function(i,n,o,s){o.__dzAxisProxy=null});var t=[];e(function(i,n,o,s){o.__dzAxisProxy||(o.__dzAxisProxy=new XU(i,n,s,r),t.push(o.__dzAxisProxy))});var a=q();return A(t,function(i){A(i.getTargetSeriesModels(),function(n){a.set(n.uid,n)})}),a},overallReset:function(r,e){r.eachComponent("dataZoom",function(t){t.eachTargetAxis(function(a,i){t.getAxisProxy(a,i).reset(t)}),t.eachTargetAxis(function(a,i){t.getAxisProxy(a,i).filterData(t,e)})}),r.eachComponent("dataZoom",function(t){var a=t.findRepresentativeAxisProxy();if(a){var i=a.getDataPercentWindow(),n=a.getDataValueWindow();t.setCalculatedRange({start:i[0],end:i[1],startValue:n[0],endValue:n[1]})}})}},KU=qU;function QU(r){r.registerAction("dataZoom",function(e,t){var a=zU(t,e);A(a,function(i){i.setRawRange({start:e.start,end:e.end,startValue:e.startValue,endValue:e.endValue})})})}var Rx=!1;function Ey(r){Rx||(Rx=!0,r.registerProcessor(r.PRIORITY.PROCESSOR.FILTER,KU),QU(r),r.registerSubTypeDefaulter("dataZoom",function(){return"slider"}))}function JU(r){r.registerComponentModel(HU),r.registerComponentView(UU),Ey(r)}var je=function(){function r(){}return r}(),yL={};function Vn(r,e){yL[r]=e}function mL(r){return yL[r]}var jU=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.optionUpdated=function(){r.prototype.optionUpdated.apply(this,arguments);var t=this.ecModel;A(this.option.feature,function(a,i){var n=mL(i);n&&(n.getDefaultOption&&(n.defaultOption=n.getDefaultOption(t)),st(a,n.defaultOption))})},e.type="toolbox",e.layoutMode={type:"box",ignoreSize:!0},e.defaultOption={show:!0,z:6,orient:"horizontal",left:"right",top:"top",backgroundColor:"transparent",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemSize:15,itemGap:8,showTitle:!0,iconStyle:{borderColor:"#666",color:"none"},emphasis:{iconStyle:{borderColor:"#3E98C5"}},tooltip:{show:!1,position:"bottom"}},e}(St),t8=jU;function e8(r,e,t){var a=e.getBoxLayoutParams(),i=e.get("padding"),n={width:t.getWidth(),height:t.getHeight()},o=jt(a,n,i);Zi(e.get("orient"),r,e.get("itemGap"),o.width,o.height),hh(r,a,n,i)}function _L(r,e){var t=co(e.get("padding")),a=e.getItemStyle(["color","opacity"]);return a.fill=e.get("backgroundColor"),r=new _t({shape:{x:r.x-t[3],y:r.y-t[0],width:r.width+t[1]+t[3],height:r.height+t[0]+t[2],r:e.get("borderRadius")},style:a,silent:!0,z2:-1}),r}var r8=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.render=function(t,a,i,n){var o=this.group;if(o.removeAll(),!t.get("show"))return;var s=+t.get("itemSize"),l=t.get("orient")==="vertical",u=t.get("feature")||{},f=this._features||(this._features={}),h=[];A(u,function(p,d){h.push(d)}),new ua(this._featureNames||[],h).add(v).update(v).remove(it(v,null)).execute(),this._featureNames=h;function v(p,d){var g=h[p],y=h[d],m=u[g],_=new Ot(m,t,t.ecModel),S;if(n&&n.newTitle!=null&&n.featureName===g&&(m.title=n.newTitle),g&&!y){if(a8(g))S={onclick:_.option.onclick,featureName:g};else{var w=mL(g);if(!w)return;S=new w}f[g]=S}else if(S=f[y],!S)return;S.uid=vo("toolbox-feature"),S.model=_,S.ecModel=a,S.api=i;var x=S instanceof je;if(!g&&y){x&&S.dispose&&S.dispose(a,i);return}if(!_.get("show")||x&&S.unusable){x&&S.remove&&S.remove(a,i);return}c(_,S,g),_.setIconStatus=function(b,T){var C=this.option,M=this.iconPaths;C.iconStatus=C.iconStatus||{},C.iconStatus[b]=T,M[b]&&(T==="emphasis"?sa:la)(M[b])},S instanceof je&&S.render&&S.render(_,a,i,n)}function c(p,d,g){var y=p.getModel("iconStyle"),m=p.getModel(["emphasis","iconStyle"]),_=d instanceof je&&d.getIcons?d.getIcons():p.get("icon"),S=p.get("title")||{},w,x;$(_)?(w={},w[g]=_):w=_,$(S)?(x={},x[g]=S):x=S;var b=p.iconPaths={};A(w,function(T,C){var M=sl(T,{},{x:-s/2,y:-s/2,width:s,height:s});M.setStyle(y.getItemStyle());var D=M.ensureState("emphasis");D.style=m.getItemStyle();var L=new Tt({style:{text:x[C],align:m.get("textAlign"),borderRadius:m.get("textBorderRadius"),padding:m.get("textPadding"),fill:null},ignore:!0});M.setTextContent(L),fo({el:M,componentModel:t,itemName:C,formatterParamsExtra:{title:x[C]}}),M.__title=x[C],M.on("mouseover",function(){var I=m.getItemStyle(),P=l?t.get("right")==null&&t.get("left")!=="right"?"right":"left":t.get("bottom")==null&&t.get("top")!=="bottom"?"bottom":"top";L.setStyle({fill:m.get("textFill")||I.fill||I.stroke||"#000",backgroundColor:m.get("textBackgroundColor")}),M.setTextConfig({position:m.get("textPosition")||P}),L.ignore=!t.get("showTitle"),i.enterEmphasis(this)}).on("mouseout",function(){p.get(["iconStatus",C])!=="emphasis"&&i.leaveEmphasis(this),L.hide()}),(p.get(["iconStatus",C])==="emphasis"?sa:la)(M),o.add(M),M.on("click",U(d.onclick,d,a,i,C)),b[C]=M})}e8(o,t,i),o.add(_L(o.getBoundingRect(),t)),l||o.eachChild(function(p){var d=p.__title,g=p.ensureState("emphasis"),y=g.textConfig||(g.textConfig={}),m=p.getTextContent(),_=m&&m.ensureState("emphasis");if(_&&!K(_)&&d){var S=_.style||(_.style={}),w=rl(d,Tt.makeFont(S)),x=p.x+o.x,b=p.y+o.y+s,T=!1;b+w.height>i.getHeight()&&(y.position="top",T=!0);var C=T?-5-w.height:s+10;x+w.width/2>i.getWidth()?(y.position=["100%",C],S.align="right"):x-w.width/2<0&&(y.position=[0,C],S.align="left")}})},e.prototype.updateView=function(t,a,i,n){A(this._features,function(o){o instanceof je&&o.updateView&&o.updateView(o.model,a,i,n)})},e.prototype.remove=function(t,a){A(this._features,function(i){i instanceof je&&i.remove&&i.remove(t,a)}),this.group.removeAll()},e.prototype.dispose=function(t,a){A(this._features,function(i){i instanceof je&&i.dispose&&i.dispose(t,a)})},e.type="toolbox",e}(Ht);function a8(r){return r.indexOf("my")===0}var i8=r8,n8=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.onclick=function(t,a){var i=this.model,n=i.get("name")||t.get("title.0.text")||"echarts",o=a.getZr().painter.getType()==="svg",s=o?"svg":i.get("type",!0)||"png",l=a.getConnectedDataURL({type:s,backgroundColor:i.get("backgroundColor",!0)||t.get("backgroundColor")||"#fff",connectedBackgroundColor:i.get("connectedBackgroundColor"),excludeComponents:i.get("excludeComponents"),pixelRatio:i.get("pixelRatio")}),u=Ct.browser;if(K(MouseEvent)&&(u.newEdge||!u.ie&&!u.edge)){var f=document.createElement("a");f.download=n+"."+s,f.target="_blank",f.href=l;var h=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});f.dispatchEvent(h)}else if(window.navigator.msSaveOrOpenBlob||o){var v=l.split(","),c=v[0].indexOf("base64")>-1,p=o?decodeURIComponent(v[1]):v[1];c&&(p=window.atob(p));var d=n+"."+s;if(window.navigator.msSaveOrOpenBlob){for(var g=p.length,y=new Uint8Array(g);g--;)y[g]=p.charCodeAt(g);var m=new Blob([y]);window.navigator.msSaveOrOpenBlob(m,d)}else{var _=document.createElement("iframe");document.body.appendChild(_);var S=_.contentWindow,w=S.document;w.open("image/svg+xml","replace"),w.write(p),w.close(),S.focus(),w.execCommand("SaveAs",!0,d),document.body.removeChild(_)}}else{var x=i.get("lang"),b='',T=window.open();T.document.write(b),T.document.title=n}},e.getDefaultOption=function(t){var a={show:!0,icon:"M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0",title:t.getLocaleModel().get(["toolbox","saveAsImage","title"]),type:"png",connectedBackgroundColor:"#fff",name:"",excludeComponents:["toolbox"],lang:t.getLocaleModel().get(["toolbox","saveAsImage","lang"])};return a},e}(je),o8=n8,Ex="__ec_magicType_stack__",s8=[["line","bar"],["stack"]],l8=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.getIcons=function(){var t=this.model,a=t.get("icon"),i={};return A(t.get("type"),function(n){a[n]&&(i[n]=a[n])}),i},e.getDefaultOption=function(t){var a={show:!0,type:[],icon:{line:"M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4",bar:"M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7",stack:"M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z"},title:t.getLocaleModel().get(["toolbox","magicType","title"]),option:{},seriesIndex:{}};return a},e.prototype.onclick=function(t,a,i){var n=this.model,o=n.get(["seriesIndex",i]);if(!!kx[i]){var s={series:[]},l=function(h){var v=h.subType,c=h.id,p=kx[i](v,c,h,n);p&&(Q(p,h.option),s.series.push(p));var d=h.coordinateSystem;if(d&&d.type==="cartesian2d"&&(i==="line"||i==="bar")){var g=d.getAxesByScale("ordinal")[0];if(g){var y=g.dim,m=y+"Axis",_=h.getReferringComponents(m,Xt).models[0],S=_.componentIndex;s[m]=s[m]||[];for(var w=0;w<=S;w++)s[m][S]=s[m][S]||{};s[m][S].boundaryGap=i==="bar"}}};A(s8,function(h){ht(h,i)>=0&&A(h,function(v){n.setIconStatus(v,"normal")})}),n.setIconStatus(i,"emphasis"),t.eachComponent({mainType:"series",query:o==null?null:{seriesIndex:o}},l);var u,f=i;i==="stack"&&(u=st({stack:n.option.title.tiled,tiled:n.option.title.stack},n.option.title),n.get(["iconStatus",i])!=="emphasis"&&(f="tiled")),a.dispatchAction({type:"changeMagicType",currentType:f,newOption:s,newTitle:u,featureName:"magicType"})}},e}(je),kx={line:function(r,e,t,a){if(r==="bar")return st({id:e,type:"line",data:t.get("data"),stack:t.get("stack"),markPoint:t.get("markPoint"),markLine:t.get("markLine")},a.get(["option","line"])||{},!0)},bar:function(r,e,t,a){if(r==="line")return st({id:e,type:"bar",data:t.get("data"),stack:t.get("stack"),markPoint:t.get("markPoint"),markLine:t.get("markLine")},a.get(["option","bar"])||{},!0)},stack:function(r,e,t,a){var i=t.get("stack")===Ex;if(r==="line"||r==="bar")return a.setIconStatus("stack",i?"normal":"emphasis"),st({id:e,stack:i?"":Ex},a.get(["option","stack"])||{},!0)}};$r({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},function(r,e){e.mergeOption(r.newOption)});var u8=l8,Dh=new Array(60).join("-"),io=" ";function f8(r){var e={},t=[],a=[];return r.eachRawSeries(function(i){var n=i.coordinateSystem;if(n&&(n.type==="cartesian2d"||n.type==="polar")){var o=n.getBaseAxis();if(o.type==="category"){var s=o.dim+"_"+o.index;e[s]||(e[s]={categoryAxis:o,valueAxis:n.getOtherAxis(o),series:[]},a.push({axisDim:o.dim,axisIndex:o.index})),e[s].series.push(i)}else t.push(i)}else t.push(i)}),{seriesGroupByCategoryAxis:e,other:t,meta:a}}function h8(r){var e=[];return A(r,function(t,a){var i=t.categoryAxis,n=t.valueAxis,o=n.dim,s=[" "].concat(G(t.series,function(c){return c.name})),l=[i.model.getCategories()];A(t.series,function(c){var p=c.getRawData();l.push(c.getRawData().mapArray(p.mapDimension(o),function(d){return d}))});for(var u=[s.join(io)],f=0;f=0)return!0}var Cd=new RegExp("["+io+"]+","g");function d8(r){for(var e=r.split(/\n+/g),t=Of(e.shift()).split(Cd),a=[],i=G(t,function(l){return{name:l,data:[]}}),n=0;n=0;n--){var o=t[n];if(o[i])break}if(n<0){var s=r.queryComponents({mainType:"dataZoom",subType:"select",id:i})[0];if(s){var l=s.getPercentRange();t[0][i]={dataZoomId:i,start:l[0],end:l[1]}}}}),t.push(e)}function w8(r){var e=ky(r),t=e[e.length-1];e.length>1&&e.pop();var a={};return SL(t,function(i,n){for(var o=e.length-1;o>=0;o--)if(i=e[o][n],i){a[n]=i;break}}),a}function b8(r){xL(r).snapshots=null}function T8(r){return ky(r).length}function ky(r){var e=xL(r);return e.snapshots||(e.snapshots=[{}]),e.snapshots}var C8=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.onclick=function(t,a){b8(t),a.dispatchAction({type:"restore",from:this.uid})},e.getDefaultOption=function(t){var a={show:!0,icon:"M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5",title:t.getLocaleModel().get(["toolbox","restore","title"])};return a},e}(je);$r({type:"restore",event:"restore",update:"prepareAndUpdate"},function(r,e){e.resetOption("recreate")});var A8=C8,M8=["grid","xAxis","yAxis","geo","graph","polar","radiusAxis","angleAxis","bmap"],D8=function(){function r(e,t,a){var i=this;this._targetInfoList=[];var n=Ox(t,e);A(L8,function(o,s){(!a||!a.include||ht(a.include,s)>=0)&&o(n,i._targetInfoList)})}return r.prototype.setOutputRanges=function(e,t){return this.matchOutputRanges(e,t,function(a,i,n){if((a.coordRanges||(a.coordRanges=[])).push(i),!a.coordRange){a.coordRange=i;var o=Nc[a.brushType](0,n,i);a.__rangeOffset={offset:zx[a.brushType](o.values,a.range,[1,1]),xyMinMax:o.xyMinMax}}}),e},r.prototype.matchOutputRanges=function(e,t,a){A(e,function(i){var n=this.findTargetInfo(i,t);n&&n!==!0&&A(n.coordSyses,function(o){var s=Nc[i.brushType](1,o,i.range,!0);a(i,s.values,o,t)})},this)},r.prototype.setInputRanges=function(e,t){A(e,function(a){var i=this.findTargetInfo(a,t);if(a.range=a.range||[],i&&i!==!0){a.panelId=i.panelId;var n=Nc[a.brushType](0,i.coordSys,a.coordRange),o=a.__rangeOffset;a.range=o?zx[a.brushType](n.values,o.offset,I8(n.xyMinMax,o.xyMinMax)):n.values}},this)},r.prototype.makePanelOpts=function(e,t){return G(this._targetInfoList,function(a){var i=a.getPanelRect();return{panelId:a.panelId,defaultBrushType:t?t(a):null,clipPath:DD(i),isTargetByCursor:ID(i,e,a.coordSysModel),getLinearBrushOtherExtent:LD(i)}})},r.prototype.controlSeries=function(e,t,a){var i=this.findTargetInfo(e,a);return i===!0||i&&ht(i.coordSyses,t.coordinateSystem)>=0},r.prototype.findTargetInfo=function(e,t){for(var a=this._targetInfoList,i=Ox(t,e),n=0;nr[1]&&r.reverse(),r}function Ox(r,e){return ps(r,e,{includeMainTypes:M8})}var L8={grid:function(r,e){var t=r.xAxisModels,a=r.yAxisModels,i=r.gridModels,n=q(),o={},s={};!t&&!a&&!i||(A(t,function(l){var u=l.axis.grid.model;n.set(u.id,u),o[u.id]=!0}),A(a,function(l){var u=l.axis.grid.model;n.set(u.id,u),s[u.id]=!0}),A(i,function(l){n.set(l.id,l),o[l.id]=!0,s[l.id]=!0}),n.each(function(l){var u=l.coordinateSystem,f=[];A(u.getCartesians(),function(h,v){(ht(t,h.getAxis("x").model)>=0||ht(a,h.getAxis("y").model)>=0)&&f.push(h)}),e.push({panelId:"grid--"+l.id,gridModel:l,coordSysModel:l,coordSys:f[0],coordSyses:f,getPanelRect:Vx.grid,xAxisDeclared:o[l.id],yAxisDeclared:s[l.id]})}))},geo:function(r,e){A(r.geoModels,function(t){var a=t.coordinateSystem;e.push({panelId:"geo--"+t.id,geoModel:t,coordSysModel:t,coordSys:a,coordSyses:[a],getPanelRect:Vx.geo})})}},Nx=[function(r,e){var t=r.xAxisModel,a=r.yAxisModel,i=r.gridModel;return!i&&t&&(i=t.axis.grid.model),!i&&a&&(i=a.axis.grid.model),i&&i===e.gridModel},function(r,e){var t=r.geoModel;return t&&t===e.geoModel}],Vx={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var r=this.coordSys,e=r.getBoundingRect().clone();return e.applyTransform(Yi(r)),e}},Nc={lineX:it(Bx,0),lineY:it(Bx,1),rect:function(r,e,t,a){var i=r?e.pointToData([t[0][0],t[1][0]],a):e.dataToPoint([t[0][0],t[1][0]],a),n=r?e.pointToData([t[0][1],t[1][1]],a):e.dataToPoint([t[0][1],t[1][1]],a),o=[Ad([i[0],n[0]]),Ad([i[1],n[1]])];return{values:o,xyMinMax:o}},polygon:function(r,e,t,a){var i=[[1/0,-1/0],[1/0,-1/0]],n=G(t,function(o){var s=r?e.pointToData(o,a):e.dataToPoint(o,a);return i[0][0]=Math.min(i[0][0],s[0]),i[1][0]=Math.min(i[1][0],s[1]),i[0][1]=Math.max(i[0][1],s[0]),i[1][1]=Math.max(i[1][1],s[1]),s});return{values:n,xyMinMax:i}}};function Bx(r,e,t,a){var i=t.getAxis(["x","y"][r]),n=Ad(G([0,1],function(s){return e?i.coordToData(i.toLocalCoord(a[s]),!0):i.toGlobalCoord(i.dataToCoord(a[s]))})),o=[];return o[r]=n,o[1-r]=[NaN,NaN],{values:n,xyMinMax:o}}var zx={lineX:it(Gx,0),lineY:it(Gx,1),rect:function(r,e,t){return[[r[0][0]-t[0]*e[0][0],r[0][1]-t[0]*e[0][1]],[r[1][0]-t[1]*e[1][0],r[1][1]-t[1]*e[1][1]]]},polygon:function(r,e,t){return G(r,function(a,i){return[a[0]-t[0]*e[i][0],a[1]-t[1]*e[i][1]]})}};function Gx(r,e,t,a){return[e[0]-a[r]*t[0],e[1]-a[r]*t[1]]}function I8(r,e){var t=Fx(r),a=Fx(e),i=[t[0]/a[0],t[1]/a[1]];return isNaN(i[0])&&(i[0]=1),isNaN(i[1])&&(i[1]=1),i}function Fx(r){return r?[r[0][1]-r[0][0],r[1][1]-r[1][0]]:[NaN,NaN]}var Oy=D8,Md=A,P8=Q2("toolbox-dataZoom_"),R8=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.render=function(t,a,i,n){this._brushController||(this._brushController=new dy(i.getZr()),this._brushController.on("brush",U(this._onBrush,this)).mount()),O8(t,a,this,n,i),k8(t,a)},e.prototype.onclick=function(t,a,i){E8[i].call(this)},e.prototype.remove=function(t,a){this._brushController&&this._brushController.unmount()},e.prototype.dispose=function(t,a){this._brushController&&this._brushController.dispose()},e.prototype._onBrush=function(t){var a=t.areas;if(!t.isEnd||!a.length)return;var i={},n=this.ecModel;this._brushController.updateCovers([]);var o=new Oy(Ny(this.model),n,{include:["grid"]});o.matchOutputRanges(a,n,function(u,f,h){if(h.type==="cartesian2d"){var v=u.brushType;v==="rect"?(s("x",h,f[0]),s("y",h,f[1])):s({lineX:"x",lineY:"y"}[v],h,f)}}),x8(n,i),this._dispatchZoomAction(i);function s(u,f,h){var v=f.getAxis(u),c=v.model,p=l(u,c,n),d=p.findRepresentativeAxisProxy(c).getMinMaxSpan();(d.minValueSpan!=null||d.maxValueSpan!=null)&&(h=hn(0,h.slice(),v.scale.getExtent(),0,d.minValueSpan,d.maxValueSpan)),p&&(i[p.id]={dataZoomId:p.id,startValue:h[0],endValue:h[1]})}function l(u,f,h){var v;return h.eachComponent({mainType:"dataZoom",subType:"select"},function(c){var p=c.getAxisModel(u,f.componentIndex);p&&(v=c)}),v}},e.prototype._dispatchZoomAction=function(t){var a=[];Md(t,function(i,n){a.push(j(i))}),a.length&&this.api.dispatchAction({type:"dataZoom",from:this.uid,batch:a})},e.getDefaultOption=function(t){var a={show:!0,filterMode:"filter",icon:{zoom:"M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1",back:"M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26"},title:t.getLocaleModel().get(["toolbox","dataZoom","title"]),brushStyle:{borderWidth:0,color:"rgba(210,219,238,0.2)"}};return a},e}(je),E8={zoom:function(){var r=!this._isZoomActive;this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:r})},back:function(){this._dispatchZoomAction(w8(this.ecModel))}};function Ny(r){var e={xAxisIndex:r.get("xAxisIndex",!0),yAxisIndex:r.get("yAxisIndex",!0),xAxisId:r.get("xAxisId",!0),yAxisId:r.get("yAxisId",!0)};return e.xAxisIndex==null&&e.xAxisId==null&&(e.xAxisIndex="all"),e.yAxisIndex==null&&e.yAxisId==null&&(e.yAxisIndex="all"),e}function k8(r,e){r.setIconStatus("back",T8(e)>1?"emphasis":"normal")}function O8(r,e,t,a,i){var n=t._isZoomActive;a&&a.type==="takeGlobalCursor"&&(n=a.key==="dataZoomSelect"?a.dataZoomSelectActive:!1),t._isZoomActive=n,r.setIconStatus("zoom",n?"emphasis":"normal");var o=new Oy(Ny(r),e,{include:["grid"]}),s=o.makePanelOpts(i,function(l){return l.xAxisDeclared&&!l.yAxisDeclared?"lineX":!l.xAxisDeclared&&l.yAxisDeclared?"lineY":"rect"});t._brushController.setPanels(s).enableBrush(n&&s.length?{brushType:"auto",brushStyle:r.getModel("brushStyle").getItemStyle()}:!1)}OE("dataZoom",function(r){var e=r.getComponent("toolbox",0),t=["feature","dataZoom"];if(!e||e.get(t)==null)return;var a=e.getModel(t),i=[],n=Ny(a),o=ps(r,n);Md(o.xAxisModels,function(l){return s(l,"xAxis","xAxisIndex")}),Md(o.yAxisModels,function(l){return s(l,"yAxis","yAxisIndex")});function s(l,u,f){var h=l.componentIndex,v={type:"select",$fromToolbox:!0,filterMode:a.get("filterMode",!0)||"filter",id:P8+u+h};v[f]=h,i.push(v)}return i});var N8=R8;function V8(r){r.registerComponentModel(t8),r.registerComponentView(i8),Vn("saveAsImage",o8),Vn("magicType",u8),Vn("dataView",S8),Vn("dataZoom",N8),Vn("restore",A8),ct(JU)}var B8=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="tooltip",e.dependencies=["axisPointer"],e.defaultOption={z:60,show:!0,showContent:!0,trigger:"item",triggerOn:"mousemove|click",alwaysShowContent:!1,displayMode:"single",renderMode:"auto",confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,enterable:!1,backgroundColor:"#fff",shadowBlur:10,shadowColor:"rgba(0, 0, 0, .2)",shadowOffsetX:1,shadowOffsetY:2,borderRadius:4,borderWidth:1,padding:null,extraCssText:"",axisPointer:{type:"line",axis:"auto",animation:"auto",animationDurationUpdate:200,animationEasingUpdate:"exponentialOut",crossStyle:{color:"#999",width:1,type:"dashed",textStyle:{}}},textStyle:{color:"#666",fontSize:14}},e}(St),z8=B8;function wL(r){var e=r.get("confine");return e!=null?!!e:r.get("renderMode")==="richText"}function bL(r){if(!!Ct.domSupported){for(var e=document.documentElement.style,t=0,a=r.length;t-1?(s+="top:50%",l+="translateY(-50%) rotate("+(u=n==="left"?-225:-45)+"deg)"):(s+="left:50%",l+="translateX(-50%) rotate("+(u=n==="top"?225:45)+"deg)");var f=u*Math.PI/180,h=o+i,v=h*Math.abs(Math.cos(f))+h*Math.abs(Math.sin(f)),c=Math.round(((v-Math.SQRT2*i)/2+Math.SQRT2*i-(v-h)/2)*100)/100;s+=";"+n+":-"+c+"px";var p=e+" solid "+i+"px;",d=["position:absolute;width:"+o+"px;height:"+o+"px;",s+";"+l+";","border-bottom:"+p,"border-right:"+p,"background-color:"+a+";"];return'
'}function Y8(r,e){var t="cubic-bezier(0.23,1,0.32,1)",a=" "+r/2+"s "+t,i="opacity"+a+",visibility"+a;return e||(a=" "+r+"s "+t,i+=Ct.transformSupported?","+Vy+a:",left"+a+",top"+a),H8+":"+i}function Hx(r,e,t){var a=r.toFixed(0)+"px",i=e.toFixed(0)+"px";if(!Ct.transformSupported)return t?"top:"+i+";left:"+a+";":[["top",i],["left",a]];var n=Ct.transform3dSupported,o="translate"+(n?"3d":"")+"("+a+","+i+(n?",0":"")+")";return t?"top:0;left:0;"+Vy+":"+o+";":[["top",0],["left",0],[TL,o]]}function Z8(r){var e=[],t=r.get("fontSize"),a=r.getTextColor();a&&e.push("color:"+a),e.push("font:"+r.getFont()),t&&e.push("line-height:"+Math.round(t*3/2)+"px");var i=r.get("textShadowColor"),n=r.get("textShadowBlur")||0,o=r.get("textShadowOffsetX")||0,s=r.get("textShadowOffsetY")||0;return i&&n&&e.push("text-shadow:"+o+"px "+s+"px "+n+"px "+i),A(["decoration","align"],function(l){var u=r.get(l);u&&e.push("text-"+l+":"+u)}),e.join(";")}function X8(r,e,t){var a=[],i=r.get("transitionDuration"),n=r.get("backgroundColor"),o=r.get("shadowBlur"),s=r.get("shadowColor"),l=r.get("shadowOffsetX"),u=r.get("shadowOffsetY"),f=r.getModel("textStyle"),h=EC(r,"html"),v=l+"px "+u+"px "+o+"px "+s;return a.push("box-shadow:"+v),e&&i&&a.push(Y8(i,t)),n&&a.push("background-color:"+n),A(["width","color","radius"],function(c){var p="border-"+c,d=QT(p),g=r.get(d);g!=null&&a.push(p+":"+g+(c==="color"?"":"px"))}),a.push(Z8(f)),h!=null&&a.push("padding:"+co(h).join("px ")+"px"),a.join(";")+";"}function Wx(r,e,t,a,i){var n=e&&e.painter;if(t){var o=n&&n.getViewportRoot();o&&wI(r,o,document.body,a,i)}else{r[0]=a,r[1]=i;var s=n&&n.getViewportRootOffset();s&&(r[0]+=s.offsetLeft,r[1]+=s.offsetTop)}r[2]=r[0]/e.getWidth(),r[3]=r[1]/e.getHeight()}var q8=function(){function r(e,t,a){if(this._show=!1,this._styleCoord=[0,0,0,0],this._enterable=!0,this._firstShow=!0,this._longHide=!0,Ct.wxa)return null;var i=document.createElement("div");i.domBelongToZr=!0,this.el=i;var n=this._zr=t.getZr(),o=this._appendToBody=a&&a.appendToBody;Wx(this._styleCoord,n,o,t.getWidth()/2,t.getHeight()/2),o?document.body.appendChild(i):e.appendChild(i),this._container=e;var s=this;i.onmouseenter=function(){s._enterable&&(clearTimeout(s._hideTimeout),s._show=!0),s._inContent=!0},i.onmousemove=function(l){if(l=l||window.event,!s._enterable){var u=n.handler,f=n.painter.getViewportRoot();Xe(f,l,!0),u.dispatch("mousemove",l)}},i.onmouseleave=function(){s._inContent=!1,s._enterable&&s._show&&s.hideLater(s._hideDelay)}}return r.prototype.update=function(e){var t=this._container,a=F8(t,"position"),i=t.style;i.position!=="absolute"&&a!=="absolute"&&(i.position="relative");var n=e.get("alwaysShowContent");n&&this._moveIfResized(),this.el.className=e.get("className")||""},r.prototype.show=function(e,t){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var a=this.el,i=a.style,n=this._styleCoord;a.innerHTML?i.cssText=W8+X8(e,!this._firstShow,this._longHide)+Hx(n[0],n[1],!0)+("border-color:"+en(t)+";")+(e.get("extraCssText")||"")+(";pointer-events:"+(this._enterable?"auto":"none")):i.display="none",this._show=!0,this._firstShow=!1,this._longHide=!1},r.prototype.setContent=function(e,t,a,i,n){var o=this.el;if(e==null){o.innerHTML="";return}var s="";if($(n)&&a.get("trigger")==="item"&&!wL(a)&&(s=U8(a,i,n)),$(e))o.innerHTML=e+s;else if(e){o.innerHTML="",z(e)||(e=[e]);for(var l=0;l=0?this._tryShow(n,o):i==="leave"&&this._hide(o))},this))},e.prototype._keepShow=function(){var t=this._tooltipModel,a=this._ecModel,i=this._api,n=t.get("triggerOn");if(this._lastX!=null&&this._lastY!=null&&n!=="none"&&n!=="click"){var o=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout(function(){!i.isDisposed()&&o.manuallyShowTip(t,a,i,{x:o._lastX,y:o._lastY,dataByCoordSys:o._lastDataByCoordSys})})}},e.prototype.manuallyShowTip=function(t,a,i,n){if(!(n.from===this.uid||Ct.node||!i.getDom())){var o=Yx(n,i);this._ticket="";var s=n.dataByCoordSys,l=iY(n,a,i);if(l){var u=l.el.getBoundingRect().clone();u.applyTransform(l.el.transform),this._tryShow({offsetX:u.x+u.width/2,offsetY:u.y+u.height/2,target:l.el,position:n.position,positionDefault:"bottom"},o)}else if(n.tooltip&&n.x!=null&&n.y!=null){var f=j8;f.x=n.x,f.y=n.y,f.update(),at(f).tooltipConfig={name:null,option:n.tooltip},this._tryShow({offsetX:n.x,offsetY:n.y,target:f},o)}else if(s)this._tryShow({offsetX:n.x,offsetY:n.y,position:n.position,dataByCoordSys:s,tooltipOption:n.tooltipOption},o);else if(n.seriesIndex!=null){if(this._manuallyAxisShowTip(t,a,i,n))return;var h=uL(n,a),v=h.point[0],c=h.point[1];v!=null&&c!=null&&this._tryShow({offsetX:v,offsetY:c,target:h.el,position:n.position,positionDefault:"bottom"},o)}else n.x!=null&&n.y!=null&&(i.dispatchAction({type:"updateAxisPointer",x:n.x,y:n.y}),this._tryShow({offsetX:n.x,offsetY:n.y,position:n.position,target:i.getZr().findHover(n.x,n.y).target},o))}},e.prototype.manuallyHideTip=function(t,a,i,n){var o=this._tooltipContent;!this._alwaysShowContent&&this._tooltipModel&&o.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=this._lastDataByCoordSys=null,n.from!==this.uid&&this._hide(Yx(n,i))},e.prototype._manuallyAxisShowTip=function(t,a,i,n){var o=n.seriesIndex,s=n.dataIndex,l=a.getComponent("axisPointer").coordSysAxesInfo;if(!(o==null||s==null||l==null)){var u=a.getSeriesByIndex(o);if(!!u){var f=u.getData(),h=Zo([f.getItemModel(s),u,(u.coordinateSystem||{}).model],this._tooltipModel);if(h.get("trigger")==="axis")return i.dispatchAction({type:"updateAxisPointer",seriesIndex:o,dataIndex:s,position:n.position}),!0}}},e.prototype._tryShow=function(t,a){var i=t.target,n=this._tooltipModel;if(!!n){this._lastX=t.offsetX,this._lastY=t.offsetY;var o=t.dataByCoordSys;if(o&&o.length)this._showAxisTooltip(o,t);else if(i){this._lastDataByCoordSys=null;var s,l;Gn(i,function(u){if(at(u).dataIndex!=null)return s=u,!0;if(at(u).tooltipConfig!=null)return l=u,!0},!0),s?this._showSeriesItemTooltip(t,s,a):l?this._showComponentItemTooltip(t,l,a):this._hide(a)}else this._lastDataByCoordSys=null,this._hide(a)}},e.prototype._showOrMove=function(t,a){var i=t.get("showDelay");a=U(a,this),clearTimeout(this._showTimout),i>0?this._showTimout=setTimeout(a,i):a()},e.prototype._showAxisTooltip=function(t,a){var i=this._ecModel,n=this._tooltipModel,o=[a.offsetX,a.offsetY],s=Zo([a.tooltipOption],n),l=this._renderMode,u=[],f=re("section",{blocks:[],noHeader:!0}),h=[],v=new bv;A(t,function(m){A(m.dataByAxis,function(_){var S=i.getComponent(_.axisDim+"Axis",_.axisIndex),w=_.value;if(!(!S||w==null)){var x=nL(w,S.axis,i,_.seriesDataIndices,_.valueLabelOpt),b=re("section",{header:x,noHeader:!pr(x),sortBlocks:!0,blocks:[]});f.blocks.push(b),A(_.seriesDataIndices,function(T){var C=i.getSeriesByIndex(T.seriesIndex),M=T.dataIndexInside,D=C.getDataParams(M);if(!(D.dataIndex<0)){D.axisDim=_.axisDim,D.axisIndex=_.axisIndex,D.axisType=_.axisType,D.axisId=_.axisId,D.axisValue=Fg(S.axis,{value:w}),D.axisValueLabel=x,D.marker=v.makeTooltipMarker("item",en(D.color),l);var L=I0(C.formatTooltip(M,!0,null)),I=L.frag;if(I){var P=Zo([C],n).get("valueFormatter");b.blocks.push(P?B({valueFormatter:P},I):I)}L.text&&h.push(L.text),u.push(D)}})}})}),f.blocks.reverse(),h.reverse();var c=a.position,p=s.get("order"),d=N0(f,v,l,p,i.get("useUTC"),s.get("textStyle"));d&&h.unshift(d);var g=l==="richText"?` + +`:"
",y=h.join(g);this._showOrMove(s,function(){this._updateContentNotChangedOnAxis(t,u)?this._updatePosition(s,c,o[0],o[1],this._tooltipContent,u):this._showTooltipContent(s,y,u,Math.random()+"",o[0],o[1],c,null,v)})},e.prototype._showSeriesItemTooltip=function(t,a,i){var n=this._ecModel,o=at(a),s=o.seriesIndex,l=n.getSeriesByIndex(s),u=o.dataModel||l,f=o.dataIndex,h=o.dataType,v=u.getData(h),c=this._renderMode,p=t.positionDefault,d=Zo([v.getItemModel(f),u,l&&(l.coordinateSystem||{}).model],this._tooltipModel,p?{position:p}:null),g=d.get("trigger");if(!(g!=null&&g!=="item")){var y=u.getDataParams(f,h),m=new bv;y.marker=m.makeTooltipMarker("item",en(y.color),c);var _=I0(u.formatTooltip(f,!1,h)),S=d.get("order"),w=d.get("valueFormatter"),x=_.frag,b=x?N0(w?B({valueFormatter:w},x):x,m,c,S,n.get("useUTC"),d.get("textStyle")):_.text,T="item_"+u.name+"_"+f;this._showOrMove(d,function(){this._showTooltipContent(d,b,y,T,t.offsetX,t.offsetY,t.position,t.target,m)}),i({type:"showTip",dataIndexInside:f,dataIndex:v.getRawIndex(f),seriesIndex:s,from:this.uid})}},e.prototype._showComponentItemTooltip=function(t,a,i){var n=at(a),o=n.tooltipConfig,s=o.option||{};if($(s)){var l=s;s={content:l,formatter:l}}var u=[s],f=this._ecModel.getComponent(n.componentMainType,n.componentIndex);f&&u.push(f),u.push({formatter:s.content});var h=t.positionDefault,v=Zo(u,this._tooltipModel,h?{position:h}:null),c=v.get("content"),p=Math.random()+"",d=new bv;this._showOrMove(v,function(){var g=j(v.get("formatterParams")||{});this._showTooltipContent(v,c,g,p,t.offsetX,t.offsetY,t.position,a,d)}),i({type:"showTip",from:this.uid})},e.prototype._showTooltipContent=function(t,a,i,n,o,s,l,u,f){if(this._ticket="",!(!t.get("showContent")||!t.get("show"))){var h=this._tooltipContent;h.setEnterable(t.get("enterable"));var v=t.get("formatter");l=l||t.get("position");var c=a,p=this._getNearestPoint([o,s],i,t.get("trigger"),t.get("borderColor")),d=p.color;if(v)if($(v)){var g=t.ecModel.get("useUTC"),y=z(i)?i[0]:i,m=y&&y.axisType&&y.axisType.indexOf("time")>=0;c=v,m&&(c=oh(y.axisValue,c,g)),c=JT(c,i,!0)}else if(K(v)){var _=U(function(S,w){S===this._ticket&&(h.setContent(w,f,t,d,l),this._updatePosition(t,l,o,s,h,i,u))},this);this._ticket=n,c=v(i,n,_)}else c=v;h.setContent(c,f,t,d,l),h.show(t,d),this._updatePosition(t,l,o,s,h,i,u)}},e.prototype._getNearestPoint=function(t,a,i,n){if(i==="axis"||z(a))return{color:n||(this._renderMode==="html"?"#fff":"none")};if(!z(a))return{color:n||a.color||a.borderColor}},e.prototype._updatePosition=function(t,a,i,n,o,s,l){var u=this._api.getWidth(),f=this._api.getHeight();a=a||t.get("position");var h=o.getSize(),v=t.get("align"),c=t.get("verticalAlign"),p=l&&l.getBoundingRect().clone();if(l&&p.applyTransform(l.transform),K(a)&&(a=a([i,n],s,o.el,p,{viewSize:[u,f],contentSize:h.slice()})),z(a))i=H(a[0],u),n=H(a[1],f);else if(J(a)){var d=a;d.width=h[0],d.height=h[1];var g=jt(d,{width:u,height:f});i=g.x,n=g.y,v=null,c=null}else if($(a)&&l){var y=aY(a,p,h,t.get("borderWidth"));i=y[0],n=y[1]}else{var y=eY(i,n,o,u,f,v?null:20,c?null:20);i=y[0],n=y[1]}if(v&&(i-=Zx(v)?h[0]/2:v==="right"?h[0]:0),c&&(n-=Zx(c)?h[1]/2:c==="bottom"?h[1]:0),wL(t)){var y=rY(i,n,o,u,f);i=y[0],n=y[1]}o.moveTo(i,n)},e.prototype._updateContentNotChangedOnAxis=function(t,a){var i=this._lastDataByCoordSys,n=this._cbParamsList,o=!!i&&i.length===t.length;return o&&A(i,function(s,l){var u=s.dataByAxis||[],f=t[l]||{},h=f.dataByAxis||[];o=o&&u.length===h.length,o&&A(u,function(v,c){var p=h[c]||{},d=v.seriesDataIndices||[],g=p.seriesDataIndices||[];o=o&&v.value===p.value&&v.axisType===p.axisType&&v.axisId===p.axisId&&d.length===g.length,o&&A(d,function(y,m){var _=g[m];o=o&&y.seriesIndex===_.seriesIndex&&y.dataIndex===_.dataIndex}),n&&A(v.seriesDataIndices,function(y){var m=y.seriesIndex,_=a[m],S=n[m];_&&S&&S.data!==_.data&&(o=!1)})})}),this._lastDataByCoordSys=t,this._cbParamsList=a,!!o},e.prototype._hide=function(t){this._lastDataByCoordSys=null,t({type:"hideTip",from:this.uid})},e.prototype.dispose=function(t,a){Ct.node||!a.getDom()||(zs(this,"_updatePosition"),this._tooltipContent.dispose(),wd("itemTooltip",a))},e.type="tooltip",e}(Ht);function Zo(r,e,t){var a=e.ecModel,i;t?(i=new Ot(t,a,a),i=new Ot(e.option,i,a)):i=e;for(var n=r.length-1;n>=0;n--){var o=r[n];o&&(o instanceof Ot&&(o=o.get("tooltip",!0)),$(o)&&(o={formatter:o}),o&&(i=new Ot(o,i,a)))}return i}function Yx(r,e){return r.dispatchAction||U(e.dispatchAction,e)}function eY(r,e,t,a,i,n,o){var s=t.getSize(),l=s[0],u=s[1];return n!=null&&(r+l+n+2>a?r-=l+n:r+=n),o!=null&&(e+u+o>i?e-=u+o:e+=o),[r,e]}function rY(r,e,t,a,i){var n=t.getSize(),o=n[0],s=n[1];return r=Math.min(r+o,a)-o,e=Math.min(e+s,i)-s,r=Math.max(r,0),e=Math.max(e,0),[r,e]}function aY(r,e,t,a){var i=t[0],n=t[1],o=Math.ceil(Math.SQRT2*a)+8,s=0,l=0,u=e.width,f=e.height;switch(r){case"inside":s=e.x+u/2-i/2,l=e.y+f/2-n/2;break;case"top":s=e.x+u/2-i/2,l=e.y-n-o;break;case"bottom":s=e.x+u/2-i/2,l=e.y+f+o;break;case"left":s=e.x-i-o,l=e.y+f/2-n/2;break;case"right":s=e.x+u+o,l=e.y+f/2-n/2}return[s,l]}function Zx(r){return r==="center"||r==="middle"}function iY(r,e,t){var a=jd(r).queryOptionMap,i=a.keys()[0];if(!(!i||i==="series")){var n=al(e,i,a.get(i),{useDefault:!1,enableAll:!1,enableNone:!1}),o=n.models[0];if(!!o){var s=t.getViewOfComponentModel(o),l;if(s.group.traverse(function(u){var f=at(u).tooltipConfig;if(f&&f.name===r.name)return l=u,!0}),l)return{componentMainType:i,componentIndex:o.componentIndex,el:l}}}}var nY=tY;function oY(r){ct(xl),r.registerComponentModel(z8),r.registerComponentView(nY),r.registerAction({type:"showTip",event:"showTip",update:"tooltip:manuallyShowTip"},qt),r.registerAction({type:"hideTip",event:"hideTip",update:"tooltip:manuallyHideTip"},qt)}var sY=["rect","polygon","keep","clear"];function lY(r,e){var t=Pt(r?r.brush:[]);if(!!t.length){var a=[];A(t,function(l){var u=l.hasOwnProperty("toolbox")?l.toolbox:[];u instanceof Array&&(a=a.concat(u))});var i=r&&r.toolbox;z(i)&&(i=i[0]),i||(i={feature:{}},r.toolbox=[i]);var n=i.feature||(i.feature={}),o=n.brush||(n.brush={}),s=o.type||(o.type=[]);s.push.apply(s,a),uY(s),e&&!s.length&&s.push.apply(s,sY)}}function uY(r){var e={};A(r,function(t){e[t]=1}),r.length=0,A(e,function(t,a){r.push(a)})}var Xx=A;function qx(r){if(r){for(var e in r)if(r.hasOwnProperty(e))return!0}}function Dd(r,e,t){var a={};return Xx(e,function(n){var o=a[n]=i();Xx(r[n],function(s,l){if(!!ue.isValidType(l)){var u={type:l,visual:s};t&&t(u,n),o[l]=new ue(u),l==="opacity"&&(u=j(u),u.type="colorAlpha",o.__hidden.__alphaForOpacity=new ue(u))}})}),a;function i(){var n=function(){};n.prototype.__hidden=n.prototype;var o=new n;return o}}function AL(r,e,t){var a;A(t,function(i){e.hasOwnProperty(i)&&qx(e[i])&&(a=!0)}),a&&A(t,function(i){e.hasOwnProperty(i)&&qx(e[i])?r[i]=j(e[i]):delete r[i]})}function fY(r,e,t,a,i,n){var o={};A(r,function(h){var v=ue.prepareVisualTypes(e[h]);o[h]=v});var s;function l(h){return Ig(t,s,h)}function u(h,v){WC(t,s,h,v)}n==null?t.each(f):t.each([n],f);function f(h,v){s=n==null?h:v;var c=t.getRawDataItem(s);if(!(c&&c.visualMap===!1))for(var p=a.call(i,h),d=e[p],g=o[p],y=0,m=g.length;ye[0][1]&&(e[0][1]=n[0]),n[1]e[1][1]&&(e[1][1]=n[1])}return e&&tw(e)}};function tw(r){return new ut(r[0][0],r[1][0],r[0][1]-r[0][0],r[1][1]-r[1][0])}var mY=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,a){this.ecModel=t,this.api=a,this.model,(this._brushController=new dy(a.getZr())).on("brush",U(this._onBrush,this)).mount()},e.prototype.render=function(t,a,i,n){this.model=t,this._updateController(t,a,i,n)},e.prototype.updateTransform=function(t,a,i,n){ML(a),this._updateController(t,a,i,n)},e.prototype.updateVisual=function(t,a,i,n){this.updateTransform(t,a,i,n)},e.prototype.updateView=function(t,a,i,n){this._updateController(t,a,i,n)},e.prototype._updateController=function(t,a,i,n){(!n||n.$from!==t.id)&&this._brushController.setPanels(t.brushTargetManager.makePanelOpts(i)).enableBrush(t.brushOption).updateCovers(t.areas.slice())},e.prototype.dispose=function(){this._brushController.dispose()},e.prototype._onBrush=function(t){var a=this.model.id,i=this.model.brushTargetManager.setOutputRanges(t.areas,this.ecModel);(!t.isEnd||t.removeOnClick)&&this.api.dispatchAction({type:"brush",brushId:a,areas:j(i),$from:a}),t.isEnd&&this.api.dispatchAction({type:"brushEnd",brushId:a,areas:j(i),$from:a})},e.type="brush",e}(Ht),_Y=mY,SY="#ddd",xY=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.areas=[],t.brushOption={},t}return e.prototype.optionUpdated=function(t,a){var i=this.option;!a&&AL(i,t,["inBrush","outOfBrush"]);var n=i.inBrush=i.inBrush||{};i.outOfBrush=i.outOfBrush||{color:SY},n.hasOwnProperty("liftZ")||(n.liftZ=5)},e.prototype.setAreas=function(t){!t||(this.areas=G(t,function(a){return ew(this.option,a)},this))},e.prototype.setBrushOption=function(t){this.brushOption=ew(this.option,t),this.brushType=this.brushOption.brushType},e.type="brush",e.dependencies=["geo","grid","xAxis","yAxis","parallel","series"],e.defaultOption={seriesIndex:"all",brushType:"rect",brushMode:"single",transformable:!0,brushStyle:{borderWidth:1,color:"rgba(210,219,238,0.3)",borderColor:"#D2DBEE"},throttleType:"fixRate",throttleDelay:0,removeOnClick:!0,z:1e4},e}(St);function ew(r,e){return st({brushType:r.brushType,brushMode:r.brushMode,transformable:r.transformable,brushStyle:new Ot(r.brushStyle).getItemStyle(),removeOnClick:r.removeOnClick,z:r.z},e,!0)}var wY=xY,bY=["rect","polygon","lineX","lineY","keep","clear"],TY=function(r){O(e,r);function e(){return r!==null&&r.apply(this,arguments)||this}return e.prototype.render=function(t,a,i){var n,o,s;a.eachComponent({mainType:"brush"},function(l){n=l.brushType,o=l.brushOption.brushMode||"single",s=s||!!l.areas.length}),this._brushType=n,this._brushMode=o,A(t.get("type",!0),function(l){t.setIconStatus(l,(l==="keep"?o==="multiple":l==="clear"?s:l===n)?"emphasis":"normal")})},e.prototype.updateView=function(t,a,i){this.render(t,a,i)},e.prototype.getIcons=function(){var t=this.model,a=t.get("icon",!0),i={};return A(t.get("type",!0),function(n){a[n]&&(i[n]=a[n])}),i},e.prototype.onclick=function(t,a,i){var n=this._brushType,o=this._brushMode;i==="clear"?(a.dispatchAction({type:"axisAreaSelect",intervals:[]}),a.dispatchAction({type:"brush",command:"clear",areas:[]})):a.dispatchAction({type:"takeGlobalCursor",key:"brush",brushOption:{brushType:i==="keep"?n:n===i?!1:i,brushMode:i==="keep"?o==="multiple"?"single":"multiple":o}})},e.getDefaultOption=function(t){var a={show:!0,type:bY.slice(),icon:{rect:"M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13",polygon:"M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2",lineX:"M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4",lineY:"M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4",keep:"M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z",clear:"M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2"},title:t.getLocaleModel().get(["toolbox","brush","title"])};return a},e}(je),CY=TY;function AY(r){r.registerComponentView(_Y),r.registerComponentModel(wY),r.registerPreprocessor(lY),r.registerVisual(r.PRIORITY.VISUAL.BRUSH,cY),r.registerAction({type:"brush",event:"brush",update:"updateVisual"},function(e,t){t.eachComponent({mainType:"brush",query:e},function(a){a.setAreas(e.areas)})}),r.registerAction({type:"brushSelect",event:"brushSelected",update:"none"},qt),r.registerAction({type:"brushEnd",event:"brushEnd",update:"none"},qt),Vn("brush",CY)}var MY=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.layoutMode={type:"box",ignoreSize:!0},t}return e.type="title",e.defaultOption={z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:0,top:0,backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bold",color:"#464646"},subtextStyle:{fontSize:12,color:"#6E7079"}},e}(St),DY=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.render=function(t,a,i){if(this.group.removeAll(),!!t.get("show")){var n=this.group,o=t.getModel("textStyle"),s=t.getModel("subtextStyle"),l=t.get("textAlign"),u=vt(t.get("textBaseline"),t.get("textVerticalAlign")),f=new Tt({style:Bt(o,{text:t.get("text"),fill:o.getTextColor()},{disableBox:!0}),z2:10}),h=f.getBoundingRect(),v=t.get("subtext"),c=new Tt({style:Bt(s,{text:v,fill:s.getTextColor(),y:h.height+t.get("itemGap"),verticalAlign:"top"},{disableBox:!0}),z2:10}),p=t.get("link"),d=t.get("sublink"),g=t.get("triggerEvent",!0);f.silent=!p&&!g,c.silent=!d&&!g,p&&f.on("click",function(){ff(p,"_"+t.get("target"))}),d&&c.on("click",function(){ff(d,"_"+t.get("subtarget"))}),at(f).eventData=at(c).eventData=g?{componentType:"title",componentIndex:t.componentIndex}:null,n.add(f),v&&n.add(c);var y=n.getBoundingRect(),m=t.getBoxLayoutParams();m.width=y.width,m.height=y.height;var _=jt(m,{width:i.getWidth(),height:i.getHeight()},t.get("padding"));l||(l=t.get("left")||t.get("right"),l==="middle"&&(l="center"),l==="right"?_.x+=_.width:l==="center"&&(_.x+=_.width/2)),u||(u=t.get("top")||t.get("bottom"),u==="center"&&(u="middle"),u==="bottom"?_.y+=_.height:u==="middle"&&(_.y+=_.height/2),u=u||"top"),n.x=_.x,n.y=_.y,n.markRedraw();var S={align:l,verticalAlign:u};f.setStyle(S),c.setStyle(S),y=n.getBoundingRect();var w=_.margin,x=t.getItemStyle(["color","opacity"]);x.fill=t.get("backgroundColor");var b=new _t({shape:{x:y.x-w[3],y:y.y-w[0],width:y.width+w[1]+w[3],height:y.height+w[0]+w[2],r:t.get("borderRadius")},style:x,subPixelOptimize:!0,silent:!0});n.add(b)}},e.type="title",e}(Ht);function LY(r){r.registerComponentModel(MY),r.registerComponentView(DY)}var IY=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.layoutMode="box",t}return e.prototype.init=function(t,a,i){this.mergeDefaultAndTheme(t,i),this._initData()},e.prototype.mergeOption=function(t){r.prototype.mergeOption.apply(this,arguments),this._initData()},e.prototype.setCurrentIndex=function(t){t==null&&(t=this.option.currentIndex);var a=this._data.count();this.option.loop?t=(t%a+a)%a:(t>=a&&(t=a-1),t<0&&(t=0)),this.option.currentIndex=t},e.prototype.getCurrentIndex=function(){return this.option.currentIndex},e.prototype.isIndexMax=function(){return this.getCurrentIndex()>=this._data.count()-1},e.prototype.setPlayState=function(t){this.option.autoPlay=!!t},e.prototype.getPlayState=function(){return!!this.option.autoPlay},e.prototype._initData=function(){var t=this.option,a=t.data||[],i=t.axisType,n=this._names=[],o;i==="category"?(o=[],A(a,function(u,f){var h=Jt(so(u),""),v;J(u)?(v=j(u),v.value=f):v=f,o.push(v),n.push(h)})):o=a;var s={category:"ordinal",time:"time",value:"number"}[i]||"number",l=this._data=new be([{name:"value",type:s}],this);l.initData(o,n)},e.prototype.getData=function(){return this._data},e.prototype.getCategories=function(){if(this.get("axisType")==="category")return this._names.slice()},e.type="timeline",e.defaultOption={z:4,show:!0,axisType:"time",realtime:!0,left:"20%",top:null,right:"20%",bottom:0,width:null,height:40,padding:5,controlPosition:"left",autoPlay:!1,rewind:!1,loop:!0,playInterval:2e3,currentIndex:0,itemStyle:{},label:{color:"#000"},data:[]},e}(St),rw=IY,DL=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="timeline.slider",e.defaultOption=ja(rw.defaultOption,{backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,orient:"horizontal",inverse:!1,tooltip:{trigger:"item"},symbol:"circle",symbolSize:12,lineStyle:{show:!0,width:2,color:"#DAE1F5"},label:{position:"auto",show:!0,interval:"auto",rotate:0,color:"#A4B1D7"},itemStyle:{color:"#A4B1D7",borderWidth:1},checkpointStyle:{symbol:"circle",symbolSize:15,color:"#316bf3",borderColor:"#fff",borderWidth:2,shadowBlur:2,shadowOffsetX:1,shadowOffsetY:1,shadowColor:"rgba(0, 0, 0, 0.3)",animation:!0,animationDuration:300,animationEasing:"quinticInOut"},controlStyle:{show:!0,showPlayBtn:!0,showPrevBtn:!0,showNextBtn:!0,itemSize:24,itemGap:12,position:"left",playIcon:"path://M31.6,53C17.5,53,6,41.5,6,27.4S17.5,1.8,31.6,1.8C45.7,1.8,57.2,13.3,57.2,27.4S45.7,53,31.6,53z M31.6,3.3 C18.4,3.3,7.5,14.1,7.5,27.4c0,13.3,10.8,24.1,24.1,24.1C44.9,51.5,55.7,40.7,55.7,27.4C55.7,14.1,44.9,3.3,31.6,3.3z M24.9,21.3 c0-2.2,1.6-3.1,3.5-2l10.5,6.1c1.899,1.1,1.899,2.9,0,4l-10.5,6.1c-1.9,1.1-3.5,0.2-3.5-2V21.3z",stopIcon:"path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5C17.6,3.5,6.8,14.4,6.8,27.6c0,13.3,10.8,24.1,24.101,24.1C44.2,51.7,55,40.9,55,27.6C54.9,14.4,44.1,3.5,30.9,3.5z M36.9,35.8c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H36c0.5,0,0.9,0.4,0.9,1V35.8z M27.8,35.8 c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H27c0.5,0,0.9,0.4,0.9,1L27.8,35.8L27.8,35.8z",nextIcon:"M2,18.5A1.52,1.52,0,0,1,.92,18a1.49,1.49,0,0,1,0-2.12L7.81,9.36,1,3.11A1.5,1.5,0,1,1,3,.89l8,7.34a1.48,1.48,0,0,1,.49,1.09,1.51,1.51,0,0,1-.46,1.1L3,18.08A1.5,1.5,0,0,1,2,18.5Z",prevIcon:"M10,.5A1.52,1.52,0,0,1,11.08,1a1.49,1.49,0,0,1,0,2.12L4.19,9.64,11,15.89a1.5,1.5,0,1,1-2,2.22L1,10.77A1.48,1.48,0,0,1,.5,9.68,1.51,1.51,0,0,1,1,8.58L9,.92A1.5,1.5,0,0,1,10,.5Z",prevBtnSize:18,nextBtnSize:18,color:"#A4B1D7",borderColor:"#A4B1D7",borderWidth:1},emphasis:{label:{show:!0,color:"#6f778d"},itemStyle:{color:"#316BF3"},controlStyle:{color:"#316BF3",borderColor:"#316BF3",borderWidth:2}},progress:{lineStyle:{color:"#316BF3"},itemStyle:{color:"#316BF3"},label:{color:"#6f778d"}},data:[]}),e}(rw);Qt(DL,Cg.prototype);var PY=DL,RY=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="timeline",e}(Ht),EY=RY,kY=function(r){O(e,r);function e(t,a,i,n){var o=r.call(this,t,a,i)||this;return o.type=n||"value",o}return e.prototype.getLabelModel=function(){return this.model.getModel("label")},e.prototype.isHorizontal=function(){return this.model.get("orient")==="horizontal"},e}(xr),OY=kY,Bc=Math.PI,aw=bt(),NY=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(t,a){this.api=a},e.prototype.render=function(t,a,i){if(this.model=t,this.api=i,this.ecModel=a,this.group.removeAll(),t.get("show",!0)){var n=this._layout(t,i),o=this._createGroup("_mainGroup"),s=this._createGroup("_labelGroup"),l=this._axis=this._createAxis(n,t);t.formatTooltip=function(u){var f=l.scale.getLabel({value:u});return re("nameValue",{noName:!0,value:f})},A(["AxisLine","AxisTick","Control","CurrentPointer"],function(u){this["_render"+u](n,o,l,t)},this),this._renderAxisLabel(n,s,l,t),this._position(n,t)}this._doPlayStop(),this._updateTicksStatus()},e.prototype.remove=function(){this._clearTimer(),this.group.removeAll()},e.prototype.dispose=function(){this._clearTimer()},e.prototype._layout=function(t,a){var i=t.get(["label","position"]),n=t.get("orient"),o=BY(t,a),s;i==null||i==="auto"?s=n==="horizontal"?o.y+o.height/2=0||s==="+"?"left":"right"},u={horizontal:s>=0||s==="+"?"top":"bottom",vertical:"middle"},f={horizontal:0,vertical:Bc/2},h=n==="vertical"?o.height:o.width,v=t.getModel("controlStyle"),c=v.get("show",!0),p=c?v.get("itemSize"):0,d=c?v.get("itemGap"):0,g=p+d,y=t.get(["label","rotate"])||0;y=y*Bc/180;var m,_,S,w=v.get("position",!0),x=c&&v.get("showPlayBtn",!0),b=c&&v.get("showPrevBtn",!0),T=c&&v.get("showNextBtn",!0),C=0,M=h;w==="left"||w==="bottom"?(x&&(m=[0,0],C+=g),b&&(_=[C,0],C+=g),T&&(S=[M-p,0],M-=g)):(x&&(m=[M-p,0],M-=g),b&&(_=[0,0],C+=g),T&&(S=[M-p,0],M-=g));var D=[C,M];return t.get("inverse")&&D.reverse(),{viewRect:o,mainLength:h,orient:n,rotation:f[n],labelRotation:y,labelPosOpt:s,labelAlign:t.get(["label","align"])||l[n],labelBaseline:t.get(["label","verticalAlign"])||t.get(["label","baseline"])||u[n],playPosition:m,prevBtnPosition:_,nextBtnPosition:S,axisExtent:D,controlSize:p,controlGap:d}},e.prototype._position=function(t,a){var i=this._mainGroup,n=this._labelGroup,o=t.viewRect;if(t.orient==="vertical"){var s=ir(),l=o.x,u=o.y+o.height;Br(s,s,[-l,-u]),on(s,s,-Bc/2),Br(s,s,[l,u]),o=o.clone(),o.applyTransform(s)}var f=m(o),h=m(i.getBoundingRect()),v=m(n.getBoundingRect()),c=[i.x,i.y],p=[n.x,n.y];p[0]=c[0]=f[0][0];var d=t.labelPosOpt;if(d==null||$(d)){var g=d==="+"?0:1;_(c,h,f,1,g),_(p,v,f,1,1-g)}else{var g=d>=0?0:1;_(c,h,f,1,g),p[1]=c[1]+d}i.setPosition(c),n.setPosition(p),i.rotation=n.rotation=t.rotation,y(i),y(n);function y(S){S.originX=f[0][0]-S.x,S.originY=f[1][0]-S.y}function m(S){return[[S.x,S.x+S.width],[S.y,S.y+S.height]]}function _(S,w,x,b,T){S[b]+=x[b][T]-w[b][T]}},e.prototype._createAxis=function(t,a){var i=a.getData(),n=a.get("axisType"),o=VY(a,n);o.getTicks=function(){return i.mapArray(["value"],function(u){return{value:u}})};var s=i.getDataExtent("value");o.setExtent(s[0],s[1]),o.calcNiceTicks();var l=new OY("value",o,t.axisExtent,n);return l.model=a,l},e.prototype._createGroup=function(t){var a=this[t]=new rt;return this.group.add(a),a},e.prototype._renderAxisLine=function(t,a,i,n){var o=i.getExtent();if(!!n.get(["lineStyle","show"])){var s=new ne({shape:{x1:o[0],y1:0,x2:o[1],y2:0},style:B({lineCap:"round"},n.getModel("lineStyle").getLineStyle()),silent:!0,z2:1});a.add(s);var l=this._progressLine=new ne({shape:{x1:o[0],x2:this._currentPointer?this._currentPointer.x:o[0],y1:0,y2:0},style:Q({lineCap:"round",lineWidth:s.style.lineWidth},n.getModel(["progress","lineStyle"]).getLineStyle()),silent:!0,z2:1});a.add(l)}},e.prototype._renderAxisTick=function(t,a,i,n){var o=this,s=n.getData(),l=i.scale.getTicks();this._tickSymbols=[],A(l,function(u){var f=i.dataToCoord(u.value),h=s.getItemModel(u.value),v=h.getModel("itemStyle"),c=h.getModel(["emphasis","itemStyle"]),p=h.getModel(["progress","itemStyle"]),d={x:f,y:0,onclick:U(o._changeTimeline,o,u.value)},g=iw(h,v,a,d);g.ensureState("emphasis").style=c.getItemStyle(),g.ensureState("progress").style=p.getItemStyle(),Ui(g);var y=at(g);h.get("tooltip")?(y.dataIndex=u.value,y.dataModel=n):y.dataIndex=y.dataModel=null,o._tickSymbols.push(g)})},e.prototype._renderAxisLabel=function(t,a,i,n){var o=this,s=i.getLabelModel();if(!!s.get("show")){var l=n.getData(),u=i.getViewLabels();this._tickLabels=[],A(u,function(f){var h=f.tickValue,v=l.getItemModel(h),c=v.getModel("label"),p=v.getModel(["emphasis","label"]),d=v.getModel(["progress","label"]),g=i.dataToCoord(f.tickValue),y=new Tt({x:g,y:0,rotation:t.labelRotation-t.rotation,onclick:U(o._changeTimeline,o,h),silent:!1,style:Bt(c,{text:f.formattedLabel,align:t.labelAlign,verticalAlign:t.labelBaseline})});y.ensureState("emphasis").style=Bt(p),y.ensureState("progress").style=Bt(d),a.add(y),Ui(y),aw(y).dataIndex=h,o._tickLabels.push(y)})}},e.prototype._renderControl=function(t,a,i,n){var o=t.controlSize,s=t.rotation,l=n.getModel("controlStyle").getItemStyle(),u=n.getModel(["emphasis","controlStyle"]).getItemStyle(),f=n.getPlayState(),h=n.get("inverse",!0);v(t.nextBtnPosition,"next",U(this._changeTimeline,this,h?"-":"+")),v(t.prevBtnPosition,"prev",U(this._changeTimeline,this,h?"+":"-")),v(t.playPosition,f?"stop":"play",U(this._handlePlayClick,this,!f),!0);function v(c,p,d,g){if(!!c){var y=mr(vt(n.get(["controlStyle",p+"BtnSize"]),o),o),m=[0,-y/2,y,y],_=zY(n,p+"Icon",m,{x:c[0],y:c[1],originX:o/2,originY:0,rotation:g?-s:0,rectHover:!0,style:l,onclick:d});_.ensureState("emphasis").style=u,a.add(_),Ui(_)}}},e.prototype._renderCurrentPointer=function(t,a,i,n){var o=n.getData(),s=n.getCurrentIndex(),l=o.getItemModel(s).getModel("checkpointStyle"),u=this,f={onCreate:function(h){h.draggable=!0,h.drift=U(u._handlePointerDrag,u),h.ondragend=U(u._handlePointerDragend,u),nw(h,u._progressLine,s,i,n,!0)},onUpdate:function(h){nw(h,u._progressLine,s,i,n)}};this._currentPointer=iw(l,l,this._mainGroup,{},this._currentPointer,f)},e.prototype._handlePlayClick=function(t){this._clearTimer(),this.api.dispatchAction({type:"timelinePlayChange",playState:t,from:this.uid})},e.prototype._handlePointerDrag=function(t,a,i){this._clearTimer(),this._pointerChangeTimeline([i.offsetX,i.offsetY])},e.prototype._handlePointerDragend=function(t){this._pointerChangeTimeline([t.offsetX,t.offsetY],!0)},e.prototype._pointerChangeTimeline=function(t,a){var i=this._toAxisCoord(t)[0],n=this._axis,o=rr(n.getExtent().slice());i>o[1]&&(i=o[1]),i=0&&(o[n]=+o[n].toFixed(v)),[o,h]}var zc={min:it(wu,"min"),max:it(wu,"max"),average:it(wu,"average"),median:it(wu,"median")};function Js(r,e){var t=r.getData(),a=r.coordinateSystem;if(e&&!ZY(e)&&!z(e.coord)&&a){var i=a.dimensions,n=IL(e,t,a,r);if(e=j(e),e.type&&zc[e.type]&&n.baseAxis&&n.valueAxis){var o=ht(i,n.baseAxis.dim),s=ht(i,n.valueAxis.dim),l=zc[e.type](t,n.baseDataDim,n.valueDataDim,o,s);e.coord=l[0],e.value=l[1]}else{for(var u=[e.xAxis!=null?e.xAxis:e.radiusAxis,e.yAxis!=null?e.yAxis:e.angleAxis],f=0;f<2;f++)zc[u[f]]&&(u[f]=zy(t,t.mapDimension(i[f]),u[f]));e.coord=u}}return e}function IL(r,e,t,a){var i={};return r.valueIndex!=null||r.valueDim!=null?(i.valueDataDim=r.valueIndex!=null?e.getDimension(r.valueIndex):r.valueDim,i.valueAxis=t.getAxis(XY(a,i.valueDataDim)),i.baseAxis=t.getOtherAxis(i.valueAxis),i.baseDataDim=e.mapDimension(i.baseAxis.dim)):(i.baseAxis=a.getBaseAxis(),i.valueAxis=t.getOtherAxis(i.baseAxis),i.baseDataDim=e.mapDimension(i.baseAxis.dim),i.valueDataDim=e.mapDimension(i.valueAxis.dim)),i}function XY(r,e){var t=r.getData().getDimensionInfo(e);return t&&t.coordDim}function js(r,e){return r&&r.containData&&e.coord&&!Id(e)?r.containData(e.coord):!0}function qY(r,e,t){return r&&r.containZone&&e.coord&&t.coord&&!Id(e)&&!Id(t)?r.containZone(e.coord,t.coord):!0}function PL(r,e){return r?function(t,a,i,n){var o=n<2?t.coord&&t.coord[n]:t.value;return Ga(o,e[n])}:function(t,a,i,n){return Ga(t.value,e[n])}}function zy(r,e,t){if(t==="average"){var a=0,i=0;return r.each(e,function(n,o){isNaN(n)||(a+=n,i++)}),a/i}else return t==="median"?r.getMedian(e):r.getDataExtent(e)[t==="max"?1:0]}var Gc=bt(),KY=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.init=function(){this.markerGroupMap=q()},e.prototype.render=function(t,a,i){var n=this,o=this.markerGroupMap;o.each(function(s){Gc(s).keep=!1}),a.eachSeries(function(s){var l=Qa.getMarkerModelFromSeries(s,n.type);l&&n.renderSeries(s,l,a,i)}),o.each(function(s){!Gc(s).keep&&n.group.remove(s.group)})},e.prototype.markKeep=function(t){Gc(t).keep=!0},e.prototype.toggleBlurSeries=function(t,a){var i=this;A(t,function(n){var o=Qa.getMarkerModelFromSeries(n,i.type);if(o){var s=o.getData();s.eachItemGraphicEl(function(l){l&&(a?nT(l):ng(l))})}})},e.type="marker",e}(Ht),Gy=KY;function sw(r,e,t){var a=e.coordinateSystem;r.each(function(i){var n=r.getItemModel(i),o,s=H(n.get("x"),t.getWidth()),l=H(n.get("y"),t.getHeight());if(!isNaN(s)&&!isNaN(l))o=[s,l];else if(e.getMarkerPosition)o=e.getMarkerPosition(r.getValues(r.dimensions,i));else if(a){var u=r.get(a.dimensions[0],i),f=r.get(a.dimensions[1],i);o=a.dataToPoint([u,f])}isNaN(s)||(o[0]=s),isNaN(l)||(o[1]=l),r.setItemLayout(i,o)})}var QY=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.updateTransform=function(t,a,i){a.eachSeries(function(n){var o=Qa.getMarkerModelFromSeries(n,"markPoint");o&&(sw(o.getData(),n,i),this.markerGroupMap.get(n.id).updateLayout())},this)},e.prototype.renderSeries=function(t,a,i,n){var o=t.coordinateSystem,s=t.id,l=t.getData(),u=this.markerGroupMap,f=u.get(s)||u.set(s,new dl),h=JY(o,t,a);a.setData(h),sw(a.getData(),t,n),h.each(function(v){var c=h.getItemModel(v),p=c.getShallow("symbol"),d=c.getShallow("symbolSize"),g=c.getShallow("symbolRotate"),y=c.getShallow("symbolOffset"),m=c.getShallow("symbolKeepAspect");if(K(p)||K(d)||K(g)||K(y)){var _=a.getRawValue(v),S=a.getDataParams(v);K(p)&&(p=p(_,S)),K(d)&&(d=d(_,S)),K(g)&&(g=g(_,S)),K(y)&&(y=y(_,S))}var w=c.getModel("itemStyle").getItemStyle(),x=fl(l,"color");w.fill||(w.fill=x),h.setItemVisual(v,{symbol:p,symbolSize:d,symbolRotate:g,symbolOffset:y,symbolKeepAspect:m,style:w})}),f.updateData(h),this.group.add(f.group),h.eachItemGraphicEl(function(v){v.traverse(function(c){at(c).dataModel=a})}),this.markKeep(f),f.group.silent=a.get("silent")||t.get("silent")},e.type="markPoint",e}(Gy);function JY(r,e,t){var a;r?a=G(r&&r.dimensions,function(s){var l=e.getData().getDimensionInfo(e.getData().mapDimension(s))||{};return B(B({},l),{name:s,ordinalMeta:null})}):a=[{name:"value",type:"float"}];var i=new be(a,t),n=G(t.get("data"),it(Js,e));r&&(n=It(n,it(js,r)));var o=PL(!!r,a);return i.initData(n,null,o),i}var jY=QY;function t7(r){r.registerComponentModel(YY),r.registerComponentView(jY),r.registerPreprocessor(function(e){By(e.series,"markPoint")&&(e.markPoint=e.markPoint||{})})}var e7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.createMarkerModelFromSeries=function(t,a,i){return new e(t,a,i)},e.type="markLine",e.defaultOption={z:5,symbol:["circle","arrow"],symbolSize:[8,16],symbolOffset:0,precision:2,tooltip:{trigger:"item"},label:{show:!0,position:"end",distance:5},lineStyle:{type:"dashed"},emphasis:{label:{show:!0},lineStyle:{width:3}},animationEasing:"linear"},e}(Qa),r7=e7,bu=bt(),a7=function(r,e,t,a){var i=r.getData(),n;if(z(a))n=a;else{var o=a.type;if(o==="min"||o==="max"||o==="average"||o==="median"||a.xAxis!=null||a.yAxis!=null){var s=void 0,l=void 0;if(a.yAxis!=null||a.xAxis!=null)s=e.getAxis(a.yAxis!=null?"y":"x"),l=ie(a.yAxis,a.xAxis);else{var u=IL(a,i,e,r);s=u.valueAxis;var f=mA(i,u.valueDataDim);l=zy(i,f,o)}var h=s.dim==="x"?0:1,v=1-h,c=j(a),p={coord:[]};c.type=null,c.coord=[],c.coord[v]=-1/0,p.coord[v]=1/0;var d=t.get("precision");d>=0&&xt(l)&&(l=+l.toFixed(Math.min(d,20))),c.coord[h]=p.coord[h]=l,n=[c,p,{type:o,valueIndex:a.valueIndex,value:l}]}else n=[]}var g=[Js(r,n[0]),Js(r,n[1]),B({},n[2])];return g[2].type=g[2].type||null,st(g[2],g[0]),st(g[2],g[1]),g};function Nf(r){return!isNaN(r)&&!isFinite(r)}function lw(r,e,t,a){var i=1-r,n=a.dimensions[r];return Nf(e[i])&&Nf(t[i])&&e[r]===t[r]&&a.getAxis(n).containData(e[r])}function i7(r,e){if(r.type==="cartesian2d"){var t=e[0].coord,a=e[1].coord;if(t&&a&&(lw(1,t,a,r)||lw(0,t,a,r)))return!0}return js(r,e[0])&&js(r,e[1])}function Fc(r,e,t,a,i){var n=a.coordinateSystem,o=r.getItemModel(e),s,l=H(o.get("x"),i.getWidth()),u=H(o.get("y"),i.getHeight());if(!isNaN(l)&&!isNaN(u))s=[l,u];else{if(a.getMarkerPosition)s=a.getMarkerPosition(r.getValues(r.dimensions,e));else{var f=n.dimensions,h=r.get(f[0],e),v=r.get(f[1],e);s=n.dataToPoint([h,v])}if(un(n,"cartesian2d")){var c=n.getAxis("x"),p=n.getAxis("y"),f=n.dimensions;Nf(r.get(f[0],e))?s[0]=c.toGlobalCoord(c.getExtent()[t?0:1]):Nf(r.get(f[1],e))&&(s[1]=p.toGlobalCoord(p.getExtent()[t?0:1]))}isNaN(l)||(s[0]=l),isNaN(u)||(s[1]=u)}r.setItemLayout(e,s)}var n7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.updateTransform=function(t,a,i){a.eachSeries(function(n){var o=Qa.getMarkerModelFromSeries(n,"markLine");if(o){var s=o.getData(),l=bu(o).from,u=bu(o).to;l.each(function(f){Fc(l,f,!0,n,i),Fc(u,f,!1,n,i)}),s.each(function(f){s.setItemLayout(f,[l.getItemLayout(f),u.getItemLayout(f)])}),this.markerGroupMap.get(n.id).updateLayout()}},this)},e.prototype.renderSeries=function(t,a,i,n){var o=t.coordinateSystem,s=t.id,l=t.getData(),u=this.markerGroupMap,f=u.get(s)||u.set(s,new uy);this.group.add(f.group);var h=o7(o,t,a),v=h.from,c=h.to,p=h.line;bu(a).from=v,bu(a).to=c,a.setData(p);var d=a.get("symbol"),g=a.get("symbolSize"),y=a.get("symbolRotate"),m=a.get("symbolOffset");z(d)||(d=[d,d]),z(g)||(g=[g,g]),z(y)||(y=[y,y]),z(m)||(m=[m,m]),h.from.each(function(S){_(v,S,!0),_(c,S,!1)}),p.each(function(S){var w=p.getItemModel(S).getModel("lineStyle").getLineStyle();p.setItemLayout(S,[v.getItemLayout(S),c.getItemLayout(S)]),w.stroke==null&&(w.stroke=v.getItemVisual(S,"style").fill),p.setItemVisual(S,{fromSymbolKeepAspect:v.getItemVisual(S,"symbolKeepAspect"),fromSymbolOffset:v.getItemVisual(S,"symbolOffset"),fromSymbolRotate:v.getItemVisual(S,"symbolRotate"),fromSymbolSize:v.getItemVisual(S,"symbolSize"),fromSymbol:v.getItemVisual(S,"symbol"),toSymbolKeepAspect:c.getItemVisual(S,"symbolKeepAspect"),toSymbolOffset:c.getItemVisual(S,"symbolOffset"),toSymbolRotate:c.getItemVisual(S,"symbolRotate"),toSymbolSize:c.getItemVisual(S,"symbolSize"),toSymbol:c.getItemVisual(S,"symbol"),style:w})}),f.updateData(p),h.line.eachItemGraphicEl(function(S){at(S).dataModel=a,S.traverse(function(w){at(w).dataModel=a})});function _(S,w,x){var b=S.getItemModel(w);Fc(S,w,x,t,n);var T=b.getModel("itemStyle").getItemStyle();T.fill==null&&(T.fill=fl(l,"color")),S.setItemVisual(w,{symbolKeepAspect:b.get("symbolKeepAspect"),symbolOffset:vt(b.get("symbolOffset",!0),m[x?0:1]),symbolRotate:vt(b.get("symbolRotate",!0),y[x?0:1]),symbolSize:vt(b.get("symbolSize"),g[x?0:1]),symbol:vt(b.get("symbol",!0),d[x?0:1]),style:T})}this.markKeep(f),f.group.silent=a.get("silent")||t.get("silent")},e.type="markLine",e}(Gy);function o7(r,e,t){var a;r?a=G(r&&r.dimensions,function(u){var f=e.getData().getDimensionInfo(e.getData().mapDimension(u))||{};return B(B({},f),{name:u,ordinalMeta:null})}):a=[{name:"value",type:"float"}];var i=new be(a,t),n=new be(a,t),o=new be([],t),s=G(t.get("data"),it(a7,e,r,t));r&&(s=It(s,it(i7,r)));var l=PL(!!r,a);return i.initData(G(s,function(u){return u[0]}),null,l),n.initData(G(s,function(u){return u[1]}),null,l),o.initData(G(s,function(u){return u[2]})),o.hasItemOption=!0,{from:i,to:n,line:o}}var s7=n7;function l7(r){r.registerComponentModel(r7),r.registerComponentView(s7),r.registerPreprocessor(function(e){By(e.series,"markLine")&&(e.markLine=e.markLine||{})})}var u7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.createMarkerModelFromSeries=function(t,a,i){return new e(t,a,i)},e.type="markArea",e.defaultOption={z:1,tooltip:{trigger:"item"},animation:!1,label:{show:!0,position:"top"},itemStyle:{borderWidth:0},emphasis:{label:{show:!0,position:"top"}}},e}(Qa),f7=u7,Tu=bt(),h7=function(r,e,t,a){var i=Js(r,a[0]),n=Js(r,a[1]),o=i.coord,s=n.coord;o[0]=ie(o[0],-1/0),o[1]=ie(o[1],-1/0),s[0]=ie(s[0],1/0),s[1]=ie(s[1],1/0);var l=Hd([{},i,n]);return l.coord=[i.coord,n.coord],l.x0=i.x,l.y0=i.y,l.x1=n.x,l.y1=n.y,l};function Vf(r){return!isNaN(r)&&!isFinite(r)}function uw(r,e,t,a){var i=1-r;return Vf(e[i])&&Vf(t[i])}function v7(r,e){var t=e.coord[0],a=e.coord[1],i={coord:t,x:e.x0,y:e.y0},n={coord:a,x:e.x1,y:e.y1};return un(r,"cartesian2d")?t&&a&&(uw(1,t,a)||uw(0,t,a))?!0:qY(r,i,n):js(r,i)||js(r,n)}function fw(r,e,t,a,i){var n=a.coordinateSystem,o=r.getItemModel(e),s,l=H(o.get(t[0]),i.getWidth()),u=H(o.get(t[1]),i.getHeight());if(!isNaN(l)&&!isNaN(u))s=[l,u];else{if(a.getMarkerPosition)s=a.getMarkerPosition(r.getValues(t,e));else{var f=r.get(t[0],e),h=r.get(t[1],e),v=[f,h];n.clampData&&n.clampData(v,v),s=n.dataToPoint(v,!0)}if(un(n,"cartesian2d")){var c=n.getAxis("x"),p=n.getAxis("y"),f=r.get(t[0],e),h=r.get(t[1],e);Vf(f)?s[0]=c.toGlobalCoord(c.getExtent()[t[0]==="x0"?0:1]):Vf(h)&&(s[1]=p.toGlobalCoord(p.getExtent()[t[1]==="y0"?0:1]))}isNaN(l)||(s[0]=l),isNaN(u)||(s[1]=u)}return s}var hw=[["x0","y0"],["x1","y0"],["x1","y1"],["x0","y1"]],c7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.updateTransform=function(t,a,i){a.eachSeries(function(n){var o=Qa.getMarkerModelFromSeries(n,"markArea");if(o){var s=o.getData();s.each(function(l){var u=G(hw,function(h){return fw(s,l,h,n,i)});s.setItemLayout(l,u);var f=s.getItemGraphicEl(l);f.setShape("points",u)})}},this)},e.prototype.renderSeries=function(t,a,i,n){var o=t.coordinateSystem,s=t.id,l=t.getData(),u=this.markerGroupMap,f=u.get(s)||u.set(s,{group:new rt});this.group.add(f.group),this.markKeep(f);var h=p7(o,t,a);a.setData(h),h.each(function(v){var c=G(hw,function(T){return fw(h,v,T,t,n)}),p=o.getAxis("x").scale,d=o.getAxis("y").scale,g=p.getExtent(),y=d.getExtent(),m=[p.parse(h.get("x0",v)),p.parse(h.get("x1",v))],_=[d.parse(h.get("y0",v)),d.parse(h.get("y1",v))];rr(m),rr(_);var S=!(g[0]>m[1]||g[1]_[1]||y[1]<_[0]),w=!S;h.setItemLayout(v,{points:c,allClipped:w});var x=h.getItemModel(v).getModel("itemStyle").getItemStyle(),b=fl(l,"color");x.fill||(x.fill=b,$(x.fill)&&(x.fill=Ku(x.fill,.4))),x.stroke||(x.stroke=b),h.setItemVisual(v,"style",x)}),h.diff(Tu(f).data).add(function(v){var c=h.getItemLayout(v);if(!c.allClipped){var p=new Ee({shape:{points:c.points}});h.setItemGraphicEl(v,p),f.group.add(p)}}).update(function(v,c){var p=Tu(f).data.getItemGraphicEl(c),d=h.getItemLayout(v);d.allClipped?p&&f.group.remove(p):(p?wt(p,{shape:{points:d.points}},a,v):p=new Ee({shape:{points:d.points}}),h.setItemGraphicEl(v,p),f.group.add(p))}).remove(function(v){var c=Tu(f).data.getItemGraphicEl(v);f.group.remove(c)}).execute(),h.eachItemGraphicEl(function(v,c){var p=h.getItemModel(c),d=h.getItemVisual(c,"style");v.useStyle(h.getItemVisual(c,"style")),me(v,oe(p),{labelFetcher:a,labelDataIndex:c,defaultText:h.getName(c)||"",inheritColor:$(d.fill)?Ku(d.fill,1):"#000"}),fe(v,p),Ut(v,null,null,p.get(["emphasis","disabled"])),at(v).dataModel=a}),Tu(f).data=h,f.group.silent=a.get("silent")||t.get("silent")},e.type="markArea",e}(Gy);function p7(r,e,t){var a,i,n=["x0","y0","x1","y1"];if(r){var o=G(r&&r.dimensions,function(u){var f=e.getData(),h=f.getDimensionInfo(f.mapDimension(u))||{};return B(B({},h),{name:u,ordinalMeta:null})});i=G(n,function(u,f){return{name:u,type:o[f%2].type}}),a=new be(i,t)}else i=[{name:"value",type:"float"}],a=new be(i,t);var s=G(t.get("data"),it(h7,e,r,t));r&&(s=It(s,it(v7,r)));var l=r?function(u,f,h,v){var c=u.coord[Math.floor(v/2)][v%2];return Ga(c,i[v])}:function(u,f,h,v){return Ga(u.value,i[v])};return a.initData(s,null,l),a.hasItemOption=!0,a}var d7=c7;function g7(r){r.registerComponentModel(f7),r.registerComponentView(d7),r.registerPreprocessor(function(e){By(e.series,"markArea")&&(e.markArea=e.markArea||{})})}var y7=function(r,e){if(e==="all")return{type:"all",title:r.getLocaleModel().get(["legend","selector","all"])};if(e==="inverse")return{type:"inverse",title:r.getLocaleModel().get(["legend","selector","inverse"])}},m7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.layoutMode={type:"box",ignoreSize:!0},t}return e.prototype.init=function(t,a,i){this.mergeDefaultAndTheme(t,i),t.selected=t.selected||{},this._updateSelector(t)},e.prototype.mergeOption=function(t,a){r.prototype.mergeOption.call(this,t,a),this._updateSelector(t)},e.prototype._updateSelector=function(t){var a=t.selector,i=this.ecModel;a===!0&&(a=t.selector=["all","inverse"]),z(a)&&A(a,function(n,o){$(n)&&(n={type:n}),a[o]=st(n,y7(i,n.type))})},e.prototype.optionUpdated=function(){this._updateData(this.ecModel);var t=this._data;if(t[0]&&this.get("selectedMode")==="single"){for(var a=!1,i=0;i=0},e.prototype.getOrient=function(){return this.get("orient")==="vertical"?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},e.type="legend.plain",e.dependencies=["series"],e.defaultOption={z:4,show:!0,orient:"horizontal",left:"center",top:0,align:"auto",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemGap:10,itemWidth:25,itemHeight:14,symbolRotate:"inherit",symbolKeepAspect:!0,inactiveColor:"#ccc",inactiveBorderColor:"#ccc",inactiveBorderWidth:"auto",itemStyle:{color:"inherit",opacity:"inherit",borderColor:"inherit",borderWidth:"auto",borderCap:"inherit",borderJoin:"inherit",borderDashOffset:"inherit",borderMiterLimit:"inherit"},lineStyle:{width:"auto",color:"inherit",inactiveColor:"#ccc",inactiveWidth:2,opacity:"inherit",type:"inherit",cap:"inherit",join:"inherit",dashOffset:"inherit",miterLimit:"inherit"},textStyle:{color:"#333"},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:"sans-serif",color:"#666",borderWidth:1,borderColor:"#666"},emphasis:{selectorLabel:{show:!0,color:"#eee",backgroundColor:"#666"}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1}},e}(St),Pd=m7,Ln=it,Rd=A,Cu=rt,_7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.newlineDisabled=!1,t}return e.prototype.init=function(){this.group.add(this._contentGroup=new Cu),this.group.add(this._selectorGroup=new Cu),this._isFirstRender=!0},e.prototype.getContentGroup=function(){return this._contentGroup},e.prototype.getSelectorGroup=function(){return this._selectorGroup},e.prototype.render=function(t,a,i){var n=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),!!t.get("show",!0)){var o=t.get("align"),s=t.get("orient");(!o||o==="auto")&&(o=t.get("left")==="right"&&s==="vertical"?"right":"left");var l=t.get("selector",!0),u=t.get("selectorPosition",!0);l&&(!u||u==="auto")&&(u=s==="horizontal"?"end":"start"),this.renderInner(o,t,a,i,l,s,u);var f=t.getBoxLayoutParams(),h={width:i.getWidth(),height:i.getHeight()},v=t.get("padding"),c=jt(f,h,v),p=this.layoutInner(t,o,c,n,l,u),d=jt(Q({width:p.width,height:p.height},f),h,v);this.group.x=d.x-p.x,this.group.y=d.y-p.y,this.group.markRedraw(),this.group.add(this._backgroundEl=_L(p,t))}},e.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},e.prototype.renderInner=function(t,a,i,n,o,s,l){var u=this.getContentGroup(),f=q(),h=a.get("selectedMode"),v=[];i.eachRawSeries(function(c){!c.get("legendHoverLink")&&v.push(c.id)}),Rd(a.getData(),function(c,p){var d=c.get("name");if(!this.newlineDisabled&&(d===""||d===` +`)){var g=new Cu;g.newline=!0,u.add(g);return}var y=i.getSeriesByName(d)[0];if(!f.get(d))if(y){var m=y.getData(),_=m.getVisual("legendLineStyle")||{},S=m.getVisual("legendIcon"),w=m.getVisual("style"),x=this._createItem(y,d,p,c,a,t,_,w,S,h,n);x.on("click",Ln(vw,d,null,n,v)).on("mouseover",Ln(Ed,y.name,null,n,v)).on("mouseout",Ln(kd,y.name,null,n,v)),f.set(d,!0)}else i.eachRawSeries(function(b){if(!f.get(d)&&b.legendVisualProvider){var T=b.legendVisualProvider;if(!T.containName(d))return;var C=T.indexOfName(d),M=T.getItemVisual(C,"style"),D=T.getItemVisual(C,"legendIcon"),L=ze(M.fill);L&&L[3]===0&&(L[3]=.2,M=B(B({},M),{fill:ea(L,"rgba")}));var I=this._createItem(b,d,p,c,a,t,{},M,D,h,n);I.on("click",Ln(vw,null,d,n,v)).on("mouseover",Ln(Ed,null,d,n,v)).on("mouseout",Ln(kd,null,d,n,v)),f.set(d,!0)}},this)},this),o&&this._createSelector(o,a,n,s,l)},e.prototype._createSelector=function(t,a,i,n,o){var s=this.getSelectorGroup();Rd(t,function(u){var f=u.type,h=new Tt({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){i.dispatchAction({type:f==="all"?"legendAllSelect":"legendInverseSelect"})}});s.add(h);var v=a.getModel("selectorLabel"),c=a.getModel(["emphasis","selectorLabel"]);me(h,{normal:v,emphasis:c},{defaultText:u.title}),Ui(h)})},e.prototype._createItem=function(t,a,i,n,o,s,l,u,f,h,v){var c=t.visualDrawType,p=o.get("itemWidth"),d=o.get("itemHeight"),g=o.isSelected(a),y=n.get("symbolRotate"),m=n.get("symbolKeepAspect"),_=n.get("icon");f=_||f||"roundRect";var S=S7(f,n,l,u,c,g,v),w=new Cu,x=n.getModel("textStyle");if(K(t.getLegendIcon)&&(!_||_==="inherit"))w.add(t.getLegendIcon({itemWidth:p,itemHeight:d,icon:f,iconRotate:y,itemStyle:S.itemStyle,lineStyle:S.lineStyle,symbolKeepAspect:m}));else{var b=_==="inherit"&&t.getData().getVisual("symbol")?y==="inherit"?t.getData().getVisual("symbolRotate"):y:0;w.add(x7({itemWidth:p,itemHeight:d,icon:f,iconRotate:b,itemStyle:S.itemStyle,lineStyle:S.lineStyle,symbolKeepAspect:m}))}var T=s==="left"?p+5:-5,C=s,M=o.get("formatter"),D=a;$(M)&&M?D=M.replace("{name}",a!=null?a:""):K(M)&&(D=M(a));var L=n.get("inactiveColor");w.add(new Tt({style:Bt(x,{text:D,x:T,y:d/2,fill:g?x.getTextColor():L,align:C,verticalAlign:"middle"})}));var I=new _t({shape:w.getBoundingRect(),invisible:!0}),P=n.getModel("tooltip");return P.get("show")&&fo({el:I,componentModel:o,itemName:a,itemTooltipOption:P.option}),w.add(I),w.eachChild(function(R){R.silent=!0}),I.silent=!h,this.getContentGroup().add(w),Ui(w),w.__legendDataIndex=i,w},e.prototype.layoutInner=function(t,a,i,n,o,s){var l=this.getContentGroup(),u=this.getSelectorGroup();Zi(t.get("orient"),l,t.get("itemGap"),i.width,i.height);var f=l.getBoundingRect(),h=[-f.x,-f.y];if(u.markRedraw(),l.markRedraw(),o){Zi("horizontal",u,t.get("selectorItemGap",!0));var v=u.getBoundingRect(),c=[-v.x,-v.y],p=t.get("selectorButtonGap",!0),d=t.getOrient().index,g=d===0?"width":"height",y=d===0?"height":"width",m=d===0?"y":"x";s==="end"?c[d]+=f[g]+p:h[d]+=v[g]+p,c[1-d]+=f[y]/2-v[y]/2,u.x=c[0],u.y=c[1],l.x=h[0],l.y=h[1];var _={x:0,y:0};return _[g]=f[g]+p+v[g],_[y]=Math.max(f[y],v[y]),_[m]=Math.min(0,v[m]+c[1-d]),_}else return l.x=h[0],l.y=h[1],this.group.getBoundingRect()},e.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},e.type="legend.plain",e}(Ht);function S7(r,e,t,a,i,n,o){function s(g,y){g.lineWidth==="auto"&&(g.lineWidth=y.lineWidth>0?2:0),Rd(g,function(m,_){g[_]==="inherit"&&(g[_]=y[_])})}var l=e.getModel("itemStyle"),u=l.getItemStyle(),f=r.lastIndexOf("empty",0)===0?"fill":"stroke",h=l.getShallow("decal");u.decal=!h||h==="inherit"?a.decal:Jn(h,o),u.fill==="inherit"&&(u.fill=a[i]),u.stroke==="inherit"&&(u.stroke=a[f]),u.opacity==="inherit"&&(u.opacity=(i==="fill"?a:t).opacity),s(u,a);var v=e.getModel("lineStyle"),c=v.getLineStyle();if(s(c,t),u.fill==="auto"&&(u.fill=a.fill),u.stroke==="auto"&&(u.stroke=a.fill),c.stroke==="auto"&&(c.stroke=a.fill),!n){var p=e.get("inactiveBorderWidth"),d=u[f];u.lineWidth=p==="auto"?a.lineWidth>0&&d?2:0:u.lineWidth,u.fill=e.get("inactiveColor"),u.stroke=e.get("inactiveBorderColor"),c.stroke=v.get("inactiveColor"),c.lineWidth=v.get("inactiveWidth")}return{itemStyle:u,lineStyle:c}}function x7(r){var e=r.icon||"roundRect",t=Kt(e,0,0,r.itemWidth,r.itemHeight,r.itemStyle.fill,r.symbolKeepAspect);return t.setStyle(r.itemStyle),t.rotation=(r.iconRotate||0)*Math.PI/180,t.setOrigin([r.itemWidth/2,r.itemHeight/2]),e.indexOf("empty")>-1&&(t.style.stroke=t.style.fill,t.style.fill="#fff",t.style.lineWidth=2),t}function vw(r,e,t,a){kd(r,e,t,a),t.dispatchAction({type:"legendToggleSelect",name:r!=null?r:e}),Ed(r,e,t,a)}function RL(r){for(var e=r.getZr().storage.getDisplayList(),t,a=0,i=e.length;ai[o],g=[-c.x,-c.y];a||(g[n]=f[u]);var y=[0,0],m=[-p.x,-p.y],_=vt(t.get("pageButtonGap",!0),t.get("itemGap",!0));if(d){var S=t.get("pageButtonPosition",!0);S==="end"?m[n]+=i[o]-p[o]:y[n]+=p[o]+_}m[1-n]+=c[s]/2-p[s]/2,f.setPosition(g),h.setPosition(y),v.setPosition(m);var w={x:0,y:0};if(w[o]=d?i[o]:c[o],w[s]=Math.max(c[s],p[s]),w[l]=Math.min(0,p[l]+m[1-n]),h.__rectSize=i[o],d){var x={x:0,y:0};x[o]=Math.max(i[o]-p[o]-_,0),x[s]=w[s],h.setClipPath(new _t({shape:x})),h.__rectSize=x[o]}else v.eachChild(function(T){T.attr({invisible:!0,silent:!0})});var b=this._getPageInfo(t);return b.pageIndex!=null&&wt(f,{x:b.contentPosition[0],y:b.contentPosition[1]},d?t:null),this._updatePageInfoView(t,b),w},e.prototype._pageGo=function(t,a,i){var n=this._getPageInfo(a)[t];n!=null&&i.dispatchAction({type:"legendScroll",scrollDataIndex:n,legendId:a.id})},e.prototype._updatePageInfoView=function(t,a){var i=this._controllerGroup;A(["pagePrev","pageNext"],function(f){var h=f+"DataIndex",v=a[h]!=null,c=i.childOfName(f);c&&(c.setStyle("fill",v?t.get("pageIconColor",!0):t.get("pageIconInactiveColor",!0)),c.cursor=v?"pointer":"default")});var n=i.childOfName("pageText"),o=t.get("pageFormatter"),s=a.pageIndex,l=s!=null?s+1:0,u=a.pageCount;n&&o&&n.setStyle("text",$(o)?o.replace("{current}",l==null?"":l+"").replace("{total}",u==null?"":u+""):o({current:l,total:u}))},e.prototype._getPageInfo=function(t){var a=t.get("scrollDataIndex",!0),i=this.getContentGroup(),n=this._containerGroup.__rectSize,o=t.getOrient().index,s=Hc[o],l=Wc[o],u=this._findTargetItemIndex(a),f=i.children(),h=f[u],v=f.length,c=v?1:0,p={contentPosition:[i.x,i.y],pageCount:c,pageIndex:c-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!h)return p;var d=S(h);p.contentPosition[o]=-d.s;for(var g=u+1,y=d,m=d,_=null;g<=v;++g)_=S(f[g]),(!_&&m.e>y.s+n||_&&!w(_,y.s))&&(m.i>y.i?y=m:y=_,y&&(p.pageNextDataIndex==null&&(p.pageNextDataIndex=y.i),++p.pageCount)),m=_;for(var g=u-1,y=d,m=d,_=null;g>=-1;--g)_=S(f[g]),(!_||!w(m,_.s))&&y.i=b&&x.s<=b+n}},e.prototype._findTargetItemIndex=function(t){if(!this._showController)return 0;var a,i=this.getContentGroup(),n;return i.eachChild(function(o,s){var l=o.__legendDataIndex;n==null&&l!=null&&(n=s),l===t&&(a=s)}),a!=null?a:n},e.type="legend.scroll",e}(EL),M7=A7;function D7(r){r.registerAction("legendScroll","legendscroll",function(e,t){var a=e.scrollDataIndex;a!=null&&t.eachComponent({mainType:"legend",subType:"scroll",query:e},function(i){i.setScrollDataIndex(a)})})}function L7(r){ct(kL),r.registerComponentModel(C7),r.registerComponentView(M7),D7(r)}function I7(r){ct(kL),ct(L7)}var P7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="dataZoom.inside",e.defaultOption=ja(Qs.defaultOption,{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),e}(Qs),R7=P7,Fy=bt();function E7(r,e,t){Fy(r).coordSysRecordMap.each(function(a){var i=a.dataZoomInfoMap.get(e.uid);i&&(i.getRange=t)})}function k7(r,e){for(var t=Fy(r).coordSysRecordMap,a=t.keys(),i=0;ia[t+e]&&(e=s),i=i&&o.get("preventDefaultMouseMove",!0)}),{controlType:e,opt:{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!0,preventDefaultMouseMove:!!i}}}function z7(r){r.registerProcessor(r.PRIORITY.PROCESSOR.FILTER,function(e,t){var a=Fy(t),i=a.coordSysRecordMap||(a.coordSysRecordMap=q());i.each(function(n){n.dataZoomInfoMap=null}),e.eachComponent({mainType:"dataZoom",subType:"inside"},function(n){var o=gL(n);A(o.infoList,function(s){var l=s.model.uid,u=i.get(l)||i.set(l,O7(t,s.model)),f=u.dataZoomInfoMap||(u.dataZoomInfoMap=q());f.set(n.uid,{dzReferCoordSysInfo:s,model:n,getRange:null})})}),i.each(function(n){var o=n.controller,s,l=n.dataZoomInfoMap;if(l){var u=l.keys()[0];u!=null&&(s=l.get(u))}if(!s){OL(i,n);return}var f=B7(l);o.enable(f.controlType,f.opt),o.setPointerChecker(n.containsPoint),_o(n,"dispatchAction",s.model.get("throttle",!0),"fixRate")})})}var G7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type="dataZoom.inside",t}return e.prototype.render=function(t,a,i){if(r.prototype.render.apply(this,arguments),t.noTarget()){this._clear();return}this.range=t.getPercentRange(),E7(i,t,{pan:U($c.pan,this),zoom:U($c.zoom,this),scrollMove:U($c.scrollMove,this)})},e.prototype.dispose=function(){this._clear(),r.prototype.dispose.apply(this,arguments)},e.prototype._clear=function(){k7(this.api,this.dataZoomModel),this.range=null},e.type="dataZoom.inside",e}(Ry),$c={zoom:function(r,e,t,a){var i=this.range,n=i.slice(),o=r.axisModels[0];if(!!o){var s=Uc[e](null,[a.originX,a.originY],o,t,r),l=(s.signal>0?s.pixelStart+s.pixelLength-s.pixel:s.pixel-s.pixelStart)/s.pixelLength*(n[1]-n[0])+n[0],u=Math.max(1/a.scale,0);n[0]=(n[0]-l)*u+l,n[1]=(n[1]-l)*u+l;var f=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();if(hn(0,n,[0,100],0,f.minSpan,f.maxSpan),this.range=n,i[0]!==n[0]||i[1]!==n[1])return n}},pan:dw(function(r,e,t,a,i,n){var o=Uc[a]([n.oldX,n.oldY],[n.newX,n.newY],e,i,t);return o.signal*(r[1]-r[0])*o.pixel/o.pixelLength}),scrollMove:dw(function(r,e,t,a,i,n){var o=Uc[a]([0,0],[n.scrollDelta,n.scrollDelta],e,i,t);return o.signal*(r[1]-r[0])*n.scrollDelta})};function dw(r){return function(e,t,a,i){var n=this.range,o=n.slice(),s=e.axisModels[0];if(!!s){var l=r(o,s,e,t,a,i);if(hn(l,o,[0,100],"all"),this.range=o,n[0]!==o[0]||n[1]!==o[1])return o}}}var Uc={grid:function(r,e,t,a,i){var n=t.axis,o={},s=i.model.coordinateSystem.getRect();return r=r||[0,0],n.dim==="x"?(o.pixel=e[0]-r[0],o.pixelLength=s.width,o.pixelStart=s.x,o.signal=n.inverse?1:-1):(o.pixel=e[1]-r[1],o.pixelLength=s.height,o.pixelStart=s.y,o.signal=n.inverse?-1:1),o},polar:function(r,e,t,a,i){var n=t.axis,o={},s=i.model.coordinateSystem,l=s.getRadiusAxis().getExtent(),u=s.getAngleAxis().getExtent();return r=r?s.pointToCoord(r):[0,0],e=s.pointToCoord(e),t.mainType==="radiusAxis"?(o.pixel=e[0]-r[0],o.pixelLength=l[1]-l[0],o.pixelStart=l[0],o.signal=n.inverse?1:-1):(o.pixel=e[1]-r[1],o.pixelLength=u[1]-u[0],o.pixelStart=u[0],o.signal=n.inverse?-1:1),o},singleAxis:function(r,e,t,a,i){var n=t.axis,o=i.model.coordinateSystem.getRect(),s={};return r=r||[0,0],n.orient==="horizontal"?(s.pixel=e[0]-r[0],s.pixelLength=o.width,s.pixelStart=o.x,s.signal=n.inverse?1:-1):(s.pixel=e[1]-r[1],s.pixelLength=o.height,s.pixelStart=o.y,s.signal=n.inverse?-1:1),s}},F7=G7;function NL(r){Ey(r),r.registerComponentModel(R7),r.registerComponentView(F7),z7(r)}var H7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.type="dataZoom.slider",e.layoutMode="box",e.defaultOption=ja(Qs.defaultOption,{show:!0,right:"ph",top:"ph",width:"ph",height:"ph",left:null,bottom:null,borderColor:"#d2dbee",borderRadius:3,backgroundColor:"rgba(47,69,84,0)",dataBackground:{lineStyle:{color:"#d2dbee",width:.5},areaStyle:{color:"#d2dbee",opacity:.2}},selectedDataBackground:{lineStyle:{color:"#8fb0f7",width:.5},areaStyle:{color:"#8fb0f7",opacity:.2}},fillerColor:"rgba(135,175,274,0.2)",handleIcon:"path://M-9.35,34.56V42m0-40V9.5m-2,0h4a2,2,0,0,1,2,2v21a2,2,0,0,1-2,2h-4a2,2,0,0,1-2-2v-21A2,2,0,0,1-11.35,9.5Z",handleSize:"100%",handleStyle:{color:"#fff",borderColor:"#ACB8D1"},moveHandleSize:7,moveHandleIcon:"path://M-320.9-50L-320.9-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-348-41-339-50-320.9-50z M-212.3-50L-212.3-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-239.4-41-230.4-50-212.3-50z M-103.7-50L-103.7-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-130.9-41-121.8-50-103.7-50z",moveHandleStyle:{color:"#D2DBEE",opacity:.7},showDetail:!0,showDataShadow:"auto",realtime:!0,zoomLock:!1,textStyle:{color:"#6E7079"},brushSelect:!0,brushStyle:{color:"rgba(135,175,274,0.15)"},emphasis:{handleStyle:{borderColor:"#8FB0F7"},moveHandleStyle:{color:"#8FB0F7"}}}),e}(Qs),W7=H7,Ko=_t,gw=7,$7=1,Yc=30,U7=7,Qo="horizontal",yw="vertical",Y7=5,Z7=["line","bar","candlestick","scatter"],X7={easing:"cubicOut",duration:100,delay:0},q7=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._displayables={},t}return e.prototype.init=function(t,a){this.api=a,this._onBrush=U(this._onBrush,this),this._onBrushEnd=U(this._onBrushEnd,this)},e.prototype.render=function(t,a,i,n){if(r.prototype.render.apply(this,arguments),_o(this,"_dispatchZoomAction",t.get("throttle"),"fixRate"),this._orient=t.getOrient(),t.get("show")===!1){this.group.removeAll();return}if(t.noTarget()){this._clear(),this.group.removeAll();return}(!n||n.type!=="dataZoom"||n.from!==this.uid)&&this._buildView(),this._updateView()},e.prototype.dispose=function(){this._clear(),r.prototype.dispose.apply(this,arguments)},e.prototype._clear=function(){zs(this,"_dispatchZoomAction");var t=this.api.getZr();t.off("mousemove",this._onBrush),t.off("mouseup",this._onBrushEnd)},e.prototype._buildView=function(){var t=this.group;t.removeAll(),this._brushing=!1,this._displayables.brushRect=null,this._resetLocation(),this._resetInterval();var a=this._displayables.sliderGroup=new rt;this._renderBackground(),this._renderHandle(),this._renderDataShadow(),t.add(a),this._positionGroup()},e.prototype._resetLocation=function(){var t=this.dataZoomModel,a=this.api,i=t.get("brushSelect"),n=i?U7:0,o=this._findCoordRect(),s={width:a.getWidth(),height:a.getHeight()},l=this._orient===Qo?{right:s.width-o.x-o.width,top:s.height-Yc-gw-n,width:o.width,height:Yc}:{right:gw,top:o.y,width:Yc,height:o.height},u=po(t.option);A(["right","top","width","height"],function(h){u[h]==="ph"&&(u[h]=l[h])});var f=jt(u,s);this._location={x:f.x,y:f.y},this._size=[f.width,f.height],this._orient===yw&&this._size.reverse()},e.prototype._positionGroup=function(){var t=this.group,a=this._location,i=this._orient,n=this.dataZoomModel.getFirstTargetAxisModel(),o=n&&n.get("inverse"),s=this._displayables.sliderGroup,l=(this._dataShadowInfo||{}).otherAxisInverse;s.attr(i===Qo&&!o?{scaleY:l?1:-1,scaleX:1}:i===Qo&&o?{scaleY:l?1:-1,scaleX:-1}:i===yw&&!o?{scaleY:l?-1:1,scaleX:1,rotation:Math.PI/2}:{scaleY:l?-1:1,scaleX:-1,rotation:Math.PI/2});var u=t.getBoundingRect([s]);t.x=a.x-u.x,t.y=a.y-u.y,t.markRedraw()},e.prototype._getViewExtent=function(){return[0,this._size[0]]},e.prototype._renderBackground=function(){var t=this.dataZoomModel,a=this._size,i=this._displayables.sliderGroup,n=t.get("brushSelect");i.add(new Ko({silent:!0,shape:{x:0,y:0,width:a[0],height:a[1]},style:{fill:t.get("backgroundColor")},z2:-40}));var o=new Ko({shape:{x:0,y:0,width:a[0],height:a[1]},style:{fill:"transparent"},z2:0,onclick:U(this._onClickPanel,this)}),s=this.api.getZr();n?(o.on("mousedown",this._onBrushStart,this),o.cursor="crosshair",s.on("mousemove",this._onBrush),s.on("mouseup",this._onBrushEnd)):(s.off("mousemove",this._onBrush),s.off("mouseup",this._onBrushEnd)),i.add(o)},e.prototype._renderDataShadow=function(){var t=this._dataShadowInfo=this._prepareDataShadowInfo();if(this._displayables.dataShadowSegs=[],!t)return;var a=this._size,i=this._shadowSize||[],n=t.series,o=n.getRawData(),s=n.getShadowDim?n.getShadowDim():t.otherDim;if(s==null)return;var l=this._shadowPolygonPts,u=this._shadowPolylinePts;if(o!==this._shadowData||s!==this._shadowDim||a[0]!==i[0]||a[1]!==i[1]){var f=o.getDataExtent(s),h=(f[1]-f[0])*.3;f=[f[0]-h,f[1]+h];var v=[0,a[1]],c=[0,a[0]],p=[[a[0],0],[0,0]],d=[],g=c[1]/(o.count()-1),y=0,m=Math.round(o.count()/a[0]),_;o.each([s],function(T,C){if(m>0&&C%m){y+=g;return}var M=T==null||isNaN(T)||T==="",D=M?0:Lt(T,f,v,!0);M&&!_&&C?(p.push([p[p.length-1][0],0]),d.push([d[d.length-1][0],0])):!M&&_&&(p.push([y,0]),d.push([y,0])),p.push([y,D]),d.push([y,D]),y+=g,_=M}),l=this._shadowPolygonPts=p,u=this._shadowPolylinePts=d}this._shadowData=o,this._shadowDim=s,this._shadowSize=[a[0],a[1]];var S=this.dataZoomModel;function w(T){var C=S.getModel(T?"selectedDataBackground":"dataBackground"),M=new rt,D=new Ee({shape:{points:l},segmentIgnoreThreshold:1,style:C.getModel("areaStyle").getAreaStyle(),silent:!0,z2:-20}),L=new ke({shape:{points:u},segmentIgnoreThreshold:1,style:C.getModel("lineStyle").getLineStyle(),silent:!0,z2:-19});return M.add(D),M.add(L),M}for(var x=0;x<3;x++){var b=w(x===1);this._displayables.sliderGroup.add(b),this._displayables.dataShadowSegs.push(b)}},e.prototype._prepareDataShadowInfo=function(){var t=this.dataZoomModel,a=t.get("showDataShadow");if(a!==!1){var i,n=this.ecModel;return t.eachTargetAxis(function(o,s){var l=t.getAxisProxy(o,s).getTargetSeriesModels();A(l,function(u){if(!i&&!(a!==!0&&ht(Z7,u.get("type"))<0)){var f=n.getComponent(Va(o),s).axis,h=K7(o),v,c=u.coordinateSystem;h!=null&&c.getOtherAxis&&(v=c.getOtherAxis(f).inverse),h=u.getData().mapDimension(h),i={thisAxis:f,series:u,thisDim:o,otherDim:h,otherAxisInverse:v}}},this)},this),i}},e.prototype._renderHandle=function(){var t=this.group,a=this._displayables,i=a.handles=[null,null],n=a.handleLabels=[null,null],o=this._displayables.sliderGroup,s=this._size,l=this.dataZoomModel,u=this.api,f=l.get("borderRadius")||0,h=l.get("brushSelect"),v=a.filler=new Ko({silent:h,style:{fill:l.get("fillerColor")},textConfig:{position:"inside"}});o.add(v),o.add(new Ko({silent:!0,subPixelOptimize:!0,shape:{x:0,y:0,width:s[0],height:s[1],r:f},style:{stroke:l.get("dataBackgroundColor")||l.get("borderColor"),lineWidth:$7,fill:"rgba(0,0,0,0)"}})),A([0,1],function(_){var S=l.get("handleIcon");!cf[S]&&S.indexOf("path://")<0&&S.indexOf("image://")<0&&(S="path://"+S);var w=Kt(S,-1,0,2,2,null,!0);w.attr({cursor:mw(this._orient),draggable:!0,drift:U(this._onDragMove,this,_),ondragend:U(this._onDragEnd,this),onmouseover:U(this._showDataInfo,this,!0),onmouseout:U(this._showDataInfo,this,!1),z2:5});var x=w.getBoundingRect(),b=l.get("handleSize");this._handleHeight=H(b,this._size[1]),this._handleWidth=x.width/x.height*this._handleHeight,w.setStyle(l.getModel("handleStyle").getItemStyle()),w.style.strokeNoScale=!0,w.rectHover=!0,w.ensureState("emphasis").style=l.getModel(["emphasis","handleStyle"]).getItemStyle(),Ui(w);var T=l.get("handleColor");T!=null&&(w.style.fill=T),o.add(i[_]=w);var C=l.getModel("textStyle");t.add(n[_]=new Tt({silent:!0,invisible:!0,style:Bt(C,{x:0,y:0,text:"",verticalAlign:"middle",align:"center",fill:C.getTextColor(),font:C.getFont()}),z2:10}))},this);var c=v;if(h){var p=H(l.get("moveHandleSize"),s[1]),d=a.moveHandle=new _t({style:l.getModel("moveHandleStyle").getItemStyle(),silent:!0,shape:{r:[0,0,2,2],y:s[1]-.5,height:p}}),g=p*.8,y=a.moveHandleIcon=Kt(l.get("moveHandleIcon"),-g/2,-g/2,g,g,"#fff",!0);y.silent=!0,y.y=s[1]+p/2-.5,d.ensureState("emphasis").style=l.getModel(["emphasis","moveHandleStyle"]).getItemStyle();var m=Math.min(s[1]/2,Math.max(p,10));c=a.moveZone=new _t({invisible:!0,shape:{y:s[1]-m,height:p+m}}),c.on("mouseover",function(){u.enterEmphasis(d)}).on("mouseout",function(){u.leaveEmphasis(d)}),o.add(d),o.add(y),o.add(c)}c.attr({draggable:!0,cursor:mw(this._orient),drift:U(this._onDragMove,this,"all"),ondragstart:U(this._showDataInfo,this,!0),ondragend:U(this._onDragEnd,this),onmouseover:U(this._showDataInfo,this,!0),onmouseout:U(this._showDataInfo,this,!1)})},e.prototype._resetInterval=function(){var t=this._range=this.dataZoomModel.getPercentRange(),a=this._getViewExtent();this._handleEnds=[Lt(t[0],[0,100],a,!0),Lt(t[1],[0,100],a,!0)]},e.prototype._updateInterval=function(t,a){var i=this.dataZoomModel,n=this._handleEnds,o=this._getViewExtent(),s=i.findRepresentativeAxisProxy().getMinMaxSpan(),l=[0,100];hn(a,n,o,i.get("zoomLock")?"all":t,s.minSpan!=null?Lt(s.minSpan,l,o,!0):null,s.maxSpan!=null?Lt(s.maxSpan,l,o,!0):null);var u=this._range,f=this._range=rr([Lt(n[0],o,l,!0),Lt(n[1],o,l,!0)]);return!u||u[0]!==f[0]||u[1]!==f[1]},e.prototype._updateView=function(t){var a=this._displayables,i=this._handleEnds,n=rr(i.slice()),o=this._size;A([0,1],function(c){var p=a.handles[c],d=this._handleHeight;p.attr({scaleX:d/2,scaleY:d/2,x:i[c]+(c?-1:1),y:o[1]/2-d/2})},this),a.filler.setShape({x:n[0],y:0,width:n[1]-n[0],height:o[1]});var s={x:n[0],width:n[1]-n[0]};a.moveHandle&&(a.moveHandle.setShape(s),a.moveZone.setShape(s),a.moveZone.getBoundingRect(),a.moveHandleIcon&&a.moveHandleIcon.attr("x",s.x+s.width/2));for(var l=a.dataShadowSegs,u=[0,n[0],n[1],o[0]],f=0;fa[0]||i[1]<0||i[1]>a[1])){var n=this._handleEnds,o=(n[0]+n[1])/2,s=this._updateInterval("all",i[0]-o);this._updateView(),s&&this._dispatchZoomAction(!1)}},e.prototype._onBrushStart=function(t){var a=t.offsetX,i=t.offsetY;this._brushStart=new ot(a,i),this._brushing=!0,this._brushStartTime=+new Date},e.prototype._onBrushEnd=function(t){if(!!this._brushing){var a=this._displayables.brushRect;if(this._brushing=!1,!!a){a.attr("ignore",!0);var i=a.shape,n=+new Date;if(!(n-this._brushStartTime<200&&Math.abs(i.width)<5)){var o=this._getViewExtent(),s=[0,100];this._range=rr([Lt(i.x,o,s,!0),Lt(i.x+i.width,o,s,!0)]),this._handleEnds=[i.x,i.x+i.width],this._updateView(),this._dispatchZoomAction(!1)}}}},e.prototype._onBrush=function(t){this._brushing&&(na(t.event),this._updateBrushRect(t.offsetX,t.offsetY))},e.prototype._updateBrushRect=function(t,a){var i=this._displayables,n=this.dataZoomModel,o=i.brushRect;o||(o=i.brushRect=new Ko({silent:!0,style:n.getModel("brushStyle").getItemStyle()}),i.sliderGroup.add(o)),o.attr("ignore",!1);var s=this._brushStart,l=this._displayables.sliderGroup,u=l.transformCoordToLocal(t,a),f=l.transformCoordToLocal(s.x,s.y),h=this._size;u[0]=Math.max(Math.min(h[0],u[0]),0),o.setShape({x:f[0],y:0,width:u[0]-f[0],height:h[1]})},e.prototype._dispatchZoomAction=function(t){var a=this._range;this.api.dispatchAction({type:"dataZoom",from:this.uid,dataZoomId:this.dataZoomModel.id,animation:t?X7:null,start:a[0],end:a[1]})},e.prototype._findCoordRect=function(){var t,a=gL(this.dataZoomModel).infoList;if(!t&&a.length){var i=a[0].model.coordinateSystem;t=i.getRect&&i.getRect()}if(!t){var n=this.api.getWidth(),o=this.api.getHeight();t={x:n*.2,y:o*.2,width:n*.6,height:o*.6}}return t},e.type="dataZoom.slider",e}(Ry);function K7(r){var e={x:"y",y:"x",radius:"angle",angle:"radius"};return e[r]}function mw(r){return r==="vertical"?"ns-resize":"ew-resize"}var Q7=q7;function VL(r){r.registerComponentModel(W7),r.registerComponentView(Q7),Ey(r)}function J7(r){ct(NL),ct(VL)}var j7={get:function(r,e,t){var a=j((t9[r]||{})[e]);return t&&z(a)?a[a.length-1]:a}},t9={color:{active:["#006edd","#e0ffff"],inactive:["rgba(0,0,0,0)"]},colorHue:{active:[0,360],inactive:[0,0]},colorSaturation:{active:[.3,1],inactive:[0,0]},colorLightness:{active:[.9,.5],inactive:[0,0]},colorAlpha:{active:[.3,1],inactive:[0,0]},opacity:{active:[.3,1],inactive:[0,0]},symbol:{active:["circle","roundRect","diamond"],inactive:["none"]},symbolSize:{active:[10,50],inactive:[0,0]}},BL=j7,_w=ue.mapVisual,e9=ue.eachVisual,r9=z,Sw=A,a9=rr,i9=Lt,n9=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t.stateList=["inRange","outOfRange"],t.replacableOptionKeys=["inRange","outOfRange","target","controller","color"],t.layoutMode={type:"box",ignoreSize:!0},t.dataBound=[-1/0,1/0],t.targetVisuals={},t.controllerVisuals={},t}return e.prototype.init=function(t,a,i){this.mergeDefaultAndTheme(t,i)},e.prototype.optionUpdated=function(t,a){var i=this.option;!a&&AL(i,t,this.replacableOptionKeys),this.textStyleModel=this.getModel("textStyle"),this.resetItemSize(),this.completeVisualOption()},e.prototype.resetVisual=function(t){var a=this.stateList;t=U(t,this),this.controllerVisuals=Dd(this.option.controller,a,t),this.targetVisuals=Dd(this.option.target,a,t)},e.prototype.getItemSymbol=function(){return null},e.prototype.getTargetSeriesIndices=function(){var t=this.option.seriesIndex,a=[];return t==null||t==="all"?this.ecModel.eachSeries(function(i,n){a.push(n)}):a=Pt(t),a},e.prototype.eachTargetSeries=function(t,a){A(this.getTargetSeriesIndices(),function(i){var n=this.ecModel.getSeriesByIndex(i);n&&t.call(a,n)},this)},e.prototype.isTargetSeries=function(t){var a=!1;return this.eachTargetSeries(function(i){i===t&&(a=!0)}),a},e.prototype.formatValueText=function(t,a,i){var n=this.option,o=n.precision,s=this.dataBound,l=n.formatter,u;i=i||["<",">"],z(t)&&(t=t.slice(),u=!0);var f=a?t:u?[h(t[0]),h(t[1])]:h(t);if($(l))return l.replace("{value}",u?f[0]:f).replace("{value2}",u?f[1]:f);if(K(l))return u?l(t[0],t[1]):l(t);if(u)return t[0]===s[0]?i[0]+" "+f[1]:t[1]===s[1]?i[1]+" "+f[0]:f[0]+" - "+f[1];return f;function h(v){return v===s[0]?"min":v===s[1]?"max":(+v).toFixed(Math.min(o,20))}},e.prototype.resetExtent=function(){var t=this.option,a=a9([t.min,t.max]);this._dataExtent=a},e.prototype.getDataDimensionIndex=function(t){var a=this.option.dimension;if(a!=null)return t.getDimensionIndex(a);for(var i=t.dimensions,n=i.length-1;n>=0;n--){var o=i[n],s=t.getDimensionInfo(o);if(!s.isCalculationCoord)return s.storeDimIndex}},e.prototype.getExtent=function(){return this._dataExtent.slice()},e.prototype.completeVisualOption=function(){var t=this.ecModel,a=this.option,i={inRange:a.inRange,outOfRange:a.outOfRange},n=a.target||(a.target={}),o=a.controller||(a.controller={});st(n,i),st(o,i);var s=this.isCategory();l.call(this,n),l.call(this,o),u.call(this,n,"inRange","outOfRange"),f.call(this,o);function l(h){r9(a.color)&&!h.inRange&&(h.inRange={color:a.color.slice().reverse()}),h.inRange=h.inRange||{color:t.get("gradientColor")}}function u(h,v,c){var p=h[v],d=h[c];p&&!d&&(d=h[c]={},Sw(p,function(g,y){if(!!ue.isValidType(y)){var m=BL.get(y,"inactive",s);m!=null&&(d[y]=m,y==="color"&&!d.hasOwnProperty("opacity")&&!d.hasOwnProperty("colorAlpha")&&(d.opacity=[0,0]))}}))}function f(h){var v=(h.inRange||{}).symbol||(h.outOfRange||{}).symbol,c=(h.inRange||{}).symbolSize||(h.outOfRange||{}).symbolSize,p=this.get("inactiveColor"),d=this.getItemSymbol(),g=d||"roundRect";Sw(this.stateList,function(y){var m=this.itemSize,_=h[y];_||(_=h[y]={color:s?p:[p]}),_.symbol==null&&(_.symbol=v&&j(v)||(s?g:[g])),_.symbolSize==null&&(_.symbolSize=c&&j(c)||(s?m[0]:[m[0],m[0]])),_.symbol=_w(_.symbol,function(x){return x==="none"?g:x});var S=_.symbolSize;if(S!=null){var w=-1/0;e9(S,function(x){x>w&&(w=x)}),_.symbolSize=_w(S,function(x){return i9(x,[0,w],[0,m[0]],!0)})}},this)}},e.prototype.resetItemSize=function(){this.itemSize=[parseFloat(this.get("itemWidth")),parseFloat(this.get("itemHeight"))]},e.prototype.isCategory=function(){return!!this.option.categories},e.prototype.setSelected=function(t){},e.prototype.getSelected=function(){return null},e.prototype.getValueState=function(t){return null},e.prototype.getVisualMeta=function(t){return null},e.type="visualMap",e.dependencies=["series"],e.defaultOption={show:!0,z:4,seriesIndex:"all",min:0,max:200,left:0,right:null,top:null,bottom:0,itemWidth:null,itemHeight:null,inverse:!1,orient:"vertical",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",contentColor:"#5793f3",inactiveColor:"#aaa",borderWidth:0,padding:5,textGap:10,precision:0,textStyle:{color:"#333"}},e}(St),Bf=n9,xw=[20,140],o9=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.optionUpdated=function(t,a){r.prototype.optionUpdated.apply(this,arguments),this.resetExtent(),this.resetVisual(function(i){i.mappingMethod="linear",i.dataExtent=this.getExtent()}),this._resetRange()},e.prototype.resetItemSize=function(){r.prototype.resetItemSize.apply(this,arguments);var t=this.itemSize;(t[0]==null||isNaN(t[0]))&&(t[0]=xw[0]),(t[1]==null||isNaN(t[1]))&&(t[1]=xw[1])},e.prototype._resetRange=function(){var t=this.getExtent(),a=this.option.range;!a||a.auto?(t.auto=1,this.option.range=t):z(a)&&(a[0]>a[1]&&a.reverse(),a[0]=Math.max(a[0],t[0]),a[1]=Math.min(a[1],t[1]))},e.prototype.completeVisualOption=function(){r.prototype.completeVisualOption.apply(this,arguments),A(this.stateList,function(t){var a=this.option.controller[t].symbolSize;a&&a[0]!==a[1]&&(a[0]=a[1]/3)},this)},e.prototype.setSelected=function(t){this.option.range=t.slice(),this._resetRange()},e.prototype.getSelected=function(){var t=this.getExtent(),a=rr((this.get("range")||[]).slice());return a[0]>t[1]&&(a[0]=t[1]),a[1]>t[1]&&(a[1]=t[1]),a[0]=i[1]||t<=a[1])?"inRange":"outOfRange"},e.prototype.findTargetDataIndices=function(t){var a=[];return this.eachTargetSeries(function(i){var n=[],o=i.getData();o.each(this.getDataDimensionIndex(o),function(s,l){t[0]<=s&&s<=t[1]&&n.push(l)},this),a.push({seriesId:i.id,dataIndex:n})},this),a},e.prototype.getVisualMeta=function(t){var a=ww(this,"outOfRange",this.getExtent()),i=ww(this,"inRange",this.option.range.slice()),n=[];function o(c,p){n.push({value:c,color:t(c,p)})}for(var s=0,l=0,u=i.length,f=a.length;lt[1])break;n.push({color:this.getControllerVisual(l,"color",a),offset:s/i})}return n.push({color:this.getControllerVisual(t[1],"color",a),offset:1}),n},e.prototype._createBarPoints=function(t,a){var i=this.visualMapModel.itemSize;return[[i[0]-a[0],t[0]],[i[0],t[0]],[i[0],t[1]],[i[0]-a[1],t[1]]]},e.prototype._createBarGroup=function(t){var a=this._orient,i=this.visualMapModel.get("inverse");return new rt(a==="horizontal"&&!i?{scaleX:t==="bottom"?1:-1,rotation:Math.PI/2}:a==="horizontal"&&i?{scaleX:t==="bottom"?-1:1,rotation:-Math.PI/2}:a==="vertical"&&!i?{scaleX:t==="left"?1:-1,scaleY:-1}:{scaleX:t==="left"?1:-1})},e.prototype._updateHandle=function(t,a){if(!!this._useHandle){var i=this._shapes,n=this.visualMapModel,o=i.handleThumbs,s=i.handleLabels,l=n.itemSize,u=n.getExtent();u9([0,1],function(f){var h=o[f];h.setStyle("fill",a.handlesColor[f]),h.y=t[f];var v=Dr(t[f],[0,l[1]],u,!0),c=this.getControllerVisual(v,"symbolSize");h.scaleX=h.scaleY=c/l[0],h.x=l[0]-c/2;var p=yr(i.handleLabelPoints[f],Yi(h,this.group));s[f].setStyle({x:p[0],y:p[1],text:n.formatValueText(this._dataInterval[f]),verticalAlign:"middle",align:this._orient==="vertical"?this._applyTransform("left",i.mainGroup):"center"})},this)}},e.prototype._showIndicator=function(t,a,i,n){var o=this.visualMapModel,s=o.getExtent(),l=o.itemSize,u=[0,l[1]],f=this._shapes,h=f.indicator;if(!!h){h.attr("invisible",!1);var v={convertOpacityToAlpha:!0},c=this.getControllerVisual(t,"color",v),p=this.getControllerVisual(t,"symbolSize"),d=Dr(t,s,u,!0),g=l[0]-p/2,y={x:h.x,y:h.y};h.y=d,h.x=g;var m=yr(f.indicatorLabelPoint,Yi(h,this.group)),_=f.indicatorLabel;_.attr("invisible",!1);var S=this._applyTransform("left",f.mainGroup),w=this._orient,x=w==="horizontal";_.setStyle({text:(i||"")+o.formatValueText(a),verticalAlign:x?S:"middle",align:x?"center":S});var b={x:g,y:d,style:{fill:c}},T={style:{x:m[0],y:m[1]}};if(o.ecModel.isAnimationEnabled()&&!this._firstShowIndicator){var C={duration:100,easing:"cubicInOut",additive:!0};h.x=y.x,h.y=y.y,h.animateTo(b,C),_.animateTo(T,C)}else h.attr(b),_.attr(T);this._firstShowIndicator=!1;var M=this._shapes.handleLabels;if(M)for(var D=0;Do[1]&&(h[1]=1/0),a&&(h[0]===-1/0?this._showIndicator(f,h[1],"< ",l):h[1]===1/0?this._showIndicator(f,h[0],"> ",l):this._showIndicator(f,f,"\u2248 ",l));var v=this._hoverLinkDataIndices,c=[];(a||Aw(i))&&(c=this._hoverLinkDataIndices=i.findTargetDataIndices(h));var p=tP(v,c);this._dispatchHighDown("downplay",Uu(p[0],i)),this._dispatchHighDown("highlight",Uu(p[1],i))}},e.prototype._hoverLinkFromSeriesMouseOver=function(t){var a=t.target,i=this.visualMapModel;if(!(!a||at(a).dataIndex==null)){var n=at(a),o=this.ecModel.getSeriesByIndex(n.seriesIndex);if(!!i.isTargetSeries(o)){var s=o.getData(n.dataType),l=s.getStore().get(i.getDataDimensionIndex(s),n.dataIndex);isNaN(l)||this._showIndicator(l,l)}}},e.prototype._hideIndicator=function(){var t=this._shapes;t.indicator&&t.indicator.attr("invisible",!0),t.indicatorLabel&&t.indicatorLabel.attr("invisible",!0);var a=this._shapes.handleLabels;if(a)for(var i=0;i=0&&(n.dimension=o,a.push(n))}}),r.getData().setVisual("visualMeta",a)}}];function m9(r,e,t,a){for(var i=e.targetVisuals[a],n=ue.prepareVisualTypes(i),o={color:fl(r.getData(),"color")},s=0,l=n.length;s0:e.splitNumber>0)||e.calculable)?"continuous":"piecewise"}),r.registerAction(d9,g9),A(y9,function(e){r.registerVisual(r.PRIORITY.VISUAL.COMPONENT,e)}),r.registerPreprocessor(_9))}function HL(r){r.registerComponentModel(s9),r.registerComponentView(p9),FL(r)}var S9=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t._pieceList=[],t}return e.prototype.optionUpdated=function(t,a){r.prototype.optionUpdated.apply(this,arguments),this.resetExtent();var i=this._mode=this._determineMode();this._pieceList=[],x9[this._mode].call(this,this._pieceList),this._resetSelected(t,a);var n=this.option.categories;this.resetVisual(function(o,s){i==="categories"?(o.mappingMethod="category",o.categories=j(n)):(o.dataExtent=this.getExtent(),o.mappingMethod="piecewise",o.pieceList=G(this._pieceList,function(l){return l=j(l),s!=="inRange"&&(l.visual=null),l}))})},e.prototype.completeVisualOption=function(){var t=this.option,a={},i=ue.listVisualTypes(),n=this.isCategory();A(t.pieces,function(s){A(i,function(l){s.hasOwnProperty(l)&&(a[l]=1)})}),A(a,function(s,l){var u=!1;A(this.stateList,function(f){u=u||o(t,f,l)||o(t.target,f,l)},this),!u&&A(this.stateList,function(f){(t[f]||(t[f]={}))[l]=BL.get(l,f==="inRange"?"active":"inactive",n)})},this);function o(s,l,u){return s&&s[l]&&s[l].hasOwnProperty(u)}r.prototype.completeVisualOption.apply(this,arguments)},e.prototype._resetSelected=function(t,a){var i=this.option,n=this._pieceList,o=(a?i:t).selected||{};if(i.selected=o,A(n,function(l,u){var f=this.getSelectedMapKey(l);o.hasOwnProperty(f)||(o[f]=!0)},this),i.selectedMode==="single"){var s=!1;A(n,function(l,u){var f=this.getSelectedMapKey(l);o[f]&&(s?o[f]=!1:s=!0)},this)}},e.prototype.getItemSymbol=function(){return this.get("itemSymbol")},e.prototype.getSelectedMapKey=function(t){return this._mode==="categories"?t.value+"":t.index+""},e.prototype.getPieceList=function(){return this._pieceList},e.prototype._determineMode=function(){var t=this.option;return t.pieces&&t.pieces.length>0?"pieces":this.option.categories?"categories":"splitNumber"},e.prototype.setSelected=function(t){this.option.selected=j(t)},e.prototype.getValueState=function(t){var a=ue.findPieceIndex(t,this._pieceList);return a!=null&&this.option.selected[this.getSelectedMapKey(this._pieceList[a])]?"inRange":"outOfRange"},e.prototype.findTargetDataIndices=function(t){var a=[],i=this._pieceList;return this.eachTargetSeries(function(n){var o=[],s=n.getData();s.each(this.getDataDimensionIndex(s),function(l,u){var f=ue.findPieceIndex(l,i);f===t&&o.push(u)},this),a.push({seriesId:n.id,dataIndex:o})},this),a},e.prototype.getRepresentValue=function(t){var a;if(this.isCategory())a=t.value;else if(t.value!=null)a=t.value;else{var i=t.interval||[];a=i[0]===-1/0&&i[1]===1/0?0:(i[0]+i[1])/2}return a},e.prototype.getVisualMeta=function(t){if(this.isCategory())return;var a=[],i=["",""],n=this;function o(f,h){var v=n.getRepresentValue({interval:f});h||(h=n.getValueState(v));var c=t(v,h);f[0]===-1/0?i[0]=c:f[1]===1/0?i[1]=c:a.push({value:f[0],color:c},{value:f[1],color:c})}var s=this._pieceList.slice();if(!s.length)s.push({interval:[-1/0,1/0]});else{var l=s[0].interval[0];l!==-1/0&&s.unshift({interval:[-1/0,l]}),l=s[s.length-1].interval[1],l!==1/0&&s.push({interval:[l,1/0]})}var u=-1/0;return A(s,function(f){var h=f.interval;h&&(h[0]>u&&o([u,h[0]],"outOfRange"),o(h.slice()),u=h[1])},this),{stops:a,outerColors:i}},e.type="visualMap.piecewise",e.defaultOption=ja(Bf.defaultOption,{selected:null,minOpen:!1,maxOpen:!1,align:"auto",itemWidth:20,itemHeight:14,itemSymbol:"roundRect",pieces:null,categories:null,splitNumber:5,selectedMode:"multiple",itemGap:10,hoverLink:!0}),e}(Bf),x9={splitNumber:function(r){var e=this.option,t=Math.min(e.precision,20),a=this.getExtent(),i=e.splitNumber;i=Math.max(parseInt(i,10),1),e.splitNumber=i;for(var n=(a[1]-a[0])/i;+n.toFixed(t)!==n&&t<5;)t++;e.precision=t,n=+n.toFixed(t),e.minOpen&&r.push({interval:[-1/0,a[0]],close:[0,0]});for(var o=0,s=a[0];o","\u2265"][a[0]]];t.text=t.text||this.formatValueText(t.value!=null?t.value:t.interval,!1,i)},this)}};function Iw(r,e){var t=r.inverse;(r.orient==="vertical"?!t:t)&&e.reverse()}var w9=S9,b9=function(r){O(e,r);function e(){var t=r!==null&&r.apply(this,arguments)||this;return t.type=e.type,t}return e.prototype.doRender=function(){var t=this.group;t.removeAll();var a=this.visualMapModel,i=a.get("textGap"),n=a.textStyleModel,o=n.getFont(),s=n.getTextColor(),l=this._getItemAlign(),u=a.itemSize,f=this._getViewData(),h=f.endsText,v=ie(a.get("showLabel",!0),!h);h&&this._renderEndsText(t,h[0],u,v,l),A(f.viewPieceList,function(c){var p=c.piece,d=new rt;d.onclick=U(this._onItemClick,this,p),this._enableHoverLink(d,c.indexInModelPieceList);var g=a.getRepresentValue(p);if(this._createItemSymbol(d,g,[0,0,u[0],u[1]]),v){var y=this.visualMapModel.getValueState(g);d.add(new Tt({style:{x:l==="right"?-i:u[0]+i,y:u[1]/2,text:p.text,verticalAlign:"middle",align:l,font:o,fill:s,opacity:y==="outOfRange"?.5:1}}))}t.add(d)},this),h&&this._renderEndsText(t,h[1],u,v,l),Zi(a.get("orient"),t,a.get("itemGap")),this.renderBackground(t),this.positionGroup(t)},e.prototype._enableHoverLink=function(t,a){var i=this;t.on("mouseover",function(){return n("highlight")}).on("mouseout",function(){return n("downplay")});var n=function(o){var s=i.visualMapModel;s.option.hoverLink&&i.api.dispatchAction({type:o,batch:Uu(s.findTargetDataIndices(a),s)})}},e.prototype._getItemAlign=function(){var t=this.visualMapModel,a=t.option;if(a.orient==="vertical")return GL(t,this.api,t.itemSize);var i=a.align;return(!i||i==="auto")&&(i="left"),i},e.prototype._renderEndsText=function(t,a,i,n,o){if(!!a){var s=new rt,l=this.visualMapModel.textStyleModel;s.add(new Tt({style:Bt(l,{x:n?o==="right"?i[0]:0:i[0]/2,y:i[1]/2,verticalAlign:"middle",align:n?o:"center",text:a})})),t.add(s)}},e.prototype._getViewData=function(){var t=this.visualMapModel,a=G(t.getPieceList(),function(s,l){return{piece:s,indexInModelPieceList:l}}),i=t.get("text"),n=t.get("orient"),o=t.get("inverse");return(n==="horizontal"?o:!o)?a.reverse():i&&(i=i.slice().reverse()),{viewPieceList:a,endsText:i}},e.prototype._createItemSymbol=function(t,a,i){t.add(Kt(this.getControllerVisual(a,"symbol"),i[0],i[1],i[2],i[3],this.getControllerVisual(a,"color")))},e.prototype._onItemClick=function(t){var a=this.visualMapModel,i=a.option,n=i.selectedMode;if(!!n){var o=j(i.selected),s=a.getSelectedMapKey(t);n==="single"||n===!0?(o[s]=!0,A(o,function(l,u){o[u]=u===s})):o[s]=!o[s],this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:o})}},e.type="visualMap.piecewise",e}(zL),T9=b9;function WL(r){r.registerComponentModel(w9),r.registerComponentView(T9),FL(r)}function C9(r){ct(HL),ct(WL)}var A9={label:{enabled:!0},decal:{show:!1}},Pw=bt(),M9={};function D9(r,e){var t=r.getModel("aria");if(!t.get("enabled"))return;var a=j(A9);st(a.label,r.getLocaleModel().get("aria"),!1),st(t.option,a,!1),i(),n();function i(){var u=t.getModel("decal"),f=u.get("show");if(f){var h=q();r.eachSeries(function(v){if(!v.isColorBySeries()){var c=h.get(v.type);c||(c={},h.set(v.type,c)),Pw(v).scope=c}}),r.eachRawSeries(function(v){if(r.isSeriesFiltered(v))return;if(K(v.enableAriaDecal)){v.enableAriaDecal();return}var c=v.getData();if(v.isColorBySeries()){var m=Np(v.ecModel,v.name,M9,r.getSeriesCount()),_=c.getVisual("decal");c.setVisual("decal",S(_,m))}else{var p=v.getRawData(),d={},g=Pw(v).scope;c.each(function(w){var x=c.getRawIndex(w);d[x]=w});var y=p.count();p.each(function(w){var x=d[w],b=p.getName(w)||w+"",T=Np(v.ecModel,b,g,y),C=c.getItemVisual(x,"decal");c.setItemVisual(x,"decal",S(C,T))})}function S(w,x){var b=w?B(B({},x),w):x;return b.dirty=!0,b}})}}function n(){var u=r.getLocaleModel().get("aria"),f=t.getModel("label");if(f.option=Q(f.option,u),!!f.get("enabled")){var h=e.getZr().dom;if(f.get("description")){h.setAttribute("aria-label",f.get("description"));return}var v=r.getSeriesCount(),c=f.get(["data","maxCount"])||10,p=f.get(["series","maxCount"])||10,d=Math.min(v,p),g;if(!(v<1)){var y=s();if(y){var m=f.get(["general","withTitle"]);g=o(m,{title:y})}else g=f.get(["general","withoutTitle"]);var _=[],S=v>1?f.get(["series","multiple","prefix"]):f.get(["series","single","prefix"]);g+=o(S,{seriesCount:v}),r.eachSeries(function(T,C){if(C1?f.get(["series","multiple",L]):f.get(["series","single",L]),M=o(M,{seriesId:T.seriesIndex,seriesName:T.get("name"),seriesType:l(T.subType)});var I=T.getData();if(I.count()>c){var P=f.get(["data","partialData"]);M+=o(P,{displayCnt:c})}else M+=f.get(["data","allData"]);for(var R=f.get(["data","separator","middle"]),E=f.get(["data","separator","end"]),N=[],k=0;k":"gt",">=":"gte","=":"eq","!=":"ne","<>":"ne"},P9=function(){function r(e){var t=this._condVal=$(e)?new RegExp(e):cI(e)?e:null;if(t==null){var a="";Mt(a)}}return r.prototype.evaluate=function(e){var t=typeof e;return $(t)?this._condVal.test(e):xt(t)?this._condVal.test(e+""):!1},r}(),R9=function(){function r(){}return r.prototype.evaluate=function(){return this.value},r}(),E9=function(){function r(){}return r.prototype.evaluate=function(){for(var e=this.children,t=0;t2&&a.push(i),i=[I,P]}function f(I,P,R,E){Wn(I,R)&&Wn(P,E)||i.push(I,P,R,E,R,E)}function h(I,P,R,E,N,k){var V=Math.abs(P-I),F=Math.tan(V/4)*4/3,W=PT:D2&&a.push(i),a}function Nd(r,e,t,a,i,n,o,s,l,u){if(Wn(r,t)&&Wn(e,a)&&Wn(i,o)&&Wn(n,s)){l.push(o,s);return}var f=2/u,h=f*f,v=o-r,c=s-e,p=Math.sqrt(v*v+c*c);v/=p,c/=p;var d=t-r,g=a-e,y=i-o,m=n-s,_=d*d+g*g,S=y*y+m*m;if(_=0&&T=0){l.push(o,s);return}var C=[],M=[];$a(r,t,i,o,.5,C),$a(e,a,n,s,.5,M),Nd(C[0],M[0],C[1],M[1],C[2],M[2],C[3],M[3],l,u),Nd(C[4],M[4],C[5],M[5],C[6],M[6],C[7],M[7],l,u)}function Z9(r,e){var t=Od(r),a=[];e=e||1;for(var i=0;i0)for(var u=0;uMath.abs(u),h=UL([l,u],f?0:1,e),v=(f?s:u)/h.length,c=0;ci,o=UL([a,i],n?0:1,e),s=n?"width":"height",l=n?"height":"width",u=n?"x":"y",f=n?"y":"x",h=r[s]/o.length,v=0;v1?null:new ot(d*l+r,d*u+e)}function K9(r,e,t){var a=new ot;ot.sub(a,t,e),a.normalize();var i=new ot;ot.sub(i,r,e);var n=i.dot(a);return n}function Pn(r,e){var t=r[r.length-1];t&&t[0]===e[0]&&t[1]===e[1]||r.push(e)}function Q9(r,e,t){for(var a=r.length,i=[],n=0;no?(u.x=f.x=s+n/2,u.y=l,f.y=l+o):(u.y=f.y=l+o/2,u.x=s,f.x=s+n),Q9(e,u,f)}function zf(r,e,t,a){if(t===1)a.push(e);else{var i=Math.floor(t/2),n=r(e);zf(r,n[0],i,a),zf(r,n[1],t-i,a)}return a}function J9(r,e){for(var t=[],a=0;a0)for(var w=a/t,x=-a/2;x<=a/2;x+=w){for(var b=Math.sin(x),T=Math.cos(x),C=0,_=0;_0;u/=2){var f=0,h=0;(r&u)>0&&(f=1),(e&u)>0&&(h=1),s+=u*u*(3*f^h),h===0&&(f===1&&(r=u-1-r,e=u-1-e),l=r,r=e,e=l)}return s}function Hf(r){var e=1/0,t=1/0,a=-1/0,i=-1/0,n=G(r,function(s){var l=s.getBoundingRect(),u=s.getComputedTransform(),f=l.x+l.width/2+(u?u[4]:0),h=l.y+l.height/2+(u?u[5]:0);return e=Math.min(f,e),t=Math.min(h,t),a=Math.max(f,a),i=Math.max(h,i),[f,h]}),o=G(n,function(s,l){return{cp:s,z:sZ(s[0],s[1],e,t,a,i),path:r[l]}});return o.sort(function(s,l){return s.z-l.z}).map(function(s){return s.path})}function XL(r){return eZ(r.path,r.count)}function Vd(){return{fromIndividuals:[],toIndividuals:[],count:0}}function lZ(r,e,t){var a=[];function i(w){for(var x=0;x=0;i--)if(!t[i].many.length){var l=t[s].many;if(l.length<=1)if(s)s=0;else return t;var n=l.length,u=Math.ceil(n/2);t[i].many=l.slice(u,n),t[s].many=l.slice(0,u),s++}return t}var fZ={clone:function(r){for(var e=[],t=1-Math.pow(1-r.path.style.opacity,1/r.count),a=0;a0))return;var s=a.getModel("universalTransition").get("delay"),l=Object.assign({setToFinal:!0},o),u,f;Gw(r)&&(u=r,f=e),Gw(e)&&(u=e,f=r);function h(y,m,_,S,w){var x=y.many,b=y.one;if(x.length===1&&!w){var T=m?x[0]:b,C=m?b:x[0];if(Gf(T))h({many:[T],one:C},!0,_,S,!0);else{var M=s?Q({delay:s(_,S)},l):l;Wy(T,C,M),n(T,C,T,C,M)}}else for(var D=Q({dividePath:fZ[t],individualDelay:s&&function(N,k,V,F){return s(N+_,S)}},l),L=m?lZ(x,b,D):uZ(b,x,D),I=L.fromIndividuals,P=L.toIndividuals,R=I.length,E=0;Ee.length,c=u?Fw(f,u):Fw(v?e:r,[v?r:e]),p=0,d=0;dqL))for(var i=a.getIndices(),n=vZ(a),o=0;o0&&S.group.traverse(function(x){x instanceof dt&&!x.animators.length&&x.animateFrom({style:{opacity:0}},w)})})}function Ww(r){var e=r.getModel("universalTransition").get("seriesKey");return e||r.id}function $w(r){return z(r)?r.sort().join(","):r}function Ma(r){if(r.hostModel)return r.hostModel.getModel("universalTransition").get("divideShape")}function dZ(r,e){var t=q(),a=q(),i=q();return A(r.oldSeries,function(n,o){var s=r.oldData[o],l=Ww(n),u=$w(l);a.set(u,s),z(l)&&A(l,function(f){i.set(f,{data:s,key:u})})}),A(e.updatedSeries,function(n){if(n.isUniversalTransitionEnabled()&&n.isAnimationEnabled()){var o=n.getData(),s=Ww(n),l=$w(s),u=a.get(l);if(u)t.set(l,{oldSeries:[{divide:Ma(u),data:u}],newSeries:[{divide:Ma(o),data:o}]});else if(z(s)){var f=[];A(s,function(c){var p=a.get(c);p&&f.push({divide:Ma(p),data:p})}),f.length&&t.set(l,{oldSeries:f,newSeries:[{data:o,divide:Ma(o)}]})}else{var h=i.get(s);if(h){var v=t.get(h.key);v||(v={oldSeries:[{data:h.data,divide:Ma(h.data)}],newSeries:[]},t.set(h.key,v)),v.newSeries.push({data:o,divide:Ma(o)})}}}}),t}function Uw(r,e){for(var t=0;t=0&&i.push({data:e.oldData[s],divide:Ma(e.oldData[s]),dim:o.dimension})}),A(Pt(r.to),function(o){var s=Uw(t.updatedSeries,o);if(s>=0){var l=t.updatedSeries[s].getData();n.push({data:l,divide:Ma(l),dim:o.dimension})}}),i.length>0&&n.length>0&&KL(i,n,a)}function yZ(r){r.registerUpdateLifecycle("series:beforeupdate",function(e,t,a){A(Pt(a.seriesTransition),function(i){A(Pt(i.to),function(n){for(var o=a.updatedSeries,s=0;s{_(),F.log.detail(s.id).then(r=>{a.ruleForm.id=r.data.id}),a.isShowDialog=!0},_=()=>{a.ruleForm={status:1,content:""}},d=()=>{const s=S(c);!s||s.validate(r=>{r&&F.log.handle(a.ruleForm).then(()=>{b.success("\u544A\u8B66\u5904\u7406\u6210\u529F"),n(),l("dataList")})})},n=()=>{a.isShowDialog=!1};return{openDialog:f,closeDialog:n,onCancel:()=>{n()},onSubmit:d,formRef:c,...w(a)}}}),y={class:"system-edit-dic-container"},$=m("\u5DF2\u5904\u7406"),z=m("\u5FFD\u7565"),N={class:"dialog-footer"},R=m("\u53D6 \u6D88"),U=m("\u786E\u5B9A");function L(e,l,c,a,f,_){const d=u("el-radio"),n=u("el-radio-group"),p=u("el-form-item"),s=u("el-input"),r=u("el-form"),g=u("el-button"),h=u("el-dialog");return k(),E("div",y,[o(h,{title:"\u544A\u8B66\u5904\u7406",modelValue:e.isShowDialog,"onUpdate:modelValue":l[2]||(l[2]=i=>e.isShowDialog=i),width:"769px"},{footer:t(()=>[A("span",N,[o(g,{onClick:e.onCancel,size:"default"},{default:t(()=>[R]),_:1},8,["onClick"]),o(g,{type:"primary",onClick:e.onSubmit,size:"default"},{default:t(()=>[U]),_:1},8,["onClick"])])]),default:t(()=>[o(r,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"110px"},{default:t(()=>[o(p,{label:"\u5904\u7406\u72B6\u6001",prop:"status"},{default:t(()=>[o(n,{modelValue:e.ruleForm.status,"onUpdate:modelValue":l[0]||(l[0]=i=>e.ruleForm.status=i)},{default:t(()=>[o(d,{label:1},{default:t(()=>[$]),_:1}),o(d,{label:2},{default:t(()=>[z]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(p,{label:"\u5904\u7406\u610F\u89C1",prop:"content"},{default:t(()=>[o(s,{modelValue:e.ruleForm.content,"onUpdate:modelValue":l[1]||(l[1]=i=>e.ruleForm.content=i),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["modelValue"])])}var W=D(v,[["render",L]]);export{W as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469510.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469510.js new file mode 100644 index 0000000..e29cbf0 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469510.js @@ -0,0 +1,859 @@ +import{a as Ht}from"./index.170118430469520.js";import{K as Vt,_ as Ot,t as Gt,v as Kt,w as Jt,x as Wt,y as Xt,z as Zt,A as kt,E as qt}from"./index.1701184304695.js";import{L as Ut,a2 as jt,k as _t,i as te,ab as Qt,o as $t,a as wt,b as pt,h as Lt,_ as Dt,T as It,e as ee,ai as Mt,Y as bt,Z as ne}from"./vue.1701184304695.js";var Yt={exports:{}};(function(et,at){(function(n,t){et.exports=t()})(window,function(){return function(s){var n={};function t(e){if(n[e])return n[e].exports;var a=n[e]={i:e,l:!1,exports:{}};return s[e].call(a.exports,a,a.exports,t),a.l=!0,a.exports}return t.m=s,t.c=n,t.d=function(e,a,o){t.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:o})},t.r=function(e){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,a){if(a&1&&(e=t(e)),a&8||a&4&&typeof e=="object"&&e&&e.__esModule)return e;var o=Object.create(null);if(t.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),a&2&&typeof e!="string")for(var r in e)t.d(o,r,function(c){return e[c]}.bind(null,r));return o},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},t.p="",t(t.s=141)}([function(s,n){function t(e){return e&&e.__esModule?e:{default:e}}s.exports=t},function(s,n,t){s.exports=t(142)},function(s,n,t){t.r(n),t.d(n,"__extends",function(){return a}),t.d(n,"__assign",function(){return o}),t.d(n,"__rest",function(){return r}),t.d(n,"__decorate",function(){return c}),t.d(n,"__param",function(){return g}),t.d(n,"__metadata",function(){return d}),t.d(n,"__awaiter",function(){return p}),t.d(n,"__generator",function(){return f}),t.d(n,"__createBinding",function(){return i}),t.d(n,"__exportStar",function(){return u}),t.d(n,"__values",function(){return l}),t.d(n,"__read",function(){return m}),t.d(n,"__spread",function(){return v}),t.d(n,"__spreadArrays",function(){return h}),t.d(n,"__spreadArray",function(){return A}),t.d(n,"__await",function(){return y}),t.d(n,"__asyncGenerator",function(){return x}),t.d(n,"__asyncDelegator",function(){return S}),t.d(n,"__asyncValues",function(){return T}),t.d(n,"__makeTemplateObject",function(){return R}),t.d(n,"__importStar",function(){return E}),t.d(n,"__importDefault",function(){return D}),t.d(n,"__classPrivateFieldGet",function(){return P}),t.d(n,"__classPrivateFieldSet",function(){return M});/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */var e=function(I,N){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(B,F){B.__proto__=F}||function(B,F){for(var O in F)Object.prototype.hasOwnProperty.call(F,O)&&(B[O]=F[O])},e(I,N)};function a(I,N){if(typeof N!="function"&&N!==null)throw new TypeError("Class extends value "+String(N)+" is not a constructor or null");e(I,N);function B(){this.constructor=I}I.prototype=N===null?Object.create(N):(B.prototype=N.prototype,new B)}var o=function(){return o=Object.assign||function(N){for(var B,F=1,O=arguments.length;F=0;U--)(L=I[U])&&(H=(O<3?L(H):O>3?L(N,B,H):L(N,B))||H);return O>3&&H&&Object.defineProperty(N,B,H),H}function g(I,N){return function(B,F){N(B,F,I)}}function d(I,N){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(I,N)}function p(I,N,B,F){function O(H){return H instanceof B?H:new B(function(L){L(H)})}return new(B||(B=Promise))(function(H,L){function U(K){try{j(F.next(K))}catch(V){L(V)}}function z(K){try{j(F.throw(K))}catch(V){L(V)}}function j(K){K.done?H(K.value):O(K.value).then(U,z)}j((F=F.apply(I,N||[])).next())})}function f(I,N){var B={label:0,sent:function(){if(H[0]&1)throw H[1];return H[1]},trys:[],ops:[]},F,O,H,L;return L={next:U(0),throw:U(1),return:U(2)},typeof Symbol=="function"&&(L[Symbol.iterator]=function(){return this}),L;function U(j){return function(K){return z([j,K])}}function z(j){if(F)throw new TypeError("Generator is already executing.");for(;B;)try{if(F=1,O&&(H=j[0]&2?O.return:j[0]?O.throw||((H=O.return)&&H.call(O),0):O.next)&&!(H=H.call(O,j[1])).done)return H;switch(O=0,H&&(j=[j[0]&2,H.value]),j[0]){case 0:case 1:H=j;break;case 4:return B.label++,{value:j[1],done:!1};case 5:B.label++,O=j[1],j=[0];continue;case 7:j=B.ops.pop(),B.trys.pop();continue;default:if(H=B.trys,!(H=H.length>0&&H[H.length-1])&&(j[0]===6||j[0]===2)){B=0;continue}if(j[0]===3&&(!H||j[1]>H[0]&&j[1]=I.length&&(I=void 0),{value:I&&I[F++],done:!I}}};throw new TypeError(N?"Object is not iterable.":"Symbol.iterator is not defined.")}function m(I,N){var B=typeof Symbol=="function"&&I[Symbol.iterator];if(!B)return I;var F=B.call(I),O,H=[],L;try{for(;(N===void 0||N-- >0)&&!(O=F.next()).done;)H.push(O.value)}catch(U){L={error:U}}finally{try{O&&!O.done&&(B=F.return)&&B.call(F)}finally{if(L)throw L.error}}return H}function v(){for(var I=[],N=0;N1||U(Q,w)})})}function U(Q,w){try{z(F[Q](w))}catch(G){V(H[0][3],G)}}function z(Q){Q.value instanceof y?Promise.resolve(Q.value.v).then(j,K):V(H[0][2],Q)}function j(Q){U("next",Q)}function K(Q){U("throw",Q)}function V(Q,w){Q(w),H.shift(),H.length&&U(H[0][0],H[0][1])}}function S(I){var N,B;return N={},F("next"),F("throw",function(O){throw O}),F("return"),N[Symbol.iterator]=function(){return this},N;function F(O,H){N[O]=I[O]?function(L){return(B=!B)?{value:y(I[O](L)),done:O==="return"}:H?H(L):L}:H}}function T(I){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var N=I[Symbol.asyncIterator],B;return N?N.call(I):(I=typeof l=="function"?l(I):I[Symbol.iterator](),B={},F("next"),F("throw"),F("return"),B[Symbol.asyncIterator]=function(){return this},B);function F(H){B[H]=I[H]&&function(L){return new Promise(function(U,z){L=I[H](L),O(U,z,L.done,L.value)})}}function O(H,L,U,z){Promise.resolve(z).then(function(j){H({value:j,done:U})},L)}}function R(I,N){return Object.defineProperty?Object.defineProperty(I,"raw",{value:N}):I.raw=N,I}var C=Object.create?function(I,N){Object.defineProperty(I,"default",{enumerable:!0,value:N})}:function(I,N){I.default=N};function E(I){if(I&&I.__esModule)return I;var N={};if(I!=null)for(var B in I)B!=="default"&&Object.prototype.hasOwnProperty.call(I,B)&&i(N,I,B);return C(N,I),N}function D(I){return I&&I.__esModule?I:{default:I}}function P(I,N){if(!N.has(I))throw new TypeError("attempted to get private field on non-instance");return N.get(I)}function M(I,N,B){if(!N.has(I))throw new TypeError("attempted to set private field on non-instance");return N.set(I,B),B}},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(89)),r=e(t(4)),c=e(t(26)),g=e(t(17)),d=e(t(121)),p=e(t(27)),f=e(t(91)),i=e(t(70)),u=e(t(28)),l=e(t(57));(0,a.default)(n,"__esModule",{value:!0}),n.DomElement=void 0;var m=t(2),v=t(6),h=[];function A(C){var E=document.createElement("div");E.innerHTML=C;var D=E.children;return v.toArray(D)}function y(C){return C?C instanceof HTMLCollection||C instanceof NodeList:!1}function x(C){var E=document.querySelectorAll(C);return v.toArray(E)}function S(C){var E=[],D=[];return(0,o.default)(C)?E=C:E=C.split(";"),(0,r.default)(E).call(E,function(P){var M,I=(0,c.default)(M=P.split(":")).call(M,function(N){return(0,g.default)(N).call(N)});I.length===2&&D.push(I[0]+":"+I[1])}),D}var T=function(){function C(E){if(this.elems=[],this.length=this.elems.length,this.dataSource=new d.default,!!E){if(E instanceof C)return E;var D=[],P=E instanceof Node?E.nodeType:-1;if(this.selector=E,P===1||P===9)D=[E];else if(y(E))D=v.toArray(E);else if(E instanceof Array)D=E;else if(typeof E=="string"){var M,I=(0,g.default)(M=E.replace(`/ +/mg`,"")).call(M);(0,p.default)(I).call(I,"<")===0?D=A(I):D=x(I)}var N=D.length;if(!N)return this;for(var B=0;B=D&&(E=E%D),R(this.elems[E])},C.prototype.first=function(){return this.get(0)},C.prototype.last=function(){var E=this.length;return this.get(E-1)},C.prototype.on=function(E,D,P){var M;return E?(typeof D=="function"&&(P=D,D=""),(0,r.default)(M=this).call(M,function(I){if(!D){I.addEventListener(E,P);return}var N=function(F){var O=F.target;O.matches(D)&&P.call(O,F)};I.addEventListener(E,N),h.push({elem:I,selector:D,fn:P,agentFn:N})})):this},C.prototype.off=function(E,D,P){var M;return E?(typeof D=="function"&&(P=D,D=""),(0,r.default)(M=this).call(M,function(I){if(D){for(var N=-1,B=0;B]+>/g,function(){return""})}},C.prototype.html=function(E){var D=this.elems[0];return E?(D.innerHTML=E,this):D.innerHTML},C.prototype.val=function(){var E,D=this.elems[0];return(0,g.default)(E=D.value).call(E)},C.prototype.focus=function(){var E;return(0,r.default)(E=this).call(E,function(D){D.focus()})},C.prototype.prev=function(){var E=this.elems[0];return R(E.previousElementSibling)},C.prototype.next=function(){var E=this.elems[0];return R(E.nextElementSibling)},C.prototype.getNextSibling=function(){var E=this.elems[0];return R(E.nextSibling)},C.prototype.parent=function(){var E=this.elems[0];return R(E.parentElement)},C.prototype.parentUntil=function(E,D){var P=D||this.elems[0];if(P.nodeName==="BODY")return null;var M=P.parentElement;return M===null?null:M.matches(E)?R(M):this.parentUntil(E,M)},C.prototype.parentUntilEditor=function(E,D,P){var M=P||this.elems[0];if(R(M).equal(D.$textContainerElem)||R(M).equal(D.$toolbarElem))return null;var I=M.parentElement;return I===null?null:I.matches(E)?R(I):this.parentUntilEditor(E,D,I)},C.prototype.equal=function(E){return E instanceof C?this.elems[0]===E.elems[0]:E instanceof HTMLElement?this.elems[0]===E:!1},C.prototype.insertBefore=function(E){var D,P=R(E),M=P.elems[0];return M?(0,r.default)(D=this).call(D,function(I){var N=M.parentNode;N==null||N.insertBefore(I,M)}):this},C.prototype.insertAfter=function(E){var D,P=R(E),M=P.elems[0],I=M&&M.nextSibling;return M?(0,r.default)(D=this).call(D,function(N){var B=M.parentNode;I?B.insertBefore(N,I):B.appendChild(N)}):this},C.prototype.data=function(E,D){if(D!=null)this.dataSource.set(E,D);else return this.dataSource.get(E)},C.prototype.getNodeTop=function(E){if(this.length<1)return this;var D=this.parent();return E.$textElem.equal(this)||E.$textElem.equal(D)?this:(D.prior=this,D.getNodeTop(E))},C.prototype.getOffsetData=function(){var E=this.elems[0];return{top:E.offsetTop,left:E.offsetLeft,width:E.offsetWidth,height:E.offsetHeight,parent:E.offsetParent}},C.prototype.scrollTop=function(E){var D=this.elems[0];D.scrollTo({top:E})},C}();n.DomElement=T;function R(){for(var C=[],E=0;E/gm,">").replace(/"/gm,""").replace(/(\r\n|\r|\n)/g,"
")}n.replaceHtmlSymbol=l;function m(E){return E.replace(/</gm,"<").replace(/>/gm,">").replace(/"/gm,'"')}n.replaceSpecialSymbol=m;function v(E,D){for(var P in E)if(Object.prototype.hasOwnProperty.call(E,P)){var M=D(P,E[P]);if(M===!1)break}}n.forEach=v;function h(E,D){var P,M,I,N=E.length||0;for(P=0;P

',n.EMPTY_P_LAST_REGEX=/

<\/p>$/gim,n.EMPTY_P_REGEX=/

/gim},function(s,n,t){(function(e){var a=function(o){return o&&o.Math==Math&&o};s.exports=a(typeof globalThis=="object"&&globalThis)||a(typeof window=="object"&&window)||a(typeof self=="object"&&self)||a(typeof e=="object"&&e)||Function("return this")()}).call(this,t(145))},function(s,n){s.exports={}},function(s,n,t){var e=t(8),a=t(74),o=t(16),r=t(64),c=t(76),g=t(106),d=a("wks"),p=e.Symbol,f=g?p:p&&p.withoutSetter||r;s.exports=function(i){return o(d,i)||(c&&o(p,i)?d[i]=p[i]:d[i]=f("Symbol."+i)),d[i]}},function(s,n){s.exports=function(t){try{return!!t()}catch{return!0}}},function(s,n,t){var e=t(9),a=t(16),o=t(93),r=t(18).f;s.exports=function(c){var g=e.Symbol||(e.Symbol={});a(g,c)||r(g,c,{value:o.f(c)})}},function(s,n){s.exports=function(t){return typeof t=="object"?t!==null:typeof t=="function"}},function(s,n,t){var e=t(11);s.exports=!e(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!=7})},function(s,n,t){var e=t(9);s.exports=function(a){return e[a+"Prototype"]}},function(s,n){var t={}.hasOwnProperty;s.exports=function(e,a){return t.call(e,a)}},function(s,n,t){s.exports=t(192)},function(s,n,t){var e=t(14),a=t(100),o=t(25),r=t(60),c=Object.defineProperty;n.f=e?c:function(d,p,f){if(o(d),p=r(p,!0),o(f),a)try{return c(d,p,f)}catch{}if("get"in f||"set"in f)throw TypeError("Accessors not supported");return"value"in f&&(d[p]=f.value),d}},function(s,n,t){var e=t(14),a=t(18),o=t(48);s.exports=e?function(r,c,g){return a.f(r,c,o(1,g))}:function(r,c,g){return r[c]=g,r}},function(s,n,t){var e=function(){var h;return function(){return typeof h=="undefined"&&(h=Boolean(window&&document&&document.all&&!window.atob)),h}}(),a=function(){var h={};return function(y){if(typeof h[y]=="undefined"){var x=document.querySelector(y);if(window.HTMLIFrameElement&&x instanceof window.HTMLIFrameElement)try{x=x.contentDocument.head}catch{x=null}h[y]=x}return h[y]}}(),o=[];function r(v){for(var h=-1,A=0;A0){var C=R==null?void 0:R.getNodeName();C&&C==="I"&&T.addClass(A)}})}var x=new p.default(h,v);return h.dropList=x,l.on("click",function(){var S;m.selection.getRange()!=null&&(l.css("z-index",m.zIndex.get("menu")),(0,o.default)(S=m.txt.eventHooks.dropListMenuHoverEvents).call(S,function(T){return T()}),x.show())}).on("mouseleave",function(){l.css("z-index","auto"),x.hideTimeoutId=(0,r.default)(function(){x.hide()})}),h}return u}(d.default);n.default=f},function(s,n,t){var e=t(13);s.exports=function(a){if(!e(a))throw TypeError(String(a)+" is not an object");return a}},function(s,n,t){s.exports=t(188)},function(s,n,t){s.exports=t(201)},function(s,n,t){s.exports=t(213)},function(s,n,t){s.exports=t(283)},function(s,n,t){var e=t(72),a=t(49);s.exports=function(o){return e(a(o))}},function(s,n,t){var e=t(49);s.exports=function(a){return Object(e(a))}},function(s,n,t){var e=t(40),a=t(72),o=t(31),r=t(35),c=t(88),g=[].push,d=function(p){var f=p==1,i=p==2,u=p==3,l=p==4,m=p==6,v=p==5||m;return function(h,A,y,x){for(var S=o(h),T=a(S),R=e(A,y,3),C=r(T.length),E=0,D=x||c,P=f?D(h,C):i?D(h,0):void 0,M,I;C>E;E++)if((v||E in T)&&(M=T[E],I=R(M,E,S),p)){if(f)P[E]=I;else if(I)switch(p){case 3:return!0;case 5:return M;case 6:return E;case 2:g.call(P,M)}else if(l)return!1}return m?-1:u||l?l:P}};s.exports={forEach:d(0),map:d(1),filter:d(2),some:d(3),every:d(4),find:d(5),findIndex:d(6)}},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4)),r=e(t(29)),c=e(t(132));(0,a.default)(n,"__esModule",{value:!0});var g=t(2),d=g.__importDefault(t(3)),p=t(7),f=function(){function i(u,l){this.menu=u,this.conf=l,this.$container=d.default('

');var m=u.editor;m.txt.eventHooks.clickEvents.push(i.hideCurAllPanels),m.txt.eventHooks.toolbarClickEvents.push(i.hideCurAllPanels),m.txt.eventHooks.dropListMenuHoverEvents.push(i.hideCurAllPanels)}return i.prototype.create=function(){var u=this,l=this.menu;if(!i.createdMenus.has(l)){var m=this.conf,v=this.$container,h=m.width||300,A=l.editor.$toolbarElem.getBoundingClientRect(),y=l.$elem.getBoundingClientRect(),x=A.height+A.top-y.top,S=(A.width-h)/2+A.left-y.left,T=300;Math.abs(S)>T&&(y.left');v.append(R),R.on("click",function(){u.remove()});var C=d.default('
    '),E=d.default('
    ');v.append(C).append(E);var D=m.height;D&&E.css("height",D+"px").css("overflow-y","auto");var P=m.tabs||[],M=[],I=[];(0,o.default)(P).call(P,function(B,F){if(!!B){var O=B.title||"",H=B.tpl||"",L=d.default('
  • '+O+"
  • ");C.append(L);var U=d.default(H);E.append(U),M.push(L),I.push(U),F===0?(L.data("active",!0),L.addClass("w-e-active")):U.hide(),L.on("click",function(){L.data("active")||((0,o.default)(M).call(M,function(z){z.data("active",!1),z.removeClass("w-e-active")}),(0,o.default)(I).call(I,function(z){z.hide()}),L.data("active",!0),L.addClass("w-e-active"),U.show())})}}),v.on("click",function(B){B.stopPropagation()}),l.$elem.append(v),m.setLinkValue&&m.setLinkValue(v,"text"),m.setLinkValue&&m.setLinkValue(v,"link"),(0,o.default)(P).call(P,function(B,F){if(!!B){var O=B.events||[];(0,o.default)(O).call(O,function(H){var L,U=H.selector,z=H.type,j=H.fn||p.EMPTY_FN,K=I[F],V=(L=H.bindEnter)!==null&&L!==void 0?L:!1,Q=function(G){return g.__awaiter(u,void 0,void 0,function(){var X;return g.__generator(this,function(tt){switch(tt.label){case 0:return G.stopPropagation(),[4,j(G)];case 1:return X=tt.sent(),X&&this.remove(),[2]}})})};(0,r.default)(K).call(K,U).on(z,Q),V&&z==="click"&&K.on("keyup",function(w){w.keyCode==13&&Q(w)})})}});var N=(0,r.default)(v).call(v,"input[type=text],textarea");N.length&&N.get(0).focus(),i.hideCurAllPanels(),l.setPanel(this),i.createdMenus.add(l)}},i.prototype.remove=function(){var u=this.menu,l=this.$container;l&&l.remove(),i.createdMenus.delete(u)},i.hideCurAllPanels=function(){var u;i.createdMenus.size!==0&&(0,o.default)(u=i.createdMenus).call(u,function(l){var m=l.panel;m&&m.remove()})},i.createdMenus=new c.default,i}();n.default=f},function(s,n){var t={}.toString;s.exports=function(e){return t.call(e).slice(8,-1)}},function(s,n,t){var e=t(62),a=Math.min;s.exports=function(o){return o>0?a(e(o),9007199254740991):0}},function(s,n,t){var e=t(9),a=t(8),o=function(r){return typeof r=="function"?r:void 0};s.exports=function(r,c){return arguments.length<2?o(e[r])||o(a[r]):e[r]&&e[r][c]||a[r]&&a[r][c]}},function(s,n,t){var e=t(81),a=t(18).f,o=t(19),r=t(16),c=t(170),g=t(10),d=g("toStringTag");s.exports=function(p,f,i,u){if(p){var l=i?p:p.prototype;r(l,d)||a(l,d,{configurable:!0,value:f}),u&&!e&&o(l,"toString",c)}}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(95)),c=function(g){o.__extends(d,g);function d(p,f){return g.call(this,p,f)||this}return d.prototype.setPanel=function(p){this.panel=p},d}(r.default);n.default=c},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4)),r=e(t(57));(0,a.default)(n,"__esModule",{value:!0});var c=t(2),g=c.__importDefault(t(3)),d=function(){function p(f,i,u){this.editor=f,this.$targetElem=i,this.conf=u,this._show=!1,this._isInsertTextContainer=!1;var l=g.default("
    ");l.addClass("w-e-tooltip"),this.$container=l}return p.prototype.getPositionData=function(){var f=this.$container,i=0,u=0,l=20,m=document.documentElement.scrollTop,v=this.$targetElem.getBoundingClientRect(),h=this.editor.$textElem.getBoundingClientRect(),A=this.$targetElem.getOffsetData(),y=g.default(A.parent),x=this.editor.$textElem.elems[0].scrollTop;if(this._isInsertTextContainer=y.equal(this.editor.$textContainerElem),this._isInsertTextContainer){var S=y.getBoundingClientRect().height,T=A.top,R=A.left,C=A.height,E=T-x;E>l+5?(i=E-l-15,f.addClass("w-e-tooltip-up")):E+C+l0?E:0)+l+10,f.addClass("w-e-tooltip-down")),R<0?u=0:u=R}else v.top");y.addClass("w-e-tooltip-item-wrapper "),y.append(A),m.append(y),A.on("click",function(x){x.preventDefault();var S=v.onClick(u,l);S&&f.remove()})})},p.prototype.create=function(){var f,i,u=this.editor,l=this.$container;this.appendMenus();var m=this.getPositionData(),v=m.top,h=m.left;l.css("top",v+"px"),l.css("left",h+"px"),l.css("z-index",u.zIndex.get("tooltip")),this._isInsertTextContainer?this.editor.$textContainerElem.append(l):g.default("body").append(l),this._show=!0,u.beforeDestroy((0,r.default)(f=this.remove).call(f,this)),u.txt.eventHooks.onBlurEvents.push((0,r.default)(i=this.remove).call(i,this))},p.prototype.remove=function(){this.$container.remove(),this._show=!1},(0,a.default)(p.prototype,"isShow",{get:function(){return this._show},enumerable:!1,configurable:!0}),p}();n.default=d},function(s,n,t){var e=t(41);s.exports=function(a,o,r){if(e(a),o===void 0)return a;switch(r){case 0:return function(){return a.call(o)};case 1:return function(c){return a.call(o,c)};case 2:return function(c,g){return a.call(o,c,g)};case 3:return function(c,g,d){return a.call(o,c,g,d)}}return function(){return a.apply(o,arguments)}}},function(s,n){s.exports=function(t){if(typeof t!="function")throw TypeError(String(t)+" is not a function");return t}},function(s,n,t){var e=t(165),a=t(8),o=t(13),r=t(19),c=t(16),g=t(63),d=t(51),p=a.WeakMap,f,i,u,l=function(S){return u(S)?i(S):f(S,{})},m=function(S){return function(T){var R;if(!o(T)||(R=i(T)).type!==S)throw TypeError("Incompatible receiver, "+S+" required");return R}};if(e){var v=new p,h=v.get,A=v.has,y=v.set;f=function(S,T){return y.call(v,S,T),T},i=function(S){return h.call(v,S)||{}},u=function(S){return A.call(v,S)}}else{var x=g("state");d[x]=!0,f=function(S,T){return r(S,x,T),T},i=function(S){return c(S,x)?S[x]:{}},u=function(S){return c(S,x)}}s.exports={set:f,get:i,has:u,enforce:l,getterFor:m}},function(s,n){s.exports=!0},function(s,n){s.exports={}},function(s,n,t){s.exports=t(261)},function(s,n,t){s.exports=t(265)},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0}),n.createElementFragment=n.createDocumentFragment=n.createElement=n.insertBefore=n.getEndPoint=n.getStartPoint=n.updateRange=n.filterSelectionNodes=void 0;var r=t(2),c=t(137),g=r.__importDefault(t(3));function d(h){var A=[];return(0,o.default)(h).call(h,function(y){var x=y.getNodeName();if(x!==c.ListType.OrderedList&&x!==c.ListType.UnorderedList)A.push(y);else if(y.prior)A.push(y.prior);else{var S=y.children();S==null||(0,o.default)(S).call(S,function(T){A.push(g.default(T))})}}),A}n.filterSelectionNodes=d;function p(h,A,y){var x=h.selection,S=document.createRange();A.length>1?(S.setStart(A.elems[0],0),S.setEnd(A.elems[A.length-1],A.elems[A.length-1].childNodes.length)):S.selectNodeContents(A.elems[0]),y&&S.collapse(!1),x.saveRange(S),x.restoreSelection()}n.updateRange=p;function f(h){var A;return h.prior?h.prior:g.default((A=h.children())===null||A===void 0?void 0:A.elems[0])}n.getStartPoint=f;function i(h){var A;return h.prior?h.prior:g.default((A=h.children())===null||A===void 0?void 0:A.last().elems[0])}n.getEndPoint=i;function u(h,A,y){y===void 0&&(y=null),h.parent().elems[0].insertBefore(A,y)}n.insertBefore=u;function l(h){return document.createElement(h)}n.createElement=l;function m(){return document.createDocumentFragment()}n.createDocumentFragment=m;function v(h,A,y){return y===void 0&&(y="li"),(0,o.default)(h).call(h,function(x){var S=l(y);S.innerHTML=x.html(),A.appendChild(S),x.remove()}),A}n.createElementFragment=v},function(s,n){s.exports=function(t,e){return{enumerable:!(t&1),configurable:!(t&2),writable:!(t&4),value:e}}},function(s,n){s.exports=function(t){if(t==null)throw TypeError("Can't call method on "+t);return t}},function(s,n,t){var e=t(164).charAt,a=t(42),o=t(75),r="String Iterator",c=a.set,g=a.getterFor(r);o(String,"String",function(d){c(this,{type:r,string:String(d),index:0})},function(){var p=g(this),f=p.string,i=p.index,u;return i>=f.length?{value:void 0,done:!0}:(u=e(f,i),p.index+=u.length,{value:u,done:!1})})},function(s,n){s.exports={}},function(s,n,t){var e=t(107),a=t(80);s.exports=Object.keys||function(r){return e(r,a)}},function(s,n,t){var e=t(19);s.exports=function(a,o,r,c){c&&c.enumerable?a[o]=r:e(a,o,r)}},function(s,n,t){t(173);var e=t(174),a=t(8),o=t(65),r=t(19),c=t(44),g=t(10),d=g("toStringTag");for(var p in e){var f=a[p],i=f&&f.prototype;i&&o(i)!==d&&r(i,d,p),c[p]=c.Array}},function(s,n,t){var e=t(34);s.exports=Array.isArray||function(o){return e(o)=="Array"}},function(s,n,t){var e=t(11),a=t(10),o=t(86),r=a("species");s.exports=function(c){return o>=51||!e(function(){var g=[],d=g.constructor={};return d[r]=function(){return{foo:1}},g[c](Boolean).foo!==1})}},function(s,n,t){s.exports=t(222)},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.ListHandle=void 0;var o=t(2),r=o.__importDefault(t(373)),c=function(){function g(d){this.options=d,this.selectionRangeElem=new r.default}return g}();n.ListHandle=c},function(s,n,t){var e={}.propertyIsEnumerable,a=Object.getOwnPropertyDescriptor,o=a&&!e.call({1:2},1);n.f=o?function(c){var g=a(this,c);return!!g&&g.enumerable}:e},function(s,n,t){var e=t(13);s.exports=function(a,o){if(!e(a))return a;var r,c;if(o&&typeof(r=a.toString)=="function"&&!e(c=r.call(a))||typeof(r=a.valueOf)=="function"&&!e(c=r.call(a))||!o&&typeof(r=a.toString)=="function"&&!e(c=r.call(a)))return c;throw TypeError("Can't convert object to primitive value")}},function(s,n){},function(s,n){var t=Math.ceil,e=Math.floor;s.exports=function(a){return isNaN(a=+a)?0:(a>0?e:t)(a)}},function(s,n,t){var e=t(74),a=t(64),o=e("keys");s.exports=function(r){return o[r]||(o[r]=a(r))}},function(s,n){var t=0,e=Math.random();s.exports=function(a){return"Symbol("+String(a===void 0?"":a)+")_"+(++t+e).toString(36)}},function(s,n,t){var e=t(81),a=t(34),o=t(10),r=o("toStringTag"),c=a(function(){return arguments}())=="Arguments",g=function(d,p){try{return d[p]}catch{}};s.exports=e?a:function(d){var p,f,i;return d===void 0?"Undefined":d===null?"Null":typeof(f=g(p=Object(d),r))=="string"?f:c?a(p):(i=a(p))=="Object"&&typeof p.callee=="function"?"Arguments":i}},function(s,n,t){var e=t(25),a=t(112),o=t(35),r=t(40),c=t(113),g=t(114),d=function(f,i){this.stopped=f,this.result=i},p=s.exports=function(f,i,u,l,m){var v=r(i,u,l?2:1),h,A,y,x,S,T,R;if(m)h=f;else{if(A=c(f),typeof A!="function")throw TypeError("Target is not iterable");if(a(A)){for(y=0,x=o(f.length);x>y;y++)if(S=l?v(e(R=f[y])[0],R[1]):v(f[y]),S&&S instanceof d)return S;return new d(!1)}h=A.call(f)}for(T=h.next;!(R=T.call(h)).done;)if(S=g(h,v,R.value,l),typeof S=="object"&&S&&S instanceof d)return S;return new d(!1)};p.stop=function(f){return new d(!0,f)}},function(s,n,t){var e=t(11);s.exports=function(a,o){var r=[][a];return!!r&&e(function(){r.call(null,o||function(){throw 1},1)})}},function(s,n){s.exports=` +\v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`},function(s,n,t){var e=t(60),a=t(18),o=t(48);s.exports=function(r,c,g){var d=e(c);d in r?a.f(r,d,o(0,g)):r[d]=g}},function(s,n,t){s.exports=t(209)},function(s,n,t){var e=t(14),a=t(59),o=t(48),r=t(30),c=t(60),g=t(16),d=t(100),p=Object.getOwnPropertyDescriptor;n.f=e?p:function(i,u){if(i=r(i),u=c(u,!0),d)try{return p(i,u)}catch{}if(g(i,u))return o(!a.f.call(i,u),i[u])}},function(s,n,t){var e=t(11),a=t(34),o="".split;s.exports=e(function(){return!Object("z").propertyIsEnumerable(0)})?function(r){return a(r)=="String"?o.call(r,""):Object(r)}:Object},function(s,n,t){var e=t(8),a=t(13),o=e.document,r=a(o)&&a(o.createElement);s.exports=function(c){return r?o.createElement(c):{}}},function(s,n,t){var e=t(43),a=t(103);(s.exports=function(o,r){return a[o]||(a[o]=r!==void 0?r:{})})("versions",[]).push({version:"3.6.4",mode:e?"pure":"global",copyright:"\xA9 2020 Denis Pushkarev (zloirock.ru)"})},function(s,n,t){var e=t(5),a=t(167),o=t(105),r=t(171),c=t(37),g=t(19),d=t(53),p=t(10),f=t(43),i=t(44),u=t(104),l=u.IteratorPrototype,m=u.BUGGY_SAFARI_ITERATORS,v=p("iterator"),h="keys",A="values",y="entries",x=function(){return this};s.exports=function(S,T,R,C,E,D,P){a(R,T,C);var M=function(j){if(j===E&&O)return O;if(!m&&j in B)return B[j];switch(j){case h:return function(){return new R(this,j)};case A:return function(){return new R(this,j)};case y:return function(){return new R(this,j)}}return function(){return new R(this)}},I=T+" Iterator",N=!1,B=S.prototype,F=B[v]||B["@@iterator"]||E&&B[E],O=!m&&F||M(E),H=T=="Array"&&B.entries||F,L,U,z;if(H&&(L=o(H.call(new S)),l!==Object.prototype&&L.next&&(!f&&o(L)!==l&&(r?r(L,l):typeof L[v]!="function"&&g(L,v,x)),c(L,I,!0,!0),f&&(i[I]=x))),E==A&&F&&F.name!==A&&(N=!0,O=function(){return F.call(this)}),(!f||P)&&B[v]!==O&&g(B,v,O),i[T]=O,E)if(U={values:M(A),keys:D?O:M(h),entries:M(y)},P)for(z in U)(m||N||!(z in B))&&d(B,z,U[z]);else e({target:T,proto:!0,forced:m||N},U);return U}},function(s,n,t){var e=t(11);s.exports=!!Object.getOwnPropertySymbols&&!e(function(){return!String(Symbol())})},function(s,n,t){var e=t(25),a=t(169),o=t(80),r=t(51),c=t(108),g=t(73),d=t(63),p=">",f="<",i="prototype",u="script",l=d("IE_PROTO"),m=function(){},v=function(S){return f+u+p+S+f+"/"+u+p},h=function(S){S.write(v("")),S.close();var T=S.parentWindow.Object;return S=null,T},A=function(){var S=g("iframe"),T="java"+u+":",R;return S.style.display="none",c.appendChild(S),S.src=String(T),R=S.contentWindow.document,R.open(),R.write(v("document.F=Object")),R.close(),R.F},y,x=function(){try{y=document.domain&&new ActiveXObject("htmlfile")}catch{}x=y?h(y):A();for(var S=o.length;S--;)delete x[i][o[S]];return x()};r[l]=!0,s.exports=Object.create||function(T,R){var C;return T!==null?(m[i]=e(T),C=new m,m[i]=null,C[l]=T):C=x(),R===void 0?C:a(C,R)}},function(s,n,t){var e=t(30),a=t(35),o=t(79),r=function(c){return function(g,d,p){var f=e(g),i=a(f.length),u=o(p,i),l;if(c&&d!=d){for(;i>u;)if(l=f[u++],l!=l)return!0}else for(;i>u;u++)if((c||u in f)&&f[u]===d)return c||u||0;return!c&&-1}};s.exports={includes:r(!0),indexOf:r(!1)}},function(s,n,t){var e=t(62),a=Math.max,o=Math.min;s.exports=function(r,c){var g=e(r);return g<0?a(g+c,0):o(g,c)}},function(s,n){s.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(s,n,t){var e=t(10),a=e("toStringTag"),o={};o[a]="z",s.exports=String(o)==="[object z]"},function(s,n){s.exports=function(){}},function(s,n){s.exports=function(t,e,a){if(!(t instanceof e))throw TypeError("Incorrect "+(a?a+" ":"")+"invocation");return t}},function(s,n,t){var e=t(36);s.exports=e("navigator","userAgent")||""},function(s,n,t){var e=t(41),a=function(o){var r,c;this.promise=new o(function(g,d){if(r!==void 0||c!==void 0)throw TypeError("Bad Promise constructor");r=g,c=d}),this.resolve=e(r),this.reject=e(c)};s.exports.f=function(o){return new a(o)}},function(s,n,t){var e=t(8),a=t(84),o=e.process,r=o&&o.versions,c=r&&r.v8,g,d;c?(g=c.split("."),d=g[0]+g[1]):a&&(g=a.match(/Edge\/(\d+)/),(!g||g[1]>=74)&&(g=a.match(/Chrome\/(\d+)/),g&&(d=g[1]))),s.exports=d&&+d},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=t(6),d=r.__importDefault(t(267)),p=r.__importDefault(t(280)),f=r.__importDefault(t(281)),i=r.__importDefault(t(282)),u=r.__importDefault(t(301)),l=r.__importStar(t(416)),m=r.__importDefault(t(417)),v=r.__importDefault(t(418)),h=r.__importDefault(t(419)),A=r.__importStar(t(420)),y=r.__importDefault(t(423)),x=r.__importDefault(t(424)),S=r.__importDefault(t(425)),T=r.__importDefault(t(427)),R=r.__importDefault(t(437)),C=r.__importDefault(t(440)),E=r.__importStar(t(441)),D=r.__importDefault(t(23)),P=r.__importDefault(t(134)),M=r.__importDefault(t(24)),I=r.__importDefault(t(33)),N=r.__importDefault(t(38)),B=r.__importDefault(t(39)),F=1,O=function(){function H(L,U){this.pluginsFunctionList={},this.beforeDestroyHooks=[],this.id="wangEditor-"+F++,this.toolbarSelector=L,this.textSelector=U,l.selectorValidator(this),this.config=g.deepClone(d.default),this.$toolbarElem=c.default("
    "),this.$textContainerElem=c.default("
    "),this.$textElem=c.default("
    "),this.toolbarElemId="",this.textElemId="",this.isFocus=!1,this.isComposing=!1,this.isCompatibleMode=!1,this.selection=new p.default(this),this.cmd=new f.default(this),this.txt=new i.default(this),this.menus=new u.default(this),this.zIndex=new x.default,this.change=new S.default(this),this.history=new T.default(this),this.onSelectionChange=new C.default(this);var z=R.default(this),j=z.disable,K=z.enable;this.disable=j,this.enable=K,this.isEnable=!0}return H.prototype.initSelection=function(L){m.default(this,L)},H.prototype.create=function(){this.zIndex.init(this),this.isCompatibleMode=this.config.compatibleMode(),this.isCompatibleMode||(this.config.onchangeTimeout=30),h.default(this),l.default(this),this.txt.init(),this.menus.init(),A.default(this),this.initSelection(!0),v.default(this),this.change.observe(),this.history.observe(),E.default(this)},H.prototype.beforeDestroy=function(L){return this.beforeDestroyHooks.push(L),this},H.prototype.destroy=function(){var L,U=this;(0,o.default)(L=this.beforeDestroyHooks).call(L,function(z){return z.call(U)}),this.$toolbarElem.remove(),this.$textContainerElem.remove()},H.prototype.fullScreen=function(){A.setFullScreen(this)},H.prototype.unFullScreen=function(){A.setUnFullScreen(this)},H.prototype.scrollToHead=function(L){y.default(this,L)},H.registerMenu=function(L,U){!U||typeof U!="function"||(H.globalCustomMenuConstructorList[L]=U)},H.prototype.registerPlugin=function(L,U){E.registerPlugin(L,U,this.pluginsFunctionList)},H.registerPlugin=function(L,U){E.registerPlugin(L,U,H.globalPluginsFunctionList)},H.$=c.default,H.BtnMenu=D.default,H.DropList=P.default,H.DropListMenu=M.default,H.Panel=I.default,H.PanelMenu=N.default,H.Tooltip=B.default,H.globalCustomMenuConstructorList={},H.globalPluginsFunctionList={},H}();n.default=O},function(s,n,t){var e=t(13),a=t(55),o=t(10),r=o("species");s.exports=function(c,g){var d;return a(c)&&(d=c.constructor,typeof d=="function"&&(d===Array||a(d.prototype))?d=void 0:e(d)&&(d=d[r],d===null&&(d=void 0))),new(d===void 0?Array:d)(g===0?0:g)}},function(s,n,t){s.exports=t(185)},function(s,n,t){var e=t(49),a=t(68),o="["+a+"]",r=RegExp("^"+o+o+"*"),c=RegExp(o+o+"*$"),g=function(d){return function(p){var f=String(e(p));return d&1&&(f=f.replace(r,"")),d&2&&(f=f.replace(c,"")),f}};s.exports={start:g(1),end:g(2),trim:g(3)}},function(s,n,t){s.exports=t(205)},function(s,n,t){var e=t(227),a=t(230);function o(r){return typeof a=="function"&&typeof e=="symbol"?s.exports=o=function(g){return typeof g}:s.exports=o=function(g){return g&&typeof a=="function"&&g.constructor===a&&g!==a.prototype?"symbol":typeof g},o(r)}s.exports=o},function(s,n,t){var e=t(10);n.f=e},function(s,n,t){s.exports=t(306)},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(33)),g=function(){function d(p,f){var i=this;this.$elem=p,this.editor=f,this._active=!1,p.on("click",function(u){var l;c.default.hideCurAllPanels(),(0,o.default)(l=f.txt.eventHooks.menuClickEvents).call(l,function(m){return m()}),u.stopPropagation(),f.selection.getRange()!=null&&i.clickHandler(u)})}return d.prototype.clickHandler=function(p){},d.prototype.active=function(){this._active=!0,this.$elem.addClass("w-e-active")},d.prototype.unActive=function(){this._active=!1,this.$elem.removeClass("w-e-active")},(0,a.default)(d.prototype,"isActive",{get:function(){return this._active},enumerable:!1,configurable:!0}),d}();n.default=g},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(28));(0,a.default)(n,"__esModule",{value:!0}),n.getParentNodeA=n.EXTRA_TAG=void 0,n.EXTRA_TAG=["B","FONT","I","STRIKE"];function r(g){for(var d=g.elems[0];d&&(0,o.default)(p=n.EXTRA_TAG).call(p,d.nodeName);){var p;if(d=d.parentElement,d.nodeName==="A")return d}}n.getParentNodeA=r;function c(g){var d,p=g.selection.getSelectionContainerElem();if(!(!((d=p==null?void 0:p.elems)===null||d===void 0)&&d.length))return!1;if(p.getNodeName()==="A")return!0;var f=r(p);return!!(f&&f.nodeName==="A")}n.default=c},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(57)),r=e(t(4)),c=e(t(27));(0,a.default)(n,"__esModule",{value:!0});var g=t(2),d=t(6),p=g.__importDefault(t(135)),f=g.__importDefault(t(136)),i=function(){function u(l){this.editor=l}return u.prototype.insertImg=function(l,m,v){var h=this.editor,A=h.config,y="validate.",x=function(D,P){return P===void 0&&(P=y),h.i18next.t(P+D)},S=l.replace(//g,">");S=S.replace("'",'"');var T="";v&&(T=v.replace("'",'"'),T="data-href='"+encodeURIComponent(T)+"' ");var R="";m&&(R=m.replace(//g,">"),R=R.replace("'",'"'),R="alt='"+R+"' "),h.cmd.do("insertHTML","'),A.linkImgCallback(l,m,v);var C=document.createElement("img");C.onload=function(){C=null},C.onerror=function(){A.customAlert(x("\u63D2\u5165\u56FE\u7247\u9519\u8BEF"),"error","wangEditor: "+x("\u63D2\u5165\u56FE\u7247\u9519\u8BEF")+"\uFF0C"+x("\u56FE\u7247\u94FE\u63A5")+' "'+l+'"\uFF0C'+x("\u4E0B\u8F7D\u94FE\u63A5\u5931\u8D25")),C=null},C.onabort=function(){return C=null},C.src=l},u.prototype.uploadImg=function(l){var m=this;if(!!l.length){var v=this.editor,h=v.config,A="validate.",y=function(Q){return v.i18next.t(A+Q)},x=h.uploadImgServer,S=h.uploadImgShowBase64,T=h.uploadImgMaxSize,R=T/1024/1024,C=h.uploadImgMaxLength,E=h.uploadFileName,D=h.uploadImgParams,P=h.uploadImgParamsWithUrl,M=h.uploadImgHeaders,I=h.uploadImgHooks,N=h.uploadImgTimeout,B=h.withCredentials,F=h.customUploadImg;if(!(!F&&!x&&!S)){var O=[],H=[];if(d.arrForEach(l,function(V){if(!!V){var Q=V.name||V.type.replace("/","."),w=V.size;if(!(!Q||!w)){var G=v.config.uploadImgAccept.join("|"),X=".("+G+")$",tt=new RegExp(X,"i");if(tt.test(Q)===!1){H.push("\u3010"+Q+"\u3011"+y("\u4E0D\u662F\u56FE\u7247"));return}if(TC){h.customAlert(y("\u4E00\u6B21\u6700\u591A\u4E0A\u4F20")+C+y("\u5F20\u56FE\u7247"),"warning");return}if(F&&typeof F=="function"){var L;F(O,(0,o.default)(L=this.insertImg).call(L,this));return}var U=new FormData;if((0,r.default)(O).call(O,function(V,Q){var w=E||V.name;O.length>1&&(w=w+(Q+1)),U.append(w,V)}),x){var z=x.split("#");x=z[0];var j=z[1]||"";(0,r.default)(d).call(d,D,function(V,Q){P&&((0,c.default)(x).call(x,"?")>0?x+="&":x+="?",x=x+V+"="+Q),U.append(V,Q)}),j&&(x+="#"+j);var K=p.default(x,{timeout:N,formData:U,headers:M,withCredentials:!!B,beforeSend:function(Q){if(I.before)return I.before(Q,v,O)},onTimeout:function(Q){h.customAlert(y("\u4E0A\u4F20\u56FE\u7247\u8D85\u65F6"),"error"),I.timeout&&I.timeout(Q,v)},onProgress:function(Q,w){var G=new f.default(v);w.lengthComputable&&(Q=w.loaded/w.total,G.show(Q))},onError:function(Q){h.customAlert(y("\u4E0A\u4F20\u56FE\u7247\u9519\u8BEF"),"error",y("\u4E0A\u4F20\u56FE\u7247\u9519\u8BEF")+"\uFF0C"+y("\u670D\u52A1\u5668\u8FD4\u56DE\u72B6\u6001")+": "+Q.status),I.error&&I.error(Q,v)},onFail:function(Q,w){h.customAlert(y("\u4E0A\u4F20\u56FE\u7247\u5931\u8D25"),"error",y("\u4E0A\u4F20\u56FE\u7247\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF")+("\uFF0C"+y("\u8FD4\u56DE\u7ED3\u679C")+": ")+w),I.fail&&I.fail(Q,v,w)},onSuccess:function(Q,w){if(I.customInsert){var G;I.customInsert((0,o.default)(G=m.insertImg).call(G,m),w,v);return}if(w.errno!="0"){h.customAlert(y("\u4E0A\u4F20\u56FE\u7247\u5931\u8D25"),"error",y("\u4E0A\u4F20\u56FE\u7247\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF")+"\uFF0C"+y("\u8FD4\u56DE\u7ED3\u679C")+" errno="+w.errno),I.fail&&I.fail(Q,v,w);return}var X=w.data;(0,r.default)(X).call(X,function(tt){typeof tt=="string"?m.insertImg(tt):m.insertImg(tt.url,tt.alt,tt.href)}),I.success&&I.success(Q,v,w)}});typeof K=="string"&&h.customAlert(K,"error");return}S&&d.arrForEach(l,function(V){var Q=m,w=new FileReader;w.readAsDataURL(V),w.onload=function(){if(!!this.result){var G=this.result.toString();Q.insertImg(G,G)}}})}}},u}();n.default=i},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(410)),r=e(t(4)),c=e(t(45));(0,a.default)(n,"__esModule",{value:!0}),n.dealTextNode=n.isAllTodo=n.isTodo=n.getCursorNextNode=void 0;function g(u){return u.length?u.attr("class")==="w-e-todo":!1}n.isTodo=g;function d(u){var l=u.selection.getSelectionRangeTopNodes();if(l.length!==0)return(0,o.default)(l).call(l,function(m){return g(m)})}n.isAllTodo=d;function p(u,l,m){var v;if(!!u.hasChildNodes()){var h=u.cloneNode(),A=!1;l.nodeValue===""&&(A=!0);var y=[];return(0,r.default)(v=u.childNodes).call(v,function(x){if(!f(x,l)&&A&&(h.appendChild(x.cloneNode(!0)),x.nodeName!=="BR"&&y.push(x)),f(x,l)){if(x.nodeType===1){var S=p(x,l,m);S&&S.textContent!==""&&(h==null||h.appendChild(S))}if(x.nodeType===3&&l.isEqualNode(x)){var T=i(x,m);h.textContent=T}A=!0}}),(0,r.default)(y).call(y,function(x){var S=x;S.remove()}),h}}n.getCursorNextNode=p;function f(u,l){return u.nodeType===3?u.nodeValue===l.nodeValue:u.contains(l)}function i(u,l,m){m===void 0&&(m=!0);var v=u.nodeValue,h=v==null?void 0:(0,c.default)(v).call(v,0,l);if(v=v==null?void 0:(0,c.default)(v).call(v,l),!m){var A=v;v=h,h=A}return u.nodeValue=h,v}n.dealTextNode=i},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(430),r=function(){function c(g){this.maxSize=g,this.isRe=!1,this.data=new o.CeilStack(g),this.revokeData=new o.CeilStack(g)}return(0,a.default)(c.prototype,"size",{get:function(){return[this.data.size,this.revokeData.size]},enumerable:!1,configurable:!0}),c.prototype.resetMaxSize=function(g){this.data.resetMax(g),this.revokeData.resetMax(g)},c.prototype.save=function(g){return this.isRe&&(this.revokeData.clear(),this.isRe=!1),this.data.instack(g),this},c.prototype.revoke=function(g){!this.isRe&&(this.isRe=!0);var d=this.data.outstack();return d?(this.revokeData.instack(d),g(d),!0):!1},c.prototype.restore=function(g){!this.isRe&&(this.isRe=!0);var d=this.revokeData.outstack();return d?(this.data.instack(d),g(d),!0):!1},c}();n.default=r},function(s,n,t){var e=t(14),a=t(11),o=t(73);s.exports=!e&&!a(function(){return Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a!=7})},function(s,n,t){var e=t(11),a=/#|\.prototype\./,o=function(p,f){var i=c[r(p)];return i==d?!0:i==g?!1:typeof f=="function"?e(f):!!f},r=o.normalize=function(p){return String(p).replace(a,".").toLowerCase()},c=o.data={},g=o.NATIVE="N",d=o.POLYFILL="P";s.exports=o},function(s,n,t){var e=t(103),a=Function.toString;typeof e.inspectSource!="function"&&(e.inspectSource=function(o){return a.call(o)}),s.exports=e.inspectSource},function(s,n,t){var e=t(8),a=t(166),o="__core-js_shared__",r=e[o]||a(o,{});s.exports=r},function(s,n,t){var e=t(105),a=t(19),o=t(16),r=t(10),c=t(43),g=r("iterator"),d=!1,p=function(){return this},f,i,u;[].keys&&(u=[].keys(),"next"in u?(i=e(e(u)),i!==Object.prototype&&(f=i)):d=!0),f==null&&(f={}),!c&&!o(f,g)&&a(f,g,p),s.exports={IteratorPrototype:f,BUGGY_SAFARI_ITERATORS:d}},function(s,n,t){var e=t(16),a=t(31),o=t(63),r=t(168),c=o("IE_PROTO"),g=Object.prototype;s.exports=r?Object.getPrototypeOf:function(d){return d=a(d),e(d,c)?d[c]:typeof d.constructor=="function"&&d instanceof d.constructor?d.constructor.prototype:d instanceof Object?g:null}},function(s,n,t){var e=t(76);s.exports=e&&!Symbol.sham&&typeof Symbol.iterator=="symbol"},function(s,n,t){var e=t(16),a=t(30),o=t(78).indexOf,r=t(51);s.exports=function(c,g){var d=a(c),p=0,f=[],i;for(i in d)!e(r,i)&&e(d,i)&&f.push(i);for(;g.length>p;)e(d,i=g[p++])&&(~o(f,i)||f.push(i));return f}},function(s,n,t){var e=t(36);s.exports=e("document","documentElement")},function(s,n,t){var e=t(8);s.exports=e.Promise},function(s,n,t){var e=t(53);s.exports=function(a,o,r){for(var c in o)r&&r.unsafe&&a[c]?a[c]=o[c]:e(a,c,o[c],r);return a}},function(s,n,t){var e=t(36),a=t(18),o=t(10),r=t(14),c=o("species");s.exports=function(g){var d=e(g),p=a.f;r&&d&&!d[c]&&p(d,c,{configurable:!0,get:function(){return this}})}},function(s,n,t){var e=t(10),a=t(44),o=e("iterator"),r=Array.prototype;s.exports=function(c){return c!==void 0&&(a.Array===c||r[o]===c)}},function(s,n,t){var e=t(65),a=t(44),o=t(10),r=o("iterator");s.exports=function(c){if(c!=null)return c[r]||c["@@iterator"]||a[e(c)]}},function(s,n,t){var e=t(25);s.exports=function(a,o,r,c){try{return c?o(e(r)[0],r[1]):o(r)}catch(d){var g=a.return;throw g!==void 0&&e(g.call(a)),d}}},function(s,n,t){var e=t(10),a=e("iterator"),o=!1;try{var r=0,c={next:function(){return{done:!!r++}},return:function(){o=!0}};c[a]=function(){return this},Array.from(c,function(){throw 2})}catch{}s.exports=function(g,d){if(!d&&!o)return!1;var p=!1;try{var f={};f[a]=function(){return{next:function(){return{done:p=!0}}}},g(f)}catch{}return p}},function(s,n,t){var e=t(25),a=t(41),o=t(10),r=o("species");s.exports=function(c,g){var d=e(c).constructor,p;return d===void 0||(p=e(d)[r])==null?g:a(p)}},function(s,n,t){var e=t(8),a=t(11),o=t(34),r=t(40),c=t(108),g=t(73),d=t(118),p=e.location,f=e.setImmediate,i=e.clearImmediate,u=e.process,l=e.MessageChannel,m=e.Dispatch,v=0,h={},A="onreadystatechange",y,x,S,T=function(D){if(h.hasOwnProperty(D)){var P=h[D];delete h[D],P()}},R=function(D){return function(){T(D)}},C=function(D){T(D.data)},E=function(D){e.postMessage(D+"",p.protocol+"//"+p.host)};(!f||!i)&&(f=function(P){for(var M=[],I=1;arguments.length>I;)M.push(arguments[I++]);return h[++v]=function(){(typeof P=="function"?P:Function(P)).apply(void 0,M)},y(v),v},i=function(P){delete h[P]},o(u)=="process"?y=function(D){u.nextTick(R(D))}:m&&m.now?y=function(D){m.now(R(D))}:l&&!d?(x=new l,S=x.port2,x.port1.onmessage=C,y=r(S.postMessage,S,1)):e.addEventListener&&typeof postMessage=="function"&&!e.importScripts&&!a(E)&&p.protocol!=="file:"?(y=E,e.addEventListener("message",C,!1)):A in g("script")?y=function(D){c.appendChild(g("script"))[A]=function(){c.removeChild(this),T(D)}}:y=function(D){setTimeout(R(D),0)}),s.exports={set:f,clear:i}},function(s,n,t){var e=t(84);s.exports=/(iphone|ipod|ipad).*applewebkit/i.test(e)},function(s,n,t){var e=t(25),a=t(13),o=t(85);s.exports=function(r,c){if(e(r),a(c)&&c.constructor===r)return c;var g=o.f(r),d=g.resolve;return d(c),g.promise}},function(s,n){s.exports=function(t){try{return{error:!1,value:t()}}catch(e){return{error:!0,value:e}}}},function(s,n,t){s.exports=t(197)},function(s,n,t){var e=t(5),a=t(8),o=t(123),r=t(11),c=t(19),g=t(66),d=t(83),p=t(13),f=t(37),i=t(18).f,u=t(32).forEach,l=t(14),m=t(42),v=m.set,h=m.getterFor;s.exports=function(A,y,x){var S=A.indexOf("Map")!==-1,T=A.indexOf("Weak")!==-1,R=S?"set":"add",C=a[A],E=C&&C.prototype,D={},P;if(!l||typeof C!="function"||!(T||E.forEach&&!r(function(){new C().entries().next()})))P=x.getConstructor(y,A,S,R),o.REQUIRED=!0;else{P=y(function(I,N){v(d(I,P,A),{type:A,collection:new C}),N!=null&&g(N,I[R],I,S)});var M=h(A);u(["add","clear","delete","forEach","get","has","set","keys","values","entries"],function(I){var N=I=="add"||I=="set";I in E&&!(T&&I=="clear")&&c(P.prototype,I,function(B,F){var O=M(this).collection;if(!N&&T&&!p(B))return I=="get"?void 0:!1;var H=O[I](B===0?0:B,F);return N?this:H})}),T||i(P.prototype,"size",{configurable:!0,get:function(){return M(this).collection.size}})}return f(P,A,!1,!0),D[A]=P,e({global:!0,forced:!0},D),T||x.setStrong(P,A,S),P}},function(s,n,t){var e=t(51),a=t(13),o=t(16),r=t(18).f,c=t(64),g=t(200),d=c("meta"),p=0,f=Object.isExtensible||function(){return!0},i=function(h){r(h,d,{value:{objectID:"O"+ ++p,weakData:{}}})},u=function(h,A){if(!a(h))return typeof h=="symbol"?h:(typeof h=="string"?"S":"P")+h;if(!o(h,d)){if(!f(h))return"F";if(!A)return"E";i(h)}return h[d].objectID},l=function(h,A){if(!o(h,d)){if(!f(h))return!0;if(!A)return!1;i(h)}return h[d].weakData},m=function(h){return g&&v.REQUIRED&&f(h)&&!o(h,d)&&i(h),h},v=s.exports={REQUIRED:!1,fastKey:u,getWeakData:l,onFreeze:m};e[d]=!0},function(s,n,t){var e=t(18).f,a=t(77),o=t(110),r=t(40),c=t(83),g=t(66),d=t(75),p=t(111),f=t(14),i=t(123).fastKey,u=t(42),l=u.set,m=u.getterFor;s.exports={getConstructor:function(v,h,A,y){var x=v(function(C,E){c(C,x,h),l(C,{type:h,index:a(null),first:void 0,last:void 0,size:0}),f||(C.size=0),E!=null&&g(E,C[y],C,A)}),S=m(h),T=function(C,E,D){var P=S(C),M=R(C,E),I,N;return M?M.value=D:(P.last=M={index:N=i(E,!0),key:E,value:D,previous:I=P.last,next:void 0,removed:!1},P.first||(P.first=M),I&&(I.next=M),f?P.size++:C.size++,N!=="F"&&(P.index[N]=M)),C},R=function(C,E){var D=S(C),P=i(E),M;if(P!=="F")return D.index[P];for(M=D.first;M;M=M.next)if(M.key==E)return M};return o(x.prototype,{clear:function(){for(var E=this,D=S(E),P=D.index,M=D.first;M;)M.removed=!0,M.previous&&(M.previous=M.previous.next=void 0),delete P[M.index],M=M.next;D.first=D.last=void 0,f?D.size=0:E.size=0},delete:function(C){var E=this,D=S(E),P=R(E,C);if(P){var M=P.next,I=P.previous;delete D.index[P.index],P.removed=!0,I&&(I.next=M),M&&(M.previous=I),D.first==P&&(D.first=M),D.last==P&&(D.last=I),f?D.size--:E.size--}return!!P},forEach:function(E){for(var D=S(this),P=r(E,arguments.length>1?arguments[1]:void 0,3),M;M=M?M.next:D.first;)for(P(M.value,M.key,this);M&&M.removed;)M=M.previous},has:function(E){return!!R(this,E)}}),o(x.prototype,A?{get:function(E){var D=R(this,E);return D&&D.value},set:function(E,D){return T(this,E===0?0:E,D)}}:{add:function(E){return T(this,E=E===0?0:E,E)}}),f&&e(x.prototype,"size",{get:function(){return S(this).size}}),x},setStrong:function(v,h,A){var y=h+" Iterator",x=m(h),S=m(y);d(v,h,function(T,R){l(this,{type:y,target:T,state:x(T),kind:R,last:void 0})},function(){for(var T=S(this),R=T.kind,C=T.last;C&&C.removed;)C=C.previous;return!T.target||!(T.last=C=C?C.next:T.state.first)?(T.target=void 0,{value:void 0,done:!0}):R=="keys"?{value:C.key,done:!1}:R=="values"?{value:C.value,done:!1}:{value:[C.key,C.value],done:!1}},A?"entries":"values",!A,!0),p(h)}}},function(s,n,t){var e=t(12);e("iterator")},function(s,n,t){var e=t(107),a=t(80),o=a.concat("length","prototype");n.f=Object.getOwnPropertyNames||function(c){return e(c,o)}},function(s,n){n.f=Object.getOwnPropertySymbols},function(s,n,t){s.exports=t(268)},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.default={zIndex:1e4}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.default={focus:!0,height:300,placeholder:"\u8BF7\u8F93\u5165\u6B63\u6587",zIndexFullScreen:10002,showFullScreen:!0}},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0}),n.getPasteImgs=n.getPasteHtml=n.getPasteText=void 0;var r=t(2),c=t(6),g=r.__importDefault(t(292));function d(i){var u=i.clipboardData,l="";return u==null?l=window.clipboardData&&window.clipboardData.getData("text"):l=u.getData("text/plain"),c.replaceHtmlSymbol(l)}n.getPasteText=d;function p(i,u,l){u===void 0&&(u=!0),l===void 0&&(l=!1);var m=i.clipboardData,v="";if(m&&(v=m.getData("text/html")),!v){var h=d(i);if(!h)return"";v="

    "+h+"

    "}return v=v.replace(/<(\d)/gm,function(A,y){return"<"+y}),v=v.replace(/<(\/?meta.*?)>/gim,""),v=g.default(v,u,l),v}n.getPasteHtml=p;function f(i){var u,l=[],m=d(i);if(m)return l;var v=(u=i.clipboardData)===null||u===void 0?void 0:u.items;return v&&(0,o.default)(c).call(c,v,function(h,A){var y=A.type;/image/i.test(y)&&l.push(A.getAsFile())}),l}n.getPasteImgs=f},function(s,n,t){s.exports=t(294)},function(s,n,t){s.exports=t(310)},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4)),r=e(t(46));(0,a.default)(n,"__esModule",{value:!0});var c=t(2),g=c.__importDefault(t(3)),d=t(7),p=function(){function f(i,u){var l=this;this.hideTimeoutId=0,this.menu=i,this.conf=u;var m=g.default('
    '),v=g.default("

    "+u.title+"

    ");v.addClass("w-e-dp-title"),m.append(v);var h=u.list||[],A=u.type||"list",y=u.clickHandler||d.EMPTY_FN,x=g.default('
      ');(0,o.default)(h).call(h,function(S){var T=S.$elem,R=S.value,C=g.default('
    • ');T&&(C.append(T),x.append(C),C.on("click",function(E){y(R),E.stopPropagation(),l.hideTimeoutId=(0,r.default)(function(){l.hide()})}))}),m.append(x),m.on("mouseleave",function(){l.hideTimeoutId=(0,r.default)(function(){l.hide()})}),this.$container=m,this.rendered=!1,this._show=!1}return f.prototype.show=function(){this.hideTimeoutId&&clearTimeout(this.hideTimeoutId);var i=this.menu,u=i.$elem,l=this.$container;if(!this._show){if(this.rendered)l.show();else{var m=u.getBoundingClientRect().height||0,v=this.conf.width||100;l.css("margin-top",m+"px").css("width",v+"px"),u.append(l),this.rendered=!0}this._show=!0}},f.prototype.hide=function(){var i=this.$container;!this._show||(i.hide(),this._show=!1)},(0,a.default)(f.prototype,"isShow",{get:function(){return this._show},enumerable:!1,configurable:!0}),f}();n.default=p},function(s,n,t){var e=t(0),a=e(t(92)),o=e(t(1)),r=e(t(4));(0,o.default)(n,"__esModule",{value:!0});var c=t(6);function g(d,p){var f=new XMLHttpRequest;if(f.open("POST",d),f.timeout=p.timeout||10*1e3,f.ontimeout=function(){console.error("wangEditor - \u8BF7\u6C42\u8D85\u65F6"),p.onTimeout&&p.onTimeout(f)},f.upload&&(f.upload.onprogress=function(u){var l=u.loaded/u.total;p.onProgress&&p.onProgress(l,u)}),p.headers&&(0,r.default)(c).call(c,p.headers,function(u,l){f.setRequestHeader(u,l)}),f.withCredentials=!!p.withCredentials,p.beforeSend){var i=p.beforeSend(f);if(i&&(0,a.default)(i)==="object"&&i.prevent)return i.msg}return f.onreadystatechange=function(){if(f.readyState===4){var u=f.status;if(!(u<200)&&!(u>=300&&u<400)){if(u>=400){console.error("wangEditor - XHR \u62A5\u9519\uFF0C\u72B6\u6001\u7801 "+u),p.onError&&p.onError(f);return}var l=f.responseText,m;if((0,a.default)(l)!=="object")try{m=JSON.parse(l)}catch{console.error("wangEditor - \u8FD4\u56DE\u7ED3\u679C\u4E0D\u662F JSON \u683C\u5F0F",l),p.onFail&&p.onFail(f,l);return}else m=l;p.onSuccess(f,m)}}},f.send(p.formData||null),f}n.default=g},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(342)),r=e(t(46));(0,a.default)(n,"__esModule",{value:!0});var c=t(2),g=c.__importDefault(t(3)),d=function(){function p(f){this.editor=f,this.$textContainer=f.$textContainerElem,this.$bar=g.default('
      '),this.isShow=!1,this.time=0,this.timeoutId=0}return p.prototype.show=function(f){var i=this;if(!this.isShow){this.isShow=!0;var u=this.$bar,l=this.$textContainer;l.append(u),(0,o.default)()-this.time>100&&f<=1&&(u.css("width",f*100+"%"),this.time=(0,o.default)());var m=this.timeoutId;m&&clearTimeout(m),this.timeoutId=(0,r.default)(function(){i.hide()},500)}},p.prototype.hide=function(){var f=this.$bar;f.remove(),this.isShow=!1,this.time=0,this.timeoutId=0},p}();n.default=d},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.ListType=void 0;var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(24)),g=t(47),d=o.__importStar(t(371)),p;(function(i){i.OrderedList="OL",i.UnorderedList="UL"})(p=n.ListType||(n.ListType={}));var f=function(i){o.__extends(u,i);function u(l){var m=this,v=r.default(`
      + +
      `),h={width:130,title:"\u5E8F\u5217",type:"list",list:[{$elem:r.default(` +

      + + `+l.i18next.t("menus.dropListMenu.list.\u65E0\u5E8F\u5217\u8868")+` +

      `),value:p.UnorderedList},{$elem:r.default(`

      + + `+l.i18next.t("menus.dropListMenu.list.\u6709\u5E8F\u5217\u8868")+` +

      `),value:p.OrderedList}],clickHandler:function(y){m.command(y)}};return m=i.call(this,v,l,h)||this,m}return u.prototype.command=function(l){var m=this.editor,v=m.selection.getSelectionContainerElem();v!==void 0&&(this.handleSelectionRangeNodes(l),this.tryChangeActive())},u.prototype.validator=function(l,m,v){return!(!l.length||!m.length||v.equal(l)||v.equal(m))},u.prototype.handleSelectionRangeNodes=function(l){var m=this.editor,v=m.selection,h=l.toLowerCase(),A=v.getSelectionContainerElem(),y=v.getSelectionStartElem().getNodeTop(m),x=v.getSelectionEndElem().getNodeTop(m);if(!!this.validator(y,x,m.$textElem)){var S=v.getRange(),T=S==null?void 0:S.collapsed;m.$textElem.equal(A)||(A=A.getNodeTop(m));var R={editor:m,listType:l,listTarget:h,$selectionElem:A,$startElem:y,$endElem:x},C;this.isOrderElem(A)?C=d.ClassType.Wrap:this.isOrderElem(y)&&this.isOrderElem(x)?C=d.ClassType.Join:this.isOrderElem(y)?C=d.ClassType.StartJoin:this.isOrderElem(x)?C=d.ClassType.EndJoin:C=d.ClassType.Other;var E=new d.default(d.createListHandle(C,R,S));g.updateRange(m,E.getSelectionRangeElem(),!!T)}},u.prototype.isOrderElem=function(l){var m=l.getNodeName();return m===p.OrderedList||m===p.UnorderedList},u.prototype.tryChangeActive=function(){},u}(c.default);n.default=f},function(s,n,t){s.exports=t(395)},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});function o(r){var c=r.selection.getSelectionContainerElem();return c!=null&&c.length?!!(c.getNodeName()=="CODE"||c.getNodeName()=="PRE"||c.parent().getNodeName()=="CODE"||c.parent().getNodeName()=="PRE"||/hljs/.test(c.parent().attr("class"))):!1}n.default=o},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(29));(0,a.default)(n,"__esModule",{value:!0}),n.todo=void 0;var r=t(2),c=r.__importDefault(t(3)),g=function(){function p(f){var i;this.template='

      ',this.checked=!1,this.$todo=c.default(this.template),this.$child=(i=f==null?void 0:f.childNodes())===null||i===void 0?void 0:i.clone(!0)}return p.prototype.init=function(){var f=this.$child,i=this.getInputContainer();f&&f.insertAfter(i)},p.prototype.getInput=function(){var f=this.$todo,i=(0,o.default)(f).call(f,"input");return i},p.prototype.getInputContainer=function(){var f=this.getInput().parent();return f},p.prototype.getTodo=function(){return this.$todo},p}();n.todo=g;function d(p){var f=new g(p);return f.init(),f}n.default=d},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2);t(146),t(148),t(152),t(154),t(156),t(158),t(160);var r=o.__importDefault(t(87));o.__exportStar(t(442),n);try{}catch{throw new Error("\u8BF7\u5728\u6D4F\u89C8\u5668\u73AF\u5883\u4E0B\u8FD0\u884C")}n.default=r.default},function(s,n,t){var e=t(143);s.exports=e},function(s,n,t){t(144);var e=t(9),a=e.Object,o=s.exports=function(c,g,d){return a.defineProperty(c,g,d)};a.defineProperty.sham&&(o.sham=!0)},function(s,n,t){var e=t(5),a=t(14),o=t(18);e({target:"Object",stat:!0,forced:!a,sham:!a},{defineProperty:o.f})},function(s,n){var t;t=function(){return this}();try{t=t||new Function("return this")()}catch{typeof window=="object"&&(t=window)}s.exports=t},function(s,n,t){var e=t(20),a=t(147);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21);n=e(!1),n.push([s.i,`.w-e-toolbar, +.w-e-text-container, +.w-e-menu-panel { + padding: 0; + margin: 0; + box-sizing: border-box; + background-color: #fff; + /*\u8868\u60C5\u83DC\u5355\u6837\u5F0F*/ + /*\u5206\u5272\u7EBF\u6837\u5F0F*/ +} +.w-e-toolbar h1, +.w-e-text-container h1, +.w-e-menu-panel h1 { + font-size: 32px !important; +} +.w-e-toolbar h2, +.w-e-text-container h2, +.w-e-menu-panel h2 { + font-size: 24px !important; +} +.w-e-toolbar h3, +.w-e-text-container h3, +.w-e-menu-panel h3 { + font-size: 18.72px !important; +} +.w-e-toolbar h4, +.w-e-text-container h4, +.w-e-menu-panel h4 { + font-size: 16px !important; +} +.w-e-toolbar h5, +.w-e-text-container h5, +.w-e-menu-panel h5 { + font-size: 13.28px !important; +} +.w-e-toolbar p, +.w-e-text-container p, +.w-e-menu-panel p { + font-size: 16px !important; +} +.w-e-toolbar .eleImg, +.w-e-text-container .eleImg, +.w-e-menu-panel .eleImg { + cursor: pointer; + display: inline-block; + font-size: 18px; + padding: 0 3px; +} +.w-e-toolbar *, +.w-e-text-container *, +.w-e-menu-panel * { + padding: 0; + margin: 0; + box-sizing: border-box; +} +.w-e-toolbar hr, +.w-e-text-container hr, +.w-e-menu-panel hr { + cursor: pointer; + display: block; + height: 0px; + border: 0; + border-top: 3px solid #ccc; + margin: 20px 0; +} +.w-e-clear-fix:after { + content: ""; + display: table; + clear: both; +} +.w-e-drop-list-item { + position: relative; + top: 1px; + padding-right: 7px; + color: #333 !important; +} +.w-e-drop-list-tl { + padding-left: 10px; + text-align: left; +} +`,""]),s.exports=n},function(s,n,t){var e=t(20),a=t(149);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21),a=t(150),o=t(151);n=e(!1);var r=a(o);n.push([s.i,`@font-face { + font-family: 'w-e-icon'; + src: url(`+r+`) format('truetype'); + font-weight: normal; + font-style: normal; +} +[class^="w-e-icon-"], +[class*=" w-e-icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'w-e-icon' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.w-e-icon-close:before { + content: "\\f00d"; +} +.w-e-icon-upload2:before { + content: "\\e9c6"; +} +.w-e-icon-trash-o:before { + content: "\\f014"; +} +.w-e-icon-header:before { + content: "\\f1dc"; +} +.w-e-icon-pencil2:before { + content: "\\e906"; +} +.w-e-icon-paint-brush:before { + content: "\\f1fc"; +} +.w-e-icon-image:before { + content: "\\e90d"; +} +.w-e-icon-play:before { + content: "\\e912"; +} +.w-e-icon-location:before { + content: "\\e947"; +} +.w-e-icon-undo:before { + content: "\\e965"; +} +.w-e-icon-redo:before { + content: "\\e966"; +} +.w-e-icon-quotes-left:before { + content: "\\e977"; +} +.w-e-icon-list-numbered:before { + content: "\\e9b9"; +} +.w-e-icon-list2:before { + content: "\\e9bb"; +} +.w-e-icon-link:before { + content: "\\e9cb"; +} +.w-e-icon-happy:before { + content: "\\e9df"; +} +.w-e-icon-bold:before { + content: "\\ea62"; +} +.w-e-icon-underline:before { + content: "\\ea63"; +} +.w-e-icon-italic:before { + content: "\\ea64"; +} +.w-e-icon-strikethrough:before { + content: "\\ea65"; +} +.w-e-icon-table2:before { + content: "\\ea71"; +} +.w-e-icon-paragraph-left:before { + content: "\\ea77"; +} +.w-e-icon-paragraph-center:before { + content: "\\ea78"; +} +.w-e-icon-paragraph-right:before { + content: "\\ea79"; +} +.w-e-icon-paragraph-justify:before { + content: "\\ea7a"; +} +.w-e-icon-terminal:before { + content: "\\f120"; +} +.w-e-icon-page-break:before { + content: "\\ea68"; +} +.w-e-icon-cancel-circle:before { + content: "\\ea0d"; +} +.w-e-icon-font:before { + content: "\\ea5c"; +} +.w-e-icon-text-heigh:before { + content: "\\ea5f"; +} +.w-e-icon-paint-format:before { + content: "\\e90c"; +} +.w-e-icon-indent-increase:before { + content: "\\ea7b"; +} +.w-e-icon-indent-decrease:before { + content: "\\ea7c"; +} +.w-e-icon-row-height:before { + content: "\\e9be"; +} +.w-e-icon-fullscreen_exit:before { + content: "\\e900"; +} +.w-e-icon-fullscreen:before { + content: "\\e901"; +} +.w-e-icon-split-line:before { + content: "\\ea0b"; +} +.w-e-icon-checkbox-checked:before { + content: "\\ea52"; +} +`,""]),s.exports=n},function(s,n,t){s.exports=function(e,a){return a||(a={}),e=e&&e.__esModule?e.default:e,typeof e!="string"?e:(/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),a.hash&&(e+=a.hash),/["'() \t\n]/.test(e)||a.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e)}},function(s,n,t){t.r(n),n.default="data:font/woff;base64,d09GRgABAAAAABskAAsAAAAAGtgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIPFWNtYXAAAAFoAAABHAAAARz2mfAgZ2FzcAAAAoQAAAAIAAAACAAAABBnbHlmAAACjAAAFXwAABV8IH7+mGhlYWQAABgIAAAANgAAADYb6gumaGhlYQAAGEAAAAAkAAAAJAkjBWlobXR4AAAYZAAAAKQAAACkmYcEbmxvY2EAABkIAAAAVAAAAFReAmKYbWF4cAAAGVwAAAAgAAAAIAA0ALZuYW1lAAAZfAAAAYYAAAGGmUoJ+3Bvc3QAABsEAAAAIAAAACAAAwAAAAMD7wGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8fwDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAQAAAAA8ACAABAAcAAEAIOkB6QbpDekS6UfpZul36bnpu+m+6cbpy+nf6gvqDepS6lzqX+pl6nHqfPAN8BTxIPHc8fz//f//AAAAAAAg6QDpBukM6RLpR+ll6Xfpuem76b7pxunL6d/qC+oN6lLqXOpf6mLqcep38A3wFPEg8dzx/P/9//8AAf/jFwQXABb7FvcWwxamFpYWVRZUFlIWSxZHFjQWCRYIFcQVuxW5FbcVrBWnEBcQEQ8GDksOLAADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAAEAEEAAQO/A38ABQALABEAFwAAATMVIREzAxEhFSMVATUzESE1ETUhESM1Av/A/sJ+fgE+wP4Cfv7CAT5+Ar9+AT78ggE+fsACvsD+wn7+An7+wsAAAAAABABBAAEDvwN/AAUACwARABcAAAEhESM1IxM1MxEhNQERIRUjFREVMxUhEQKBAT5+wMB+/sL9wAE+wMD+wgN//sLA/X7A/sJ+AcIBPn7A/v7AfgE+AAAAAAIAAP/ABAADwAAEABMAAAE3AScBAy4BJxM3ASMBAyUBNQEHAYCAAcBA/kCfFzsyY4ABgMD+gMACgAGA/oBOAUBAAcBA/kD+nTI7FwERTgGA/oD9gMABgMD+gIAAAgAA/8AEAAOAACkALQAAAREjNTQmIyEiBh0BFBYzITI2PQEzESEVIyIGFREUFjsBMjY1ETQmKwE1ASE1IQQAwCYa/UAaJiYaAsAaJoD9wCANExMNgA0TEw0gAUD9QALAAYABgEAaJiYawBomJhpA/wCAEw3+wA0TEw0BQA0TQAGAQAAABAAAAAAEAAOAABAAIQAtADQAAAE4ATEROAExITgBMRE4ATEhNSEiBhURFBYzITI2NRE0JiMHFAYjIiY1NDYzMhYTITUTATM3A8D8gAOA/IAaJiYaA4AaJiYagDgoKDg4KCg4QP0A4AEAQOADQP0AAwBAJhr9ABomJhoDABom4Cg4OCgoODj9uIABgP7AwAAAAgAAAEAEAANAADgAPAAAASYnLgEnJiMiBw4BBwYHBgcOAQcGFRQXHgEXFhcWFx4BFxYzMjc+ATc2NzY3PgE3NjU0Jy4BJyYnARENAQPVNjg5djw9Pz89PHY5ODYLBwgLAwMDAwsIBws2ODl2PD0/Pz08djk4NgsHCAsDAwMDCwgHC/2rAUD+wAMgCAYGCAICAgIIBgYIKSoqWS0uLy8uLVkqKikIBgYIAgICAggGBggpKipZLS4vLy4tWSoqKf3gAYDAwAAAAAACAMD/wANAA8AAGwAnAAABIgcOAQcGFRQXHgEXFjEwNz4BNzY1NCcuAScmAyImNTQ2MzIWFRQGAgBCOzpXGRkyMngyMjIyeDIyGRlXOjtCUHBwUFBwcAPAGRlXOjtCeH19zEFBQUHMfX14Qjs6VxkZ/gBwUFBwcFBQcAAAAQAAAAAEAAOAACsAAAEiBw4BBwYHJxEhJz4BMzIXHgEXFhUUBw4BBwYHFzY3PgE3NjU0Jy4BJyYjAgA1MjJcKSkjlgGAkDWLUFBFRmkeHgkJIhgYHlUoICAtDAwoKIteXWoDgAoLJxscI5b+gJA0PB4eaUZFUCsoKUkgIRpgIysrYjY2OWpdXosoKAABAAAAAAQAA4AAKgAAExQXHgEXFhc3JicuAScmNTQ3PgE3NjMyFhcHIREHJicuAScmIyIHDgEHBgAMDC0gIChVHhgYIgkJHh5pRkVQUIs1kAGAliMpKVwyMjVqXV6LKCgBgDk2NmIrKyNgGiEgSSkoK1BFRmkeHjw0kAGAliMcGycLCigoi15dAAAAAAIAAABABAEDAAAmAE0AABMyFx4BFxYVFAcOAQcGIyInLgEnJjUnNDc+ATc2MxUiBgcOAQc+ASEyFx4BFxYVFAcOAQcGIyInLgEnJjUnNDc+ATc2MxUiBgcOAQc+AeEuKSk9ERISET0pKS4uKSk9ERIBIyN6UlFdQHUtCRAHCBICSS4pKT0REhIRPSkpLi4pKT0REgEjI3pSUV1AdS0JEAcIEgIAEhE9KSkuLikpPRESEhE9KSkuIF1RUnojI4AwLggTCgIBEhE9KSkuLikpPRESEhE9KSkuIF1RUnojI4AwLggTCgIBAAAGAED/wAQAA8AAAwAHAAsAEQAdACkAACUhFSERIRUhESEVIScRIzUjNRMVMxUjNTc1IzUzFRURIzUzNSM1MzUjNQGAAoD9gAKA/YACgP2AwEBAQIDAgIDAwICAgICAgAIAgAIAgMD/AMBA/fIyQJI8MkCS7v7AQEBAQEAABgAA/8AEAAPAAAMABwALABcAIwAvAAABIRUhESEVIREhFSEBNDYzMhYVFAYjIiYRNDYzMhYVFAYjIiYRNDYzMhYVFAYjIiYBgAKA/YACgP2AAoD9gP6ASzU1S0s1NUtLNTVLSzU1S0s1NUtLNTVLA4CA/wCA/wCAA0A1S0s1NUtL/rU1S0s1NUtL/rU1S0s1NUtLAAUAAABABWADAAADAAcACwAOABEAABMhFSEVIRUhFSEVIQEXNzUnBwADgPyAA4D8gAOA/IAD4MDAwMADAMBAwEDAAUDAwEDAwAAAAAADAAAAAAQAA6AAAwANABQAADchFSElFSE1EyEVITUhJQkBIxEjEQAEAPwABAD8AIABAAEAAQD9YAEgASDggEBAwEBAAQCAgMABIP7g/wABAAAAAAACAB7/zAPiA7QAMwBkAAABIiYnJicmNDc2PwE+ATMyFhcWFxYUBwYPAQYiJyY0PwE2NCcuASMiBg8BBhQXFhQHDgEjAyImJyYnJjQ3Nj8BNjIXFhQPAQYUFx4BMzI2PwE2NCcmNDc2MhcWFxYUBwYPAQ4BIwG4ChMIIxISEhIjwCNZMTFZIyMSEhISI1gPLA8PD1gpKRQzHBwzFMApKQ8PCBMKuDFZIyMSEhISI1gPLA8PD1gpKRQzHBwzFMApKQ8PDysQIxISEhIjwCNZMQFECAckLS1eLS0kwCIlJSIkLS1eLS0kVxAQDysPWCl0KRQVFRTAKXQpDysQBwj+iCUiJC0tXi0tJFcQEA8rD1gpdCkUFRUUwCl0KQ8rEA8PJC0tXi0tJMAiJQAAAAAFAAD/wAQAA8AAGwA3AFMAXwBrAAAFMjc+ATc2NTQnLgEnJiMiBw4BBwYVFBceARcWEzIXHgEXFhUUBw4BBwYjIicuAScmNTQ3PgE3NhMyNz4BNzY3BgcOAQcGIyInLgEnJicWFx4BFxYnNDYzMhYVFAYjIiYlNDYzMhYVFAYjIiYCAGpdXosoKCgoi15dampdXosoKCgoi15dalZMTHEgISEgcUxMVlZMTHEgISEgcUxMVisrKlEmJiMFHBtWODc/Pzc4VhscBSMmJlEqK9UlGxslJRsbJQGAJRsbJSUbGyVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoA6AhIHFMTFZWTExxICEhIHFMTFZWTExxICH+CQYGFRAQFEM6OlYYGRkYVjo6QxQQEBUGBvcoODgoKDg4KCg4OCgoODgAAAEAAAFABAACQAAPAAATFRQWMyEyNj0BNCYjISIGABMNA8ANExMN/EANEwIgwA0TEw3ADRMTAAAAAwAA/8AEAAPAABsANwBDAAABIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmAyInLgEnJjU0Nz4BNzYzMhceARcWFRQHDgEHBhMHJwcXBxc3FzcnNwIAal1eiygoKCiLXl1qal1eiygoKCiLXl1qVkxMcSAhISBxTExWVkxMcSAhISBxTExKoKBgoKBgoKBgoKADwCgoi15dampdXosoKCgoi15dampdXosoKPxgISBxTExWVkxMcSAhISBxTExWVkxMcSAhAqCgoGCgoGCgoGCgoAACAAD/wAQAA8AADwAVAAABISIGFREUFjMhMjY1ETQmASc3FwEXA4D9ADVLSzUDADVLS/4L7VqTATNaA8BLNf0ANUtLNQMANUv85e5akgEyWgAAAAABAGX/wAObA8AAKQAAASImIyIHDgEHBhUUFjMuATU0NjcwBwYCBwYHFSETMzcjNx4BMzI2Nw4BAyBEaEZxU1RtGhtJSAYNZUoQEEs8PFkBPWzGLNc0LVUmLlAYHT0DsBAeHWE+P0FNOwsmN5lvA31+/sWPkCMZAgCA9gkPN2sJBwAAAAACAAAAAAQAA4AACQAXAAAlMwcnMxEjNxcjJREnIxEzFSE1MxEjBxEDgICgoICAoKCA/wBAwID+gIDAQMDAwAIAwMDA/wCA/UBAQALAgAEAAAMAwAAAA0ADgAAWAB8AKAAAAT4BNTQnLgEnJiMhESEyNz4BNzY1NCYBMzIWFRQGKwETIxEzMhYVFAYCxBwgFBRGLi81/sABgDUvLkYUFET+hGUqPDwpZp+fnyw+PgHbIlQvNS8uRhQU/IAUFEYuLzVGdAFGSzU1S/6AAQBLNTVLAAAAAAIAwAAAA0ADgAAfACMAAAEzERQHDgEHBiMiJy4BJyY1ETMRFBYXHgEzMjY3PgE1ASEVIQLAgBkZVzo7QkI7OlcZGYAbGBxJKChJHBgb/gACgP2AA4D+YDw0NU4WFxcWTjU0PAGg/mAeOBcYGxsYFzge/qCAAAAAAAEAgAAAA4ADgAALAAABFSMBMxUhNTMBIzUDgID+wID+QIABQIADgED9AEBAAwBAAAEAAAAABAADgAA9AAABFSMeARUUBgcOASMiJicuATUzFBYzMjY1NCYjITUhLgEnLgE1NDY3PgEzMhYXHgEVIzQmIyIGFRQWMzIWFwQA6xUWNTAscT4+cSwwNYByTk5yck7+AAEsAgQBMDU1MCxxPj5xLDA1gHJOTnJyTjtuKwHAQB1BIjViJCEkJCEkYjU0TEw0NExAAQMBJGI1NWIkISQkISRiNTRMTDQ0TCEfAAAACgAAAAAEAAOAAAMABwALAA8AEwAXABsAHwAjACcAABMRIREBNSEVHQEhNQEVITUjFSE1ESEVISUhFSERNSEVASEVISE1IRUABAD9gAEA/wABAP8AQP8AAQD/AAKAAQD/AAEA/IABAP8AAoABAAOA/IADgP3AwMBAwMACAMDAwMD/AMDAwAEAwMD+wMDAwAAABQAAAAAEAAOAAAMABwALAA8AEwAAEyEVIRUhFSERIRUhESEVIREhFSEABAD8AAKA/YACgP2ABAD8AAQA/AADgIBAgP8AgAFAgP8AgAAAAAAFAAAAAAQAA4AAAwAHAAsADwATAAATIRUhFyEVIREhFSEDIRUhESEVIQAEAPwAwAKA/YACgP2AwAQA/AAEAPwAA4CAQID/AIABQID/AIAAAAUAAAAABAADgAADAAcACwAPABMAABMhFSEFIRUhESEVIQEhFSERIRUhAAQA/AABgAKA/YACgP2A/oAEAPwABAD8AAOAgECA/wCAAUCA/wCAAAAAAAUAAAAABAADgAADAAcACwAPABMAABMhFSEVIRUhFSEVIRUhFSEVIRUhAAQA/AAEAPwABAD8AAQA/AAEAPwAA4CAQIBAgECAQIAAAAAGAAAAAAQAA4AAAwAHAAsADwATABYAABMhFSEFIRUhFSEVIRUhFSEFIRUhGQEFAAQA/AABgAKA/YACgP2AAoD9gP6ABAD8AAEAA4CAQIBAgECAQIABAAGAwAAAAAYAAAAABAADgAADAAcACwAPABMAFgAAEyEVIQUhFSEVIRUhFSEVIQUhFSEBESUABAD8AAGAAoD9gAKA/YACgP2A/oAEAPwAAQD/AAOAgECAQIBAgECAAoD+gMAAAQA/AD8C5gLmACwAACUUDwEGIyIvAQcGIyIvASY1ND8BJyY1ND8BNjMyHwE3NjMyHwEWFRQPARcWFQLmEE4QFxcQqKgQFxYQThAQqKgQEE4QFhcQqKgQFxcQThAQqKgQwxYQThAQqKgQEE4QFhcQqKgQFxcQThAQqKgQEE4QFxcQqKgQFwAAAAYAAAAAAyUDbgAUACgAPABNAFUAggAAAREUBwYrASInJjURNDc2OwEyFxYVMxEUBwYrASInJjURNDc2OwEyFxYXERQHBisBIicmNRE0NzY7ATIXFhMRIREUFxYXFjMhMjc2NzY1ASEnJicjBgcFFRQHBisBERQHBiMhIicmNREjIicmPQE0NzY7ATc2NzY7ATIXFh8BMzIXFhUBJQYFCCQIBQYGBQgkCAUGkgUFCCUIBQUFBQglCAUFkgUFCCUIBQUFBQglCAUFSf4ABAQFBAIB2wIEBAQE/oABABsEBrUGBAH3BgUINxobJv4lJhsbNwgFBQUFCLEoCBcWF7cXFhYJKLAIBQYCEv63CAUFBQUIAUkIBQYGBQj+twgFBQUFCAFJCAUGBgUI/rcIBQUFBQgBSQgFBgYF/lsCHf3jDQsKBQUFBQoLDQJmQwUCAgVVJAgGBf3jMCIjISIvAiAFBggkCAUFYBUPDw8PFWAFBQgAAgAHAEkDtwKvABoALgAACQEGIyIvASY1ND8BJyY1ND8BNjMyFwEWFRQHARUUBwYjISInJj0BNDc2MyEyFxYBTv72BgcIBR0GBuHhBgYdBQgHBgEKBgYCaQUFCP3bCAUFBQUIAiUIBQUBhf72BgYcBggHBuDhBgcHBh0FBf71BQgHBv77JQgFBQUFCCUIBQUFBQAAAAEAIwAAA90DbgCzAAAlIicmIyIHBiMiJyY1NDc2NzY3Njc2PQE0JyYjISIHBh0BFBcWFxYzFhcWFRQHBiMiJyYjIgcGIyInJjU0NzY3Njc2NzY9ARE0NTQ1NCc0JyYnJicmJyYnJiMiJyY1NDc2MzIXFjMyNzYzMhcWFRQHBiMGBwYHBh0BFBcWMyEyNzY9ATQnJicmJyY1NDc2MzIXFjMyNzYzMhcWFRQHBgciBwYHBhURFBcWFxYXMhcWFRQHBiMDwRkzMhoZMjMZDQgHCQoNDBEQChIBBxX+fhYHARUJEhMODgwLBwcOGzU1GhgxMRgNBwcJCQsMEA8JEgECAQIDBAQFCBIRDQ0KCwcHDho1NRoYMDEYDgcHCQoMDRAQCBQBBw8BkA4HARQKFxcPDgcHDhkzMhkZMTEZDgcHCgoNDRARCBQUCRERDg0KCwcHDgACAgICDAsPEQkJAQEDAwUMROAMBQMDBQzUUQ0GAQIBCAgSDwwNAgICAgwMDhEICQECAwMFDUUhAdACDQ0ICA4OCgoLCwcHAwYBAQgIEg8MDQICAgINDA8RCAgBAgEGDFC2DAcBAQcMtlAMBgEBBgcWDwwNAgICAg0MDxEICAEBAgYNT/3mRAwGAgIBCQgRDwwNAAACAAD/twP/A7cAEwA5AAABMhcWFRQHAgcGIyInJjU0NwE2MwEWFxYfARYHBiMiJyYnJicmNRYXFhcWFxYzMjc2NzY3Njc2NzY3A5soHh4avkw3RUg0NDUBbSEp/fgXJicvAQJMTHtHNjYhIRARBBMUEBASEQkXCA8SExUVHR0eHikDtxsaKCQz/plGNDU0SUkwAUsf/bErHx8NKHpNTBobLi86OkQDDw4LCwoKFiUbGhERCgsEBAIAAQAAAAAAAIWwaoFfDzz1AAsEAAAAAADbteOZAAAAANu145kAAP+3BWADwAAAAAgAAgAAAAAAAAABAAADwP/AAAAFgAAA//8FYAABAAAAAAAAAAAAAAAAAAAAKQQAAAAAAAAAAAAAAAIAAAAEAABBBAAAQQQAAAAEAAAABAAAAAQAAAAEAADABAAAAAQAAAAEAAAABAAAQAQAAAAFgAAABAAAAAQAAB4EAAAABAAAAAQAAAAEAAAABAAAZQQAAAAEAADABAAAwAQAAIAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAMlAD8DJQAAA74ABwQAACMD/wAAAAAAAAAKABQAHgBKAHYApADmAS4BkgHQAhYCXALQAw4DWAN+A6gEPgTeBPoFZAWOBdAF+AY6BnYGjgbmBy4HVgd+B6gHzgf8CCoIbgkmCXAKYgq+AAEAAAApALQACgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAHAAAAAQAAAAAAAgAHAGAAAQAAAAAAAwAHADYAAQAAAAAABAAHAHUAAQAAAAAABQALABUAAQAAAAAABgAHAEsAAQAAAAAACgAaAIoAAwABBAkAAQAOAAcAAwABBAkAAgAOAGcAAwABBAkAAwAOAD0AAwABBAkABAAOAHwAAwABBAkABQAWACAAAwABBAkABgAOAFIAAwABBAkACgA0AKRpY29tb29uAGkAYwBvAG0AbwBvAG5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29tb29uAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG5SZWd1bGFyAFIAZQBnAHUAbABhAHJpY29tb29uAGkAYwBvAG0AbwBvAG5Gb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"},function(s,n,t){var e=t(20),a=t(153);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21);n=e(!1),n.push([s.i,`.w-e-toolbar { + display: flex; + padding: 0 6px; + flex-wrap: wrap; + position: relative; + /* \u5355\u4E2A\u83DC\u5355 */ +} +.w-e-toolbar .w-e-menu { + position: relative; + display: flex; + width: 40px; + height: 40px; + align-items: center; + justify-content: center; + text-align: center; + cursor: pointer; +} +.w-e-toolbar .w-e-menu i { + color: #999; +} +.w-e-toolbar .w-e-menu:hover { + background-color: #F6F6F6; +} +.w-e-toolbar .w-e-menu:hover i { + color: #333; +} +.w-e-toolbar .w-e-active i { + color: #1e88e5; +} +.w-e-toolbar .w-e-active:hover i { + color: #1e88e5; +} +.w-e-menu-tooltip { + position: absolute; + display: flex; + color: #f1f1f1; + background-color: rgba(0, 0, 0, 0.75); + box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15); + border-radius: 4px; + padding: 4px 5px 6px; + justify-content: center; + align-items: center; +} +.w-e-menu-tooltip-up::after { + content: ""; + position: absolute; + top: 100%; + left: 50%; + margin-left: -5px; + border: 5px solid rgba(0, 0, 0, 0); + border-top-color: rgba(0, 0, 0, 0.73); +} +.w-e-menu-tooltip-down::after { + content: ""; + position: absolute; + bottom: 100%; + left: 50%; + margin-left: -5px; + border: 5px solid rgba(0, 0, 0, 0); + border-bottom-color: rgba(0, 0, 0, 0.73); +} +.w-e-menu-tooltip-item-wrapper { + font-size: 14px; + margin: 0 5px; +} +`,""]),s.exports=n},function(s,n,t){var e=t(20),a=t(155);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21);n=e(!1),n.push([s.i,`.w-e-text-container { + position: relative; + height: 100%; +} +.w-e-text-container .w-e-progress { + position: absolute; + background-color: #1e88e5; + top: 0; + left: 0; + height: 1px; +} +.w-e-text-container .placeholder { + color: #D4D4D4; + position: absolute; + font-size: 11pt; + line-height: 22px; + left: 10px; + top: 10px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + z-index: -1; +} +.w-e-text { + padding: 0 10px; + overflow-y: auto; +} +.w-e-text p, +.w-e-text h1, +.w-e-text h2, +.w-e-text h3, +.w-e-text h4, +.w-e-text h5, +.w-e-text table, +.w-e-text pre { + margin: 10px 0; + line-height: 1.5; +} +.w-e-text ul, +.w-e-text ol { + margin: 10px 0 10px 20px; +} +.w-e-text blockquote { + display: block; + border-left: 8px solid #d0e5f2; + padding: 5px 10px; + margin: 10px 0; + line-height: 1.4; + font-size: 100%; + background-color: #f1f1f1; +} +.w-e-text code { + display: inline-block; + background-color: #f1f1f1; + border-radius: 3px; + padding: 3px 5px; + margin: 0 3px; +} +.w-e-text pre code { + display: block; +} +.w-e-text table { + border-top: 1px solid #ccc; + border-left: 1px solid #ccc; +} +.w-e-text table td, +.w-e-text table th { + border-bottom: 1px solid #ccc; + border-right: 1px solid #ccc; + padding: 3px 5px; + min-height: 30px; + height: 30px; +} +.w-e-text table th { + border-bottom: 2px solid #ccc; + text-align: center; + background-color: #f1f1f1; +} +.w-e-text:focus { + outline: none; +} +.w-e-text img { + cursor: pointer; +} +.w-e-text img:hover { + box-shadow: 0 0 5px #333; +} +.w-e-text .w-e-todo { + margin: 0 0 0 20px; +} +.w-e-text .w-e-todo li { + list-style: none; + font-size: 1em; +} +.w-e-text .w-e-todo li span:nth-child(1) { + position: relative; + left: -18px; +} +.w-e-text .w-e-todo li span:nth-child(1) input { + position: absolute; + margin-right: 3px; +} +.w-e-text .w-e-todo li span:nth-child(1) input[type=checkbox] { + top: 50%; + margin-top: -6px; +} +.w-e-tooltip { + position: absolute; + display: flex; + color: #f1f1f1; + background-color: rgba(0, 0, 0, 0.75); + box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15); + border-radius: 4px; + padding: 4px 5px 6px; + justify-content: center; + align-items: center; +} +.w-e-tooltip-up::after { + content: ""; + position: absolute; + top: 100%; + left: 50%; + margin-left: -5px; + border: 5px solid rgba(0, 0, 0, 0); + border-top-color: rgba(0, 0, 0, 0.73); +} +.w-e-tooltip-down::after { + content: ""; + position: absolute; + bottom: 100%; + left: 50%; + margin-left: -5px; + border: 5px solid rgba(0, 0, 0, 0); + border-bottom-color: rgba(0, 0, 0, 0.73); +} +.w-e-tooltip-item-wrapper { + cursor: pointer; + font-size: 14px; + margin: 0 5px; +} +.w-e-tooltip-item-wrapper:hover { + color: #ccc; + text-decoration: underline; +} +`,""]),s.exports=n},function(s,n,t){var e=t(20),a=t(157);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21);n=e(!1),n.push([s.i,`.w-e-menu .w-e-panel-container { + position: absolute; + top: 0; + left: 50%; + border: 1px solid #ccc; + border-top: 0; + box-shadow: 1px 1px 2px #ccc; + color: #333; + background-color: #fff; + text-align: left; + /* \u4E3A emotion panel \u5B9A\u5236\u7684\u6837\u5F0F */ + /* \u4E0A\u4F20\u56FE\u7247\u3001\u4E0A\u4F20\u89C6\u9891\u7684 panel \u5B9A\u5236\u6837\u5F0F */ +} +.w-e-menu .w-e-panel-container .w-e-panel-close { + position: absolute; + right: 0; + top: 0; + padding: 5px; + margin: 2px 5px 0 0; + cursor: pointer; + color: #999; +} +.w-e-menu .w-e-panel-container .w-e-panel-close:hover { + color: #333; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-title { + list-style: none; + display: flex; + font-size: 14px; + margin: 2px 10px 0 10px; + border-bottom: 1px solid #f1f1f1; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-title .w-e-item { + padding: 3px 5px; + color: #999; + cursor: pointer; + margin: 0 3px; + position: relative; + top: 1px; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-title .w-e-active { + color: #333; + border-bottom: 1px solid #333; + cursor: default; + font-weight: 700; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content { + padding: 10px 15px 10px 15px; + font-size: 16px; + /* \u8F93\u5165\u6846\u7684\u6837\u5F0F */ + /* \u6309\u94AE\u7684\u6837\u5F0F */ +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content input:focus, +.w-e-menu .w-e-panel-container .w-e-panel-tab-content textarea:focus, +.w-e-menu .w-e-panel-container .w-e-panel-tab-content button:focus { + outline: none; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content textarea { + width: 100%; + border: 1px solid #ccc; + padding: 5px; + margin-top: 10px; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content textarea:focus { + border-color: #1e88e5; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content input[type=text] { + border: none; + border-bottom: 1px solid #ccc; + font-size: 14px; + height: 20px; + color: #333; + text-align: left; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content input[type=text].small { + width: 30px; + text-align: center; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content input[type=text].block { + display: block; + width: 100%; + margin: 10px 0; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content input[type=text]:focus { + border-bottom: 2px solid #1e88e5; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content .w-e-button-container button { + font-size: 14px; + color: #1e88e5; + border: none; + padding: 5px 10px; + background-color: #fff; + cursor: pointer; + border-radius: 3px; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content .w-e-button-container button.left { + float: left; + margin-right: 10px; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content .w-e-button-container button.right { + float: right; + margin-left: 10px; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content .w-e-button-container button.gray { + color: #999; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content .w-e-button-container button.red { + color: #c24f4a; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content .w-e-button-container button:hover { + background-color: #f1f1f1; +} +.w-e-menu .w-e-panel-container .w-e-panel-tab-content .w-e-button-container:after { + content: ""; + display: table; + clear: both; +} +.w-e-menu .w-e-panel-container .w-e-emoticon-container .w-e-item { + cursor: pointer; + font-size: 18px; + padding: 0 3px; + display: inline-block; +} +.w-e-menu .w-e-panel-container .w-e-up-img-container, +.w-e-menu .w-e-panel-container .w-e-up-video-container { + text-align: center; +} +.w-e-menu .w-e-panel-container .w-e-up-img-container .w-e-up-btn, +.w-e-menu .w-e-panel-container .w-e-up-video-container .w-e-up-btn { + display: inline-block; + color: #999; + cursor: pointer; + font-size: 60px; + line-height: 1; +} +.w-e-menu .w-e-panel-container .w-e-up-img-container .w-e-up-btn:hover, +.w-e-menu .w-e-panel-container .w-e-up-video-container .w-e-up-btn:hover { + color: #333; +} +`,""]),s.exports=n},function(s,n,t){var e=t(20),a=t(159);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21);n=e(!1),n.push([s.i,`.w-e-toolbar .w-e-droplist { + position: absolute; + left: 0; + top: 0; + background-color: #fff; + border: 1px solid #f1f1f1; + border-right-color: #ccc; + border-bottom-color: #ccc; +} +.w-e-toolbar .w-e-droplist .w-e-dp-title { + text-align: center; + color: #999; + line-height: 2; + border-bottom: 1px solid #f1f1f1; + font-size: 13px; +} +.w-e-toolbar .w-e-droplist ul.w-e-list { + list-style: none; + line-height: 1; +} +.w-e-toolbar .w-e-droplist ul.w-e-list li.w-e-item { + color: #333; + padding: 5px 0; +} +.w-e-toolbar .w-e-droplist ul.w-e-list li.w-e-item:hover { + background-color: #f1f1f1; +} +.w-e-toolbar .w-e-droplist ul.w-e-block { + list-style: none; + text-align: left; + padding: 5px; +} +.w-e-toolbar .w-e-droplist ul.w-e-block li.w-e-item { + display: inline-block; + padding: 3px 5px; +} +.w-e-toolbar .w-e-droplist ul.w-e-block li.w-e-item:hover { + background-color: #f1f1f1; +} +`,""]),s.exports=n},function(s,n,t){var e=t(0),a=e(t(161));Element.prototype.matches||(Element.prototype.matches=function(o){var r=this.ownerDocument.querySelectorAll(o),c=r.length;for(c;c>=0&&r.item(c)!==this;c--);return c>-1}),a.default||(window.Promise=a.default)},function(s,n,t){s.exports=t(162)},function(s,n,t){var e=t(163);s.exports=e},function(s,n,t){t(61),t(50),t(54),t(175),t(178),t(179);var e=t(9);s.exports=e.Promise},function(s,n,t){var e=t(62),a=t(49),o=function(r){return function(c,g){var d=String(a(c)),p=e(g),f=d.length,i,u;return p<0||p>=f?r?"":void 0:(i=d.charCodeAt(p),i<55296||i>56319||p+1===f||(u=d.charCodeAt(p+1))<56320||u>57343?r?d.charAt(p):i:r?d.slice(p,p+2):(i-55296<<10)+(u-56320)+65536)}};s.exports={codeAt:o(!1),charAt:o(!0)}},function(s,n,t){var e=t(8),a=t(102),o=e.WeakMap;s.exports=typeof o=="function"&&/native code/.test(a(o))},function(s,n,t){var e=t(8),a=t(19);s.exports=function(o,r){try{a(e,o,r)}catch{e[o]=r}return r}},function(s,n,t){var e=t(104).IteratorPrototype,a=t(77),o=t(48),r=t(37),c=t(44),g=function(){return this};s.exports=function(d,p,f){var i=p+" Iterator";return d.prototype=a(e,{next:o(1,f)}),r(d,i,!1,!0),c[i]=g,d}},function(s,n,t){var e=t(11);s.exports=!e(function(){function a(){}return a.prototype.constructor=null,Object.getPrototypeOf(new a)!==a.prototype})},function(s,n,t){var e=t(14),a=t(18),o=t(25),r=t(52);s.exports=e?Object.defineProperties:function(g,d){o(g);for(var p=r(d),f=p.length,i=0,u;f>i;)a.f(g,u=p[i++],d[u]);return g}},function(s,n,t){var e=t(81),a=t(65);s.exports=e?{}.toString:function(){return"[object "+a(this)+"]"}},function(s,n,t){var e=t(25),a=t(172);s.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var o=!1,r={},c;try{c=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set,c.call(r,[]),o=r instanceof Array}catch{}return function(d,p){return e(d),a(p),o?c.call(d,p):d.__proto__=p,d}}():void 0)},function(s,n,t){var e=t(13);s.exports=function(a){if(!e(a)&&a!==null)throw TypeError("Can't set "+String(a)+" as a prototype");return a}},function(s,n,t){var e=t(30),a=t(82),o=t(44),r=t(42),c=t(75),g="Array Iterator",d=r.set,p=r.getterFor(g);s.exports=c(Array,"Array",function(f,i){d(this,{type:g,target:e(f),index:0,kind:i})},function(){var f=p(this),i=f.target,u=f.kind,l=f.index++;return!i||l>=i.length?(f.target=void 0,{value:void 0,done:!0}):u=="keys"?{value:l,done:!1}:u=="values"?{value:i[l],done:!1}:{value:[l,i[l]],done:!1}},"values"),o.Arguments=o.Array,a("keys"),a("values"),a("entries")},function(s,n){s.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},function(s,n,t){var e=t(5),a=t(43),o=t(8),r=t(36),c=t(109),g=t(53),d=t(110),p=t(37),f=t(111),i=t(13),u=t(41),l=t(83),m=t(34),v=t(102),h=t(66),A=t(115),y=t(116),x=t(117).set,S=t(176),T=t(119),R=t(177),C=t(85),E=t(120),D=t(42),P=t(101),M=t(10),I=t(86),N=M("species"),B="Promise",F=D.get,O=D.set,H=D.getterFor(B),L=c,U=o.TypeError,z=o.document,j=o.process,K=r("fetch"),V=C.f,Q=V,w=m(j)=="process",G=!!(z&&z.createEvent&&o.dispatchEvent),X="unhandledrejection",tt="rejectionhandled",nt=0,st=1,Nt=2,it=1,Tt=2,At,lt,dt,yt,ct=P(B,function(){var J=v(L)!==String(L);if(!J&&(I===66||!w&&typeof PromiseRejectionEvent!="function")||a&&!L.prototype.finally)return!0;if(I>=51&&/native code/.test(L))return!1;var $=L.resolve(1),Z=function(Y){Y(function(){},function(){})},q=$.constructor={};return q[N]=Z,!($.then(function(){})instanceof Z)}),Ft=ct||!A(function(J){L.all(J).catch(function(){})}),Et=function(J){var $;return i(J)&&typeof($=J.then)=="function"?$:!1},ht=function(J,$,Z){if(!$.notified){$.notified=!0;var q=$.reactions;S(function(){for(var Y=$.value,b=$.state==st,W=0;q.length>W;){var k=q[W++],_=b?k.ok:k.fail,ot=k.resolve,ut=k.reject,ft=k.domain,rt,Pt,Bt;try{_?(b||($.rejection===Tt&&Ct(J,$),$.rejection=it),_===!0?rt=Y:(ft&&ft.enter(),rt=_(Y),ft&&(ft.exit(),Bt=!0)),rt===k.promise?ut(U("Promise-chain cycle")):(Pt=Et(rt))?Pt.call(rt,ot,ut):ot(rt)):ut(Y)}catch(zt){ft&&!Bt&&ft.exit(),ut(zt)}}$.reactions=[],$.notified=!1,Z&&!$.rejection&&Rt(J,$)})}},xt=function(J,$,Z){var q,Y;G?(q=z.createEvent("Event"),q.promise=$,q.reason=Z,q.initEvent(J,!1,!0),o.dispatchEvent(q)):q={promise:$,reason:Z},(Y=o["on"+J])?Y(q):J===X&&R("Unhandled promise rejection",Z)},Rt=function(J,$){x.call(o,function(){var Z=$.value,q=St($),Y;if(q&&(Y=E(function(){w?j.emit("unhandledRejection",Z,J):xt(X,J,Z)}),$.rejection=w||St($)?Tt:it,Y.error))throw Y.value})},St=function(J){return J.rejection!==it&&!J.parent},Ct=function(J,$){x.call(o,function(){w?j.emit("rejectionHandled",J):xt(tt,J,$.value)})},vt=function(J,$,Z,q){return function(Y){J($,Z,Y,q)}},mt=function(J,$,Z,q){$.done||($.done=!0,q&&($=q),$.value=Z,$.state=Nt,ht(J,$,!0))},gt=function(J,$,Z,q){if(!$.done){$.done=!0,q&&($=q);try{if(J===Z)throw U("Promise can't be resolved itself");var Y=Et(Z);Y?S(function(){var b={done:!1};try{Y.call(Z,vt(gt,J,b,$),vt(mt,J,b,$))}catch(W){mt(J,b,W,$)}}):($.value=Z,$.state=st,ht(J,$,!1))}catch(b){mt(J,{done:!1},b,$)}}};ct&&(L=function($){l(this,L,B),u($),At.call(this);var Z=F(this);try{$(vt(gt,this,Z),vt(mt,this,Z))}catch(q){mt(this,Z,q)}},At=function($){O(this,{type:B,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:nt,value:void 0})},At.prototype=d(L.prototype,{then:function($,Z){var q=H(this),Y=V(y(this,L));return Y.ok=typeof $=="function"?$:!0,Y.fail=typeof Z=="function"&&Z,Y.domain=w?j.domain:void 0,q.parent=!0,q.reactions.push(Y),q.state!=nt&&ht(this,q,!1),Y.promise},catch:function(J){return this.then(void 0,J)}}),lt=function(){var J=new At,$=F(J);this.promise=J,this.resolve=vt(gt,J,$),this.reject=vt(mt,J,$)},C.f=V=function(J){return J===L||J===dt?new lt(J):Q(J)},!a&&typeof c=="function"&&(yt=c.prototype.then,g(c.prototype,"then",function($,Z){var q=this;return new L(function(Y,b){yt.call(q,Y,b)}).then($,Z)},{unsafe:!0}),typeof K=="function"&&e({global:!0,enumerable:!0,forced:!0},{fetch:function($){return T(L,K.apply(o,arguments))}}))),e({global:!0,wrap:!0,forced:ct},{Promise:L}),p(L,B,!1,!0),f(B),dt=r(B),e({target:B,stat:!0,forced:ct},{reject:function($){var Z=V(this);return Z.reject.call(void 0,$),Z.promise}}),e({target:B,stat:!0,forced:a||ct},{resolve:function($){return T(a&&this===dt?L:this,$)}}),e({target:B,stat:!0,forced:Ft},{all:function($){var Z=this,q=V(Z),Y=q.resolve,b=q.reject,W=E(function(){var k=u(Z.resolve),_=[],ot=0,ut=1;h($,function(ft){var rt=ot++,Pt=!1;_.push(void 0),ut++,k.call(Z,ft).then(function(Bt){Pt||(Pt=!0,_[rt]=Bt,--ut||Y(_))},b)}),--ut||Y(_)});return W.error&&b(W.value),q.promise},race:function($){var Z=this,q=V(Z),Y=q.reject,b=E(function(){var W=u(Z.resolve);h($,function(k){W.call(Z,k).then(q.resolve,Y)})});return b.error&&Y(b.value),q.promise}})},function(s,n,t){var e=t(8),a=t(71).f,o=t(34),r=t(117).set,c=t(118),g=e.MutationObserver||e.WebKitMutationObserver,d=e.process,p=e.Promise,f=o(d)=="process",i=a(e,"queueMicrotask"),u=i&&i.value,l,m,v,h,A,y,x,S;u||(l=function(){var T,R;for(f&&(T=d.domain)&&T.exit();m;){R=m.fn,m=m.next;try{R()}catch(C){throw m?h():v=void 0,C}}v=void 0,T&&T.enter()},f?h=function(){d.nextTick(l)}:g&&!c?(A=!0,y=document.createTextNode(""),new g(l).observe(y,{characterData:!0}),h=function(){y.data=A=!A}):p&&p.resolve?(x=p.resolve(void 0),S=x.then,h=function(){S.call(x,l)}):h=function(){r.call(e,l)}),s.exports=u||function(T){var R={fn:T,next:void 0};v&&(v.next=R),m||(m=R,h()),v=R}},function(s,n,t){var e=t(8);s.exports=function(a,o){var r=e.console;r&&r.error&&(arguments.length===1?r.error(a):r.error(a,o))}},function(s,n,t){var e=t(5),a=t(41),o=t(85),r=t(120),c=t(66);e({target:"Promise",stat:!0},{allSettled:function(d){var p=this,f=o.f(p),i=f.resolve,u=f.reject,l=r(function(){var m=a(p.resolve),v=[],h=0,A=1;c(d,function(y){var x=h++,S=!1;v.push(void 0),A++,m.call(p,y).then(function(T){S||(S=!0,v[x]={status:"fulfilled",value:T},--A||i(v))},function(T){S||(S=!0,v[x]={status:"rejected",reason:T},--A||i(v))})}),--A||i(v)});return l.error&&u(l.value),f.promise}})},function(s,n,t){var e=t(5),a=t(43),o=t(109),r=t(11),c=t(36),g=t(116),d=t(119),p=t(53),f=!!o&&r(function(){o.prototype.finally.call({then:function(){}},function(){})});e({target:"Promise",proto:!0,real:!0,forced:f},{finally:function(i){var u=g(this,c("Promise")),l=typeof i=="function";return this.then(l?function(m){return d(u,i()).then(function(){return m})}:i,l?function(m){return d(u,i()).then(function(){throw m})}:i)}}),!a&&typeof o=="function"&&!o.prototype.finally&&p(o.prototype,"finally",c("Promise").prototype.finally)},function(s,n,t){t(54);var e=t(181),a=t(65),o=Array.prototype,r={DOMTokenList:!0,NodeList:!0};s.exports=function(c){var g=c.forEach;return c===o||c instanceof Array&&g===o.forEach||r.hasOwnProperty(a(c))?e:g}},function(s,n,t){var e=t(182);s.exports=e},function(s,n,t){t(183);var e=t(15);s.exports=e("Array").forEach},function(s,n,t){var e=t(5),a=t(184);e({target:"Array",proto:!0,forced:[].forEach!=a},{forEach:a})},function(s,n,t){var e=t(32).forEach,a=t(67),o=t(22),r=a("forEach"),c=o("forEach");s.exports=!r||!c?function(d){return e(this,d,arguments.length>1?arguments[1]:void 0)}:[].forEach},function(s,n,t){var e=t(186);s.exports=e},function(s,n,t){t(187);var e=t(9);s.exports=e.Array.isArray},function(s,n,t){var e=t(5),a=t(55);e({target:"Array",stat:!0},{isArray:a})},function(s,n,t){var e=t(189);s.exports=e},function(s,n,t){var e=t(190),a=Array.prototype;s.exports=function(o){var r=o.map;return o===a||o instanceof Array&&r===a.map?e:r}},function(s,n,t){t(191);var e=t(15);s.exports=e("Array").map},function(s,n,t){var e=t(5),a=t(32).map,o=t(56),r=t(22),c=o("map"),g=r("map");e({target:"Array",proto:!0,forced:!c||!g},{map:function(p){return a(this,p,arguments.length>1?arguments[1]:void 0)}})},function(s,n,t){var e=t(193);s.exports=e},function(s,n,t){var e=t(194),a=String.prototype;s.exports=function(o){var r=o.trim;return typeof o=="string"||o===a||o instanceof String&&r===a.trim?e:r}},function(s,n,t){t(195);var e=t(15);s.exports=e("String").trim},function(s,n,t){var e=t(5),a=t(90).trim,o=t(196);e({target:"String",proto:!0,forced:o("trim")},{trim:function(){return a(this)}})},function(s,n,t){var e=t(11),a=t(68),o="\u200B\x85\u180E";s.exports=function(r){return e(function(){return!!a[r]()||o[r]()!=o||a[r].name!==r})}},function(s,n,t){var e=t(198);s.exports=e},function(s,n,t){t(199),t(61),t(50),t(54);var e=t(9);s.exports=e.Map},function(s,n,t){var e=t(122),a=t(124);s.exports=e("Map",function(o){return function(){return o(this,arguments.length?arguments[0]:void 0)}},a)},function(s,n,t){var e=t(11);s.exports=!e(function(){return Object.isExtensible(Object.preventExtensions({}))})},function(s,n,t){var e=t(202);s.exports=e},function(s,n,t){var e=t(203),a=Array.prototype;s.exports=function(o){var r=o.indexOf;return o===a||o instanceof Array&&r===a.indexOf?e:r}},function(s,n,t){t(204);var e=t(15);s.exports=e("Array").indexOf},function(s,n,t){var e=t(5),a=t(78).indexOf,o=t(67),r=t(22),c=[].indexOf,g=!!c&&1/[1].indexOf(1,-0)<0,d=o("indexOf"),p=r("indexOf",{ACCESSORS:!0,1:0});e({target:"Array",proto:!0,forced:g||!d||!p},{indexOf:function(i){return g?c.apply(this,arguments)||0:a(this,i,arguments.length>1?arguments[1]:void 0)}})},function(s,n,t){var e=t(206);s.exports=e},function(s,n,t){var e=t(207),a=Array.prototype;s.exports=function(o){var r=o.splice;return o===a||o instanceof Array&&r===a.splice?e:r}},function(s,n,t){t(208);var e=t(15);s.exports=e("Array").splice},function(s,n,t){var e=t(5),a=t(79),o=t(62),r=t(35),c=t(31),g=t(88),d=t(69),p=t(56),f=t(22),i=p("splice"),u=f("splice",{ACCESSORS:!0,0:0,1:2}),l=Math.max,m=Math.min,v=9007199254740991,h="Maximum allowed length exceeded";e({target:"Array",proto:!0,forced:!i||!u},{splice:function(y,x){var S=c(this),T=r(S.length),R=a(y,T),C=arguments.length,E,D,P,M,I,N;if(C===0?E=D=0:C===1?(E=0,D=T-R):(E=C-2,D=m(l(o(x),0),T-R)),T+E-D>v)throw TypeError(h);for(P=g(S,D),M=0;MT-D+E;M--)delete S[M-1]}else if(E>D)for(M=T-D;M>R;M--)I=M+D-1,N=M+E-1,I in S?S[N]=S[I]:delete S[N];for(M=0;M1?arguments[1]:void 0)}})},function(s,n,t){var e=t(214);s.exports=e},function(s,n,t){var e=t(215),a=t(217),o=Array.prototype,r=String.prototype;s.exports=function(c){var g=c.includes;return c===o||c instanceof Array&&g===o.includes?e:typeof c=="string"||c===r||c instanceof String&&g===r.includes?a:g}},function(s,n,t){t(216);var e=t(15);s.exports=e("Array").includes},function(s,n,t){var e=t(5),a=t(78).includes,o=t(82),r=t(22),c=r("indexOf",{ACCESSORS:!0,1:0});e({target:"Array",proto:!0,forced:!c},{includes:function(d){return a(this,d,arguments.length>1?arguments[1]:void 0)}}),o("includes")},function(s,n,t){t(218);var e=t(15);s.exports=e("String").includes},function(s,n,t){var e=t(5),a=t(219),o=t(49),r=t(221);e({target:"String",proto:!0,forced:!r("includes")},{includes:function(g){return!!~String(o(this)).indexOf(a(g),arguments.length>1?arguments[1]:void 0)}})},function(s,n,t){var e=t(220);s.exports=function(a){if(e(a))throw TypeError("The method doesn't accept regular expressions");return a}},function(s,n,t){var e=t(13),a=t(34),o=t(10),r=o("match");s.exports=function(c){var g;return e(c)&&((g=c[r])!==void 0?!!g:a(c)=="RegExp")}},function(s,n,t){var e=t(10),a=e("match");s.exports=function(o){var r=/./;try{"/./"[o](r)}catch{try{return r[a]=!1,"/./"[o](r)}catch{}}return!1}},function(s,n,t){var e=t(223);s.exports=e},function(s,n,t){var e=t(224),a=Function.prototype;s.exports=function(o){var r=o.bind;return o===a||o instanceof Function&&r===a.bind?e:r}},function(s,n,t){t(225);var e=t(15);s.exports=e("Function").bind},function(s,n,t){var e=t(5),a=t(226);e({target:"Function",proto:!0},{bind:a})},function(s,n,t){var e=t(41),a=t(13),o=[].slice,r={},c=function(g,d,p){if(!(d in r)){for(var f=[],i=0;i=51||!a(function(){var S=[];return S[l]=!1,S.concat()[0]!==S}),A=f("concat"),y=function(S){if(!r(S))return!1;var T=S[l];return T!==void 0?!!T:o(S)},x=!h||!A;e({target:"Array",proto:!0,forced:x},{concat:function(T){var R=c(this),C=p(R,0),E=0,D,P,M,I,N;for(D=-1,M=arguments.length;Dm)throw TypeError(v);for(P=0;P=m)throw TypeError(v);d(C,E++,N)}return C.length=E,C}})},function(s,n,t){var e=t(5),a=t(8),o=t(36),r=t(43),c=t(14),g=t(76),d=t(106),p=t(11),f=t(16),i=t(55),u=t(13),l=t(25),m=t(31),v=t(30),h=t(60),A=t(48),y=t(77),x=t(52),S=t(126),T=t(235),R=t(127),C=t(71),E=t(18),D=t(59),P=t(19),M=t(53),I=t(74),N=t(63),B=t(51),F=t(64),O=t(10),H=t(93),L=t(12),U=t(37),z=t(42),j=t(32).forEach,K=N("hidden"),V="Symbol",Q="prototype",w=O("toPrimitive"),G=z.set,X=z.getterFor(V),tt=Object[Q],nt=a.Symbol,st=o("JSON","stringify"),Nt=C.f,it=E.f,Tt=T.f,At=D.f,lt=I("symbols"),dt=I("op-symbols"),yt=I("string-to-symbol-registry"),ct=I("symbol-to-string-registry"),Ft=I("wks"),Et=a.QObject,ht=!Et||!Et[Q]||!Et[Q].findChild,xt=c&&p(function(){return y(it({},"a",{get:function(){return it(this,"a",{value:7}).a}})).a!=7})?function(Y,b,W){var k=Nt(tt,b);k&&delete tt[b],it(Y,b,W),k&&Y!==tt&&it(tt,b,k)}:it,Rt=function(Y,b){var W=lt[Y]=y(nt[Q]);return G(W,{type:V,tag:Y,description:b}),c||(W.description=b),W},St=d?function(Y){return typeof Y=="symbol"}:function(Y){return Object(Y)instanceof nt},Ct=function(b,W,k){b===tt&&Ct(dt,W,k),l(b);var _=h(W,!0);return l(k),f(lt,_)?(k.enumerable?(f(b,K)&&b[K][_]&&(b[K][_]=!1),k=y(k,{enumerable:A(0,!1)})):(f(b,K)||it(b,K,A(1,{})),b[K][_]=!0),xt(b,_,k)):it(b,_,k)},vt=function(b,W){l(b);var k=v(W),_=x(k).concat(Z(k));return j(_,function(ot){(!c||gt.call(k,ot))&&Ct(b,ot,k[ot])}),b},mt=function(b,W){return W===void 0?y(b):vt(y(b),W)},gt=function(b){var W=h(b,!0),k=At.call(this,W);return this===tt&&f(lt,W)&&!f(dt,W)?!1:k||!f(this,W)||!f(lt,W)||f(this,K)&&this[K][W]?k:!0},J=function(b,W){var k=v(b),_=h(W,!0);if(!(k===tt&&f(lt,_)&&!f(dt,_))){var ot=Nt(k,_);return ot&&f(lt,_)&&!(f(k,K)&&k[K][_])&&(ot.enumerable=!0),ot}},$=function(b){var W=Tt(v(b)),k=[];return j(W,function(_){!f(lt,_)&&!f(B,_)&&k.push(_)}),k},Z=function(b){var W=b===tt,k=Tt(W?dt:v(b)),_=[];return j(k,function(ot){f(lt,ot)&&(!W||f(tt,ot))&&_.push(lt[ot])}),_};if(g||(nt=function(){if(this instanceof nt)throw TypeError("Symbol is not a constructor");var b=!arguments.length||arguments[0]===void 0?void 0:String(arguments[0]),W=F(b),k=function(_){this===tt&&k.call(dt,_),f(this,K)&&f(this[K],W)&&(this[K][W]=!1),xt(this,W,A(1,_))};return c&&ht&&xt(tt,W,{configurable:!0,set:k}),Rt(W,b)},M(nt[Q],"toString",function(){return X(this).tag}),M(nt,"withoutSetter",function(Y){return Rt(F(Y),Y)}),D.f=gt,E.f=Ct,C.f=J,S.f=T.f=$,R.f=Z,H.f=function(Y){return Rt(O(Y),Y)},c&&(it(nt[Q],"description",{configurable:!0,get:function(){return X(this).description}}),r||M(tt,"propertyIsEnumerable",gt,{unsafe:!0}))),e({global:!0,wrap:!0,forced:!g,sham:!g},{Symbol:nt}),j(x(Ft),function(Y){L(Y)}),e({target:V,stat:!0,forced:!g},{for:function(Y){var b=String(Y);if(f(yt,b))return yt[b];var W=nt(b);return yt[b]=W,ct[W]=b,W},keyFor:function(b){if(!St(b))throw TypeError(b+" is not a symbol");if(f(ct,b))return ct[b]},useSetter:function(){ht=!0},useSimple:function(){ht=!1}}),e({target:"Object",stat:!0,forced:!g,sham:!c},{create:mt,defineProperty:Ct,defineProperties:vt,getOwnPropertyDescriptor:J}),e({target:"Object",stat:!0,forced:!g},{getOwnPropertyNames:$,getOwnPropertySymbols:Z}),e({target:"Object",stat:!0,forced:p(function(){R.f(1)})},{getOwnPropertySymbols:function(b){return R.f(m(b))}}),st){var q=!g||p(function(){var Y=nt();return st([Y])!="[null]"||st({a:Y})!="{}"||st(Object(Y))!="{}"});e({target:"JSON",stat:!0,forced:q},{stringify:function(b,W,k){for(var _=[b],ot=1,ut;arguments.length>ot;)_.push(arguments[ot++]);if(ut=W,!(!u(W)&&b===void 0||St(b)))return i(W)||(W=function(ft,rt){if(typeof ut=="function"&&(rt=ut.call(this,ft,rt)),!St(rt))return rt}),_[1]=W,st.apply(null,_)}})}nt[Q][w]||P(nt[Q],w,nt[Q].valueOf),U(nt,V),B[K]=!0},function(s,n,t){var e=t(30),a=t(126).f,o={}.toString,r=typeof window=="object"&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],c=function(g){try{return a(g)}catch{return r.slice()}};s.exports.f=function(d){return r&&o.call(d)=="[object Window]"?c(d):a(e(d))}},function(s,n,t){var e=t(12);e("asyncIterator")},function(s,n){},function(s,n,t){var e=t(12);e("hasInstance")},function(s,n,t){var e=t(12);e("isConcatSpreadable")},function(s,n,t){var e=t(12);e("match")},function(s,n,t){var e=t(12);e("matchAll")},function(s,n,t){var e=t(12);e("replace")},function(s,n,t){var e=t(12);e("search")},function(s,n,t){var e=t(12);e("species")},function(s,n,t){var e=t(12);e("split")},function(s,n,t){var e=t(12);e("toPrimitive")},function(s,n,t){var e=t(12);e("toStringTag")},function(s,n,t){var e=t(12);e("unscopables")},function(s,n,t){var e=t(37);e(Math,"Math",!0)},function(s,n,t){var e=t(8),a=t(37);a(e.JSON,"JSON",!0)},function(s,n,t){var e=t(12);e("asyncDispose")},function(s,n,t){var e=t(12);e("dispose")},function(s,n,t){var e=t(12);e("observable")},function(s,n,t){var e=t(12);e("patternMatch")},function(s,n,t){var e=t(12);e("replaceAll")},function(s,n,t){s.exports=t(257)},function(s,n,t){var e=t(258);s.exports=e},function(s,n,t){t(259);var e=t(9);s.exports=e.parseInt},function(s,n,t){var e=t(5),a=t(260);e({global:!0,forced:parseInt!=a},{parseInt:a})},function(s,n,t){var e=t(8),a=t(90).trim,o=t(68),r=e.parseInt,c=/^[+-]?0[Xx]/,g=r(o+"08")!==8||r(o+"0x16")!==22;s.exports=g?function(p,f){var i=a(String(p));return r(i,f>>>0||(c.test(i)?16:10))}:r},function(s,n,t){var e=t(262);s.exports=e},function(s,n,t){var e=t(263),a=Array.prototype;s.exports=function(o){var r=o.slice;return o===a||o instanceof Array&&r===a.slice?e:r}},function(s,n,t){t(264);var e=t(15);s.exports=e("Array").slice},function(s,n,t){var e=t(5),a=t(13),o=t(55),r=t(79),c=t(35),g=t(30),d=t(69),p=t(10),f=t(56),i=t(22),u=f("slice"),l=i("slice",{ACCESSORS:!0,0:0,1:2}),m=p("species"),v=[].slice,h=Math.max;e({target:"Array",proto:!0,forced:!u||!l},{slice:function(y,x){var S=g(this),T=c(S.length),R=r(y,T),C=r(x===void 0?T:x,T),E,D,P;if(o(S)&&(E=S.constructor,typeof E=="function"&&(E===Array||o(E.prototype))?E=void 0:a(E)&&(E=E[m],E===null&&(E=void 0)),E===Array||E===void 0))return v.call(S,R,C);for(D=new(E===void 0?Array:E)(h(C-R,0)),P=0;R2,u=i?r.call(arguments,2):void 0;return d(i?function(){(typeof p=="function"?p:Function(p)).apply(this,u)}:p,f)}};e({global:!0,bind:!0,forced:c},{setTimeout:g(a.setTimeout),setInterval:g(a.setInterval)})},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(128));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(272)),g=r.__importDefault(t(273)),d=r.__importDefault(t(129)),p=r.__importDefault(t(274)),f=r.__importDefault(t(275)),i=r.__importDefault(t(276)),u=r.__importDefault(t(130)),l=r.__importDefault(t(277)),m=r.__importDefault(t(278)),v=r.__importDefault(t(279)),h=(0,o.default)({},c.default,g.default,d.default,f.default,p.default,i.default,u.default,l.default,m.default,v.default,{linkCheck:function(y,x){return!0}});n.default=h},function(s,n,t){var e=t(269);s.exports=e},function(s,n,t){t(270);var e=t(9);s.exports=e.Object.assign},function(s,n,t){var e=t(5),a=t(271);e({target:"Object",stat:!0,forced:Object.assign!==a},{assign:a})},function(s,n,t){var e=t(14),a=t(11),o=t(52),r=t(127),c=t(59),g=t(31),d=t(72),p=Object.assign,f=Object.defineProperty;s.exports=!p||a(function(){if(e&&p({b:1},p(f({},"a",{enumerable:!0,get:function(){f(this,"b",{value:3,enumerable:!1})}}),{b:2})).b!==1)return!0;var i={},u={},l=Symbol(),m="abcdefghijklmnopqrst";return i[l]=7,m.split("").forEach(function(v){u[v]=v}),p({},i)[l]!=7||o(p({},u)).join("")!=m})?function(u,l){for(var m=g(u),v=arguments.length,h=1,A=r.f,y=c.f;v>h;)for(var x=d(arguments[h++]),S=A?o(x).concat(A(x)):o(x),T=S.length,R=0,C;T>R;)C=S[R++],(!e||y.call(x,C))&&(m[C]=x[C]);return m}:p},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.default={menus:["head","bold","fontSize","fontName","italic","underline","strikeThrough","indent","lineHeight","foreColor","backColor","link","list","todo","justify","quote","emoticon","image","video","table","code","splitLine","undo","redo"],fontNames:["\u9ED1\u4F53","\u4EFF\u5B8B","\u6977\u4F53","\u6807\u6977\u4F53","\u534E\u6587\u4EFF\u5B8B","\u534E\u6587\u6977\u4F53","\u5B8B\u4F53","\u5FAE\u8F6F\u96C5\u9ED1","Arial","Tahoma","Verdana","Times New Roman","Courier New"],fontSizes:{"x-small":{name:"10px",value:"1"},small:{name:"13px",value:"2"},normal:{name:"16px",value:"3"},large:{name:"18px",value:"4"},"x-large":{name:"24px",value:"5"},"xx-large":{name:"32px",value:"6"},"xxx-large":{name:"48px",value:"7"}},colors:["#000000","#ffffff","#eeece0","#1c487f","#4d80bf","#c24f4a","#8baa4a","#7b5ba1","#46acc8","#f9963b"],languageType:["Bash","C","C#","C++","CSS","Java","JavaScript","JSON","TypeScript","Plain text","Html","XML","SQL","Go","Kotlin","Lua","Markdown","PHP","Python","Shell Session","Ruby"],languageTab:"\u3000\u3000\u3000\u3000",emotions:[{title:"\u8868\u60C5",type:"emoji",content:"\u{1F600} \u{1F603} \u{1F604} \u{1F601} \u{1F606} \u{1F605} \u{1F602} \u{1F923} \u{1F60A} \u{1F607} \u{1F642} \u{1F643} \u{1F609} \u{1F60C} \u{1F60D} \u{1F618} \u{1F617} \u{1F619} \u{1F61A} \u{1F60B} \u{1F61B} \u{1F61D} \u{1F61C} \u{1F913} \u{1F60E} \u{1F60F} \u{1F612} \u{1F61E} \u{1F614} \u{1F61F} \u{1F615} \u{1F641} \u{1F623} \u{1F616} \u{1F62B} \u{1F629} \u{1F622} \u{1F62D} \u{1F624} \u{1F620} \u{1F621} \u{1F633} \u{1F631} \u{1F628} \u{1F917} \u{1F914} \u{1F636} \u{1F611} \u{1F62C} \u{1F644} \u{1F62F} \u{1F634} \u{1F637} \u{1F911} \u{1F608} \u{1F921} \u{1F4A9} \u{1F47B} \u{1F480} \u{1F440} \u{1F463}".split(/\s/)},{title:"\u624B\u52BF",type:"emoji",content:"\u{1F450} \u{1F64C} \u{1F44F} \u{1F91D} \u{1F44D} \u{1F44E} \u{1F44A} \u270A \u{1F91B} \u{1F91C} \u{1F91E} \u270C\uFE0F \u{1F918} \u{1F44C} \u{1F448} \u{1F449} \u{1F446} \u{1F447} \u261D\uFE0F \u270B \u{1F91A} \u{1F590} \u{1F596} \u{1F44B} \u{1F919} \u{1F4AA} \u{1F595} \u270D\uFE0F \u{1F64F}".split(/\s/)}],lineHeights:["1","1.15","1.6","2","2.5","3"],undoLimit:20,indentation:"2em",showMenuTooltips:!0,menuTooltipPosition:"up"}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(7);function r(c,g,d){window.alert(c),d&&console.error("wangEditor: "+d)}n.default={onchangeTimeout:200,onchange:null,onfocus:o.EMPTY_FN,onblur:o.EMPTY_FN,onCatalogChange:null,customAlert:r}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.default={pasteFilterStyle:!0,pasteIgnoreImg:!1,pasteTextHandle:function(r){return r}}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.default={styleWithCSS:!1}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(7);n.default={linkImgCheck:function(c,g,d){return!0},showLinkImg:!0,showLinkImgAlt:!0,showLinkImgHref:!0,linkImgCallback:o.EMPTY_FN,uploadImgAccept:["jpg","jpeg","png","gif","bmp"],uploadImgServer:"",uploadImgShowBase64:!1,uploadImgMaxSize:5*1024*1024,uploadImgMaxLength:100,uploadFileName:"",uploadImgParams:{},uploadImgParamsWithUrl:!1,uploadImgHeaders:{},uploadImgHooks:{},uploadImgTimeout:10*1e3,withCredentials:!1,customUploadImg:null,uploadImgFromMedia:null}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.default={lang:"zh-CN",languages:{"zh-CN":{wangEditor:{\u91CD\u7F6E:"\u91CD\u7F6E",\u63D2\u5165:"\u63D2\u5165",\u9ED8\u8BA4:"\u9ED8\u8BA4",\u521B\u5EFA:"\u521B\u5EFA",\u4FEE\u6539:"\u4FEE\u6539",\u5982:"\u5982",\u8BF7\u8F93\u5165\u6B63\u6587:"\u8BF7\u8F93\u5165\u6B63\u6587",menus:{title:{\u6807\u9898:"\u6807\u9898",\u52A0\u7C97:"\u52A0\u7C97",\u5B57\u53F7:"\u5B57\u53F7",\u5B57\u4F53:"\u5B57\u4F53",\u659C\u4F53:"\u659C\u4F53",\u4E0B\u5212\u7EBF:"\u4E0B\u5212\u7EBF",\u5220\u9664\u7EBF:"\u5220\u9664\u7EBF",\u7F29\u8FDB:"\u7F29\u8FDB",\u884C\u9AD8:"\u884C\u9AD8",\u6587\u5B57\u989C\u8272:"\u6587\u5B57\u989C\u8272",\u80CC\u666F\u8272:"\u80CC\u666F\u8272",\u94FE\u63A5:"\u94FE\u63A5",\u5E8F\u5217:"\u5E8F\u5217",\u5BF9\u9F50:"\u5BF9\u9F50",\u5F15\u7528:"\u5F15\u7528",\u8868\u60C5:"\u8868\u60C5",\u56FE\u7247:"\u56FE\u7247",\u89C6\u9891:"\u89C6\u9891",\u8868\u683C:"\u8868\u683C",\u4EE3\u7801:"\u4EE3\u7801",\u5206\u5272\u7EBF:"\u5206\u5272\u7EBF",\u6062\u590D:"\u6062\u590D",\u64A4\u9500:"\u64A4\u9500",\u5168\u5C4F:"\u5168\u5C4F",\u53D6\u6D88\u5168\u5C4F:"\u53D6\u6D88\u5168\u5C4F",\u5F85\u529E\u4E8B\u9879:"\u5F85\u529E\u4E8B\u9879"},dropListMenu:{\u8BBE\u7F6E\u6807\u9898:"\u8BBE\u7F6E\u6807\u9898",\u80CC\u666F\u989C\u8272:"\u80CC\u666F\u989C\u8272",\u6587\u5B57\u989C\u8272:"\u6587\u5B57\u989C\u8272",\u8BBE\u7F6E\u5B57\u53F7:"\u8BBE\u7F6E\u5B57\u53F7",\u8BBE\u7F6E\u5B57\u4F53:"\u8BBE\u7F6E\u5B57\u4F53",\u8BBE\u7F6E\u7F29\u8FDB:"\u8BBE\u7F6E\u7F29\u8FDB",\u5BF9\u9F50\u65B9\u5F0F:"\u5BF9\u9F50\u65B9\u5F0F",\u8BBE\u7F6E\u884C\u9AD8:"\u8BBE\u7F6E\u884C\u9AD8",\u5E8F\u5217:"\u5E8F\u5217",head:{\u6B63\u6587:"\u6B63\u6587"},indent:{\u589E\u52A0\u7F29\u8FDB:"\u589E\u52A0\u7F29\u8FDB",\u51CF\u5C11\u7F29\u8FDB:"\u51CF\u5C11\u7F29\u8FDB"},justify:{\u9760\u5DE6:"\u9760\u5DE6",\u5C45\u4E2D:"\u5C45\u4E2D",\u9760\u53F3:"\u9760\u53F3",\u4E24\u7AEF:"\u4E24\u7AEF"},list:{\u65E0\u5E8F\u5217\u8868:"\u65E0\u5E8F\u5217\u8868",\u6709\u5E8F\u5217\u8868:"\u6709\u5E8F\u5217\u8868"}},panelMenus:{emoticon:{\u9ED8\u8BA4:"\u9ED8\u8BA4",\u65B0\u6D6A:"\u65B0\u6D6A",emoji:"emoji",\u624B\u52BF:"\u624B\u52BF"},image:{\u4E0A\u4F20\u56FE\u7247:"\u4E0A\u4F20\u56FE\u7247",\u7F51\u7EDC\u56FE\u7247:"\u7F51\u7EDC\u56FE\u7247",\u56FE\u7247\u5730\u5740:"\u56FE\u7247\u5730\u5740",\u56FE\u7247\u6587\u5B57\u8BF4\u660E:"\u56FE\u7247\u6587\u5B57\u8BF4\u660E",\u8DF3\u8F6C\u94FE\u63A5:"\u8DF3\u8F6C\u94FE\u63A5"},link:{\u94FE\u63A5:"\u94FE\u63A5",\u94FE\u63A5\u6587\u5B57:"\u94FE\u63A5\u6587\u5B57",\u53D6\u6D88\u94FE\u63A5:"\u53D6\u6D88\u94FE\u63A5",\u67E5\u770B\u94FE\u63A5:"\u67E5\u770B\u94FE\u63A5"},video:{\u63D2\u5165\u89C6\u9891:"\u63D2\u5165\u89C6\u9891",\u4E0A\u4F20\u89C6\u9891:"\u4E0A\u4F20\u89C6\u9891"},table:{\u884C:"\u884C",\u5217:"\u5217",\u7684:"\u7684",\u8868\u683C:"\u8868\u683C",\u6DFB\u52A0\u884C:"\u6DFB\u52A0\u884C",\u5220\u9664\u884C:"\u5220\u9664\u884C",\u6DFB\u52A0\u5217:"\u6DFB\u52A0\u5217",\u5220\u9664\u5217:"\u5220\u9664\u5217",\u8BBE\u7F6E\u8868\u5934:"\u8BBE\u7F6E\u8868\u5934",\u53D6\u6D88\u8868\u5934:"\u53D6\u6D88\u8868\u5934",\u63D2\u5165\u8868\u683C:"\u63D2\u5165\u8868\u683C",\u5220\u9664\u8868\u683C:"\u5220\u9664\u8868\u683C"},code:{\u5220\u9664\u4EE3\u7801:"\u5220\u9664\u4EE3\u7801",\u4FEE\u6539\u4EE3\u7801:"\u4FEE\u6539\u4EE3\u7801",\u63D2\u5165\u4EE3\u7801:"\u63D2\u5165\u4EE3\u7801"}}},validate:{\u5F20\u56FE\u7247:"\u5F20\u56FE\u7247",\u5927\u4E8E:"\u5927\u4E8E",\u56FE\u7247\u94FE\u63A5:"\u56FE\u7247\u94FE\u63A5",\u4E0D\u662F\u56FE\u7247:"\u4E0D\u662F\u56FE\u7247",\u8FD4\u56DE\u7ED3\u679C:"\u8FD4\u56DE\u7ED3\u679C",\u4E0A\u4F20\u56FE\u7247\u8D85\u65F6:"\u4E0A\u4F20\u56FE\u7247\u8D85\u65F6",\u4E0A\u4F20\u56FE\u7247\u9519\u8BEF:"\u4E0A\u4F20\u56FE\u7247\u9519\u8BEF",\u4E0A\u4F20\u56FE\u7247\u5931\u8D25:"\u4E0A\u4F20\u56FE\u7247\u5931\u8D25",\u63D2\u5165\u56FE\u7247\u9519\u8BEF:"\u63D2\u5165\u56FE\u7247\u9519\u8BEF",\u4E00\u6B21\u6700\u591A\u4E0A\u4F20:"\u4E00\u6B21\u6700\u591A\u4E0A\u4F20",\u4E0B\u8F7D\u94FE\u63A5\u5931\u8D25:"\u4E0B\u8F7D\u94FE\u63A5\u5931\u8D25",\u56FE\u7247\u9A8C\u8BC1\u672A\u901A\u8FC7:"\u56FE\u7247\u9A8C\u8BC1\u672A\u901A\u8FC7",\u670D\u52A1\u5668\u8FD4\u56DE\u72B6\u6001:"\u670D\u52A1\u5668\u8FD4\u56DE\u72B6\u6001",\u4E0A\u4F20\u56FE\u7247\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF:"\u4E0A\u4F20\u56FE\u7247\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF",\u8BF7\u66FF\u6362\u4E3A\u652F\u6301\u7684\u56FE\u7247\u7C7B\u578B:"\u8BF7\u66FF\u6362\u4E3A\u652F\u6301\u7684\u56FE\u7247\u7C7B\u578B",\u60A8\u63D2\u5165\u7684\u7F51\u7EDC\u56FE\u7247\u65E0\u6CD5\u8BC6\u522B:"\u60A8\u63D2\u5165\u7684\u7F51\u7EDC\u56FE\u7247\u65E0\u6CD5\u8BC6\u522B",\u60A8\u521A\u624D\u63D2\u5165\u7684\u56FE\u7247\u94FE\u63A5\u672A\u901A\u8FC7\u7F16\u8F91\u5668\u6821\u9A8C:"\u60A8\u521A\u624D\u63D2\u5165\u7684\u56FE\u7247\u94FE\u63A5\u672A\u901A\u8FC7\u7F16\u8F91\u5668\u6821\u9A8C",\u63D2\u5165\u89C6\u9891\u9519\u8BEF:"\u63D2\u5165\u89C6\u9891\u9519\u8BEF",\u89C6\u9891\u94FE\u63A5:"\u89C6\u9891\u94FE\u63A5",\u4E0D\u662F\u89C6\u9891:"\u4E0D\u662F\u89C6\u9891",\u89C6\u9891\u9A8C\u8BC1\u672A\u901A\u8FC7:"\u89C6\u9891\u9A8C\u8BC1\u672A\u901A\u8FC7",\u4E2A\u89C6\u9891:"\u4E2A\u89C6\u9891",\u4E0A\u4F20\u89C6\u9891\u8D85\u65F6:"\u4E0A\u4F20\u89C6\u9891\u8D85\u65F6",\u4E0A\u4F20\u89C6\u9891\u9519\u8BEF:"\u4E0A\u4F20\u89C6\u9891\u9519\u8BEF",\u4E0A\u4F20\u89C6\u9891\u5931\u8D25:"\u4E0A\u4F20\u89C6\u9891\u5931\u8D25",\u4E0A\u4F20\u89C6\u9891\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF:"\u4E0A\u4F20\u89C6\u9891\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF"}}},en:{wangEditor:{\u91CD\u7F6E:"reset",\u63D2\u5165:"insert",\u9ED8\u8BA4:"default",\u521B\u5EFA:"create",\u4FEE\u6539:"edit",\u5982:"like",\u8BF7\u8F93\u5165\u6B63\u6587:"please enter the text",menus:{title:{\u6807\u9898:"head",\u52A0\u7C97:"bold",\u5B57\u53F7:"font size",\u5B57\u4F53:"font family",\u659C\u4F53:"italic",\u4E0B\u5212\u7EBF:"underline",\u5220\u9664\u7EBF:"strikethrough",\u7F29\u8FDB:"indent",\u884C\u9AD8:"line heihgt",\u6587\u5B57\u989C\u8272:"font color",\u80CC\u666F\u8272:"background",\u94FE\u63A5:"link",\u5E8F\u5217:"numbered list",\u5BF9\u9F50:"align",\u5F15\u7528:"quote",\u8868\u60C5:"emoticons",\u56FE\u7247:"image",\u89C6\u9891:"media",\u8868\u683C:"table",\u4EE3\u7801:"code",\u5206\u5272\u7EBF:"split line",\u6062\u590D:"redo",\u64A4\u9500:"undo",\u5168\u5C4F:"fullscreen",\u53D6\u6D88\u5168\u5C4F:"cancel fullscreen",\u5F85\u529E\u4E8B\u9879:"todo"},dropListMenu:{\u8BBE\u7F6E\u6807\u9898:"title",\u80CC\u666F\u989C\u8272:"background",\u6587\u5B57\u989C\u8272:"font color",\u8BBE\u7F6E\u5B57\u53F7:"font size",\u8BBE\u7F6E\u5B57\u4F53:"font family",\u8BBE\u7F6E\u7F29\u8FDB:"indent",\u5BF9\u9F50\u65B9\u5F0F:"align",\u8BBE\u7F6E\u884C\u9AD8:"line heihgt",\u5E8F\u5217:"list",head:{\u6B63\u6587:"text"},indent:{\u589E\u52A0\u7F29\u8FDB:"indent",\u51CF\u5C11\u7F29\u8FDB:"outdent"},justify:{\u9760\u5DE6:"left",\u5C45\u4E2D:"center",\u9760\u53F3:"right",\u4E24\u7AEF:"justify"},list:{\u65E0\u5E8F\u5217\u8868:"unordered",\u6709\u5E8F\u5217\u8868:"ordered"}},panelMenus:{emoticon:{\u8868\u60C5:"emoji",\u624B\u52BF:"gesture"},image:{\u4E0A\u4F20\u56FE\u7247:"upload image",\u7F51\u7EDC\u56FE\u7247:"network image",\u56FE\u7247\u5730\u5740:"image link",\u56FE\u7247\u6587\u5B57\u8BF4\u660E:"image alt",\u8DF3\u8F6C\u94FE\u63A5:"hyperlink"},link:{\u94FE\u63A5:"link",\u94FE\u63A5\u6587\u5B57:"link text",\u53D6\u6D88\u94FE\u63A5:"unlink",\u67E5\u770B\u94FE\u63A5:"view links"},video:{\u63D2\u5165\u89C6\u9891:"insert video",\u4E0A\u4F20\u89C6\u9891:"upload local video"},table:{\u884C:"rows",\u5217:"columns",\u7684:" ",\u8868\u683C:"table",\u6DFB\u52A0\u884C:"insert row",\u5220\u9664\u884C:"delete row",\u6DFB\u52A0\u5217:"insert column",\u5220\u9664\u5217:"delete column",\u8BBE\u7F6E\u8868\u5934:"set header",\u53D6\u6D88\u8868\u5934:"cancel header",\u63D2\u5165\u8868\u683C:"insert table",\u5220\u9664\u8868\u683C:"delete table"},code:{\u5220\u9664\u4EE3\u7801:"delete code",\u4FEE\u6539\u4EE3\u7801:"edit code",\u63D2\u5165\u4EE3\u7801:"insert code"}}},validate:{\u5F20\u56FE\u7247:"images",\u5927\u4E8E:"greater than",\u56FE\u7247\u94FE\u63A5:"image link",\u4E0D\u662F\u56FE\u7247:"is not image",\u8FD4\u56DE\u7ED3\u679C:"return results",\u4E0A\u4F20\u56FE\u7247\u8D85\u65F6:"upload image timeout",\u4E0A\u4F20\u56FE\u7247\u9519\u8BEF:"upload image error",\u4E0A\u4F20\u56FE\u7247\u5931\u8D25:"upload image failed",\u63D2\u5165\u56FE\u7247\u9519\u8BEF:"insert image error",\u4E00\u6B21\u6700\u591A\u4E0A\u4F20:"once most at upload",\u4E0B\u8F7D\u94FE\u63A5\u5931\u8D25:"download link failed",\u56FE\u7247\u9A8C\u8BC1\u672A\u901A\u8FC7:"image validate failed",\u670D\u52A1\u5668\u8FD4\u56DE\u72B6\u6001:"server return status",\u4E0A\u4F20\u56FE\u7247\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF:"upload image return results error",\u8BF7\u66FF\u6362\u4E3A\u652F\u6301\u7684\u56FE\u7247\u7C7B\u578B:"please replace with a supported image type",\u60A8\u63D2\u5165\u7684\u7F51\u7EDC\u56FE\u7247\u65E0\u6CD5\u8BC6\u522B:"the network picture you inserted is not recognized",\u60A8\u521A\u624D\u63D2\u5165\u7684\u56FE\u7247\u94FE\u63A5\u672A\u901A\u8FC7\u7F16\u8F91\u5668\u6821\u9A8C:"the image link you just inserted did not pass the editor verification",\u63D2\u5165\u89C6\u9891\u9519\u8BEF:"insert video error",\u89C6\u9891\u94FE\u63A5:"video link",\u4E0D\u662F\u89C6\u9891:"is not video",\u89C6\u9891\u9A8C\u8BC1\u672A\u901A\u8FC7:"video validate failed",\u4E2A\u89C6\u9891:"videos",\u4E0A\u4F20\u89C6\u9891\u8D85\u65F6:"upload video timeout",\u4E0A\u4F20\u89C6\u9891\u9519\u8BEF:"upload video error",\u4E0A\u4F20\u89C6\u9891\u5931\u8D25:"upload video failed",\u4E0A\u4F20\u89C6\u9891\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF:"upload video return results error"}}}}}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(6);function r(){return!!(o.UA.isIE()||o.UA.isOldEdge)}n.default={compatibleMode:r,historyMaxSize:30}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(7);n.default={onlineVideoCheck:function(c){return!0},onlineVideoCallback:o.EMPTY_FN,showLinkVideo:!0,uploadVideoAccept:["mp4"],uploadVideoServer:"",uploadVideoMaxSize:1*1024*1024*1024,uploadVideoName:"",uploadVideoParams:{},uploadVideoParamsWithUrl:!1,uploadVideoHeaders:{},uploadVideoHooks:{},uploadVideoTimeout:1e3*60*60*2,withVideoCredentials:!1,customUploadVideo:null,customInsertVideo:null}},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(17));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=t(6),d=t(7),p=function(){function f(i){this._currentRange=null,this.editor=i}return f.prototype.getRange=function(){return this._currentRange},f.prototype.saveRange=function(i){if(i){this._currentRange=i;return}var u=window.getSelection();if(u.rangeCount!==0){var l=u.getRangeAt(0),m=this.getSelectionContainerElem(l);if(!!(m!=null&&m.length)&&!(m.attr("contenteditable")==="false"||m.parentUntil("[contenteditable=false]"))){var v=this.editor,h=v.$textElem;if(h.isContain(m)){if(h.elems[0]===m.elems[0]){var A;if((0,o.default)(A=h.html()).call(A)===d.EMPTY_P){var y=h.children(),x=y==null?void 0:y.last();v.selection.createRangeByElem(x,!0,!0),v.selection.restoreSelection()}}this._currentRange=l}}}},f.prototype.collapseRange=function(i){i===void 0&&(i=!1);var u=this._currentRange;u&&u.collapse(i)},f.prototype.getSelectionText=function(){var i=this._currentRange;return i?i.toString():""},f.prototype.getSelectionContainerElem=function(i){var u;u=i||this._currentRange;var l;if(u)return l=u.commonAncestorContainer,c.default(l.nodeType===1?l:l.parentNode)},f.prototype.getSelectionStartElem=function(i){var u;u=i||this._currentRange;var l;if(u)return l=u.startContainer,c.default(l.nodeType===1?l:l.parentNode)},f.prototype.getSelectionEndElem=function(i){var u;u=i||this._currentRange;var l;if(u)return l=u.endContainer,c.default(l.nodeType===1?l:l.parentNode)},f.prototype.isSelectionEmpty=function(){var i=this._currentRange;return!!(i&&i.startContainer&&i.startContainer===i.endContainer&&i.startOffset===i.endOffset)},f.prototype.restoreSelection=function(){var i=window.getSelection(),u=this._currentRange;i&&u&&(i.removeAllRanges(),i.addRange(u))},f.prototype.createEmptyRange=function(){var i=this.editor,u=this.getRange(),l;if(!!u&&!!this.isSelectionEmpty())try{g.UA.isWebkit()?(i.cmd.do("insertHTML","​"),u.setEnd(u.endContainer,u.endOffset+1),this.saveRange(u)):(l=c.default(""),i.cmd.do("insertElem",l),this.createRangeByElem(l,!0))}catch{}},f.prototype.createRangeByElems=function(i,u){var l=window.getSelection?window.getSelection():document.getSelection();l==null||l.removeAllRanges();var m=document.createRange();m.setStart(i,0),m.setEnd(u,u.childNodes.length||1),this.saveRange(m),this.restoreSelection()},f.prototype.createRangeByElem=function(i,u,l){if(!!i.length){var m=i.elems[0],v=document.createRange();l?v.selectNodeContents(m):v.selectNode(m),u!=null&&(v.collapse(u),u||(this.saveRange(v),this.editor.selection.moveCursor(m))),this.saveRange(v)}},f.prototype.getSelectionRangeTopNodes=function(){var i,u,l,m=(i=this.getSelectionStartElem())===null||i===void 0?void 0:i.getNodeTop(this.editor),v=(u=this.getSelectionEndElem())===null||u===void 0?void 0:u.getNodeTop(this.editor);return l=this.recordSelectionNodes(c.default(m),c.default(v)),l},f.prototype.moveCursor=function(i,u){var l,m=this.getRange(),v=i.nodeType===3?(l=i.nodeValue)===null||l===void 0?void 0:l.length:i.childNodes.length;(g.UA.isFirefox||g.UA.isIE())&&v!==0&&(i.nodeType===3||i.childNodes[v-1].nodeName==="BR")&&(v=v-1);var h=u!=null?u:v;!m||i&&(m.setStart(i,h),m.setEnd(i,h),this.restoreSelection())},f.prototype.getCursorPos=function(){var i=window.getSelection();return i==null?void 0:i.anchorOffset},f.prototype.clearWindowSelectionRange=function(){var i=window.getSelection();i&&i.removeAllRanges()},f.prototype.recordSelectionNodes=function(i,u){var l=[],m=!0;try{for(var v=i,h=this.editor.$textElem;m;){var A=v==null?void 0:v.getNodeTop(this.editor);A.getNodeName()==="BODY"&&(m=!1),A.length>0&&(l.push(c.default(v)),(u==null?void 0:u.equal(A))||h.equal(A)?m=!1:v=A.getNextSibling())}}catch{m=!1}return l},f.prototype.setRangeToElem=function(i){var u=this.getRange();u==null||u.setStart(i,0),u==null||u.setEnd(i,0)},f}();n.default=p},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(3)),c=function(){function g(d){this.editor=d}return g.prototype.do=function(d,p){var f=this.editor;f.config.styleWithCSS&&document.execCommand("styleWithCSS",!1,"true");var i=f.selection;if(!!i.getRange()){switch(i.restoreSelection(),d){case"insertHTML":this.insertHTML(p);break;case"insertElem":this.insertElem(p);break;default:this.execCommand(d,p);break}f.menus.changeActive(),i.saveRange(),i.restoreSelection()}},g.prototype.insertHTML=function(d){var p=this.editor,f=p.selection.getRange();if(f!=null){if(this.queryCommandSupported("insertHTML"))this.execCommand("insertHTML",d);else if(f.insertNode){if(f.deleteContents(),r.default(d).elems.length>0)f.insertNode(r.default(d).elems[0]);else{var i=document.createElement("p");i.appendChild(document.createTextNode(d)),f.insertNode(i)}p.selection.collapseRange()}}},g.prototype.insertElem=function(d){var p=this.editor,f=p.selection.getRange();f!=null&&f.insertNode&&(f.deleteContents(),f.insertNode(d.elems[0]))},g.prototype.execCommand=function(d,p){document.execCommand(d,!1,p)},g.prototype.queryCommandValue=function(d){return document.queryCommandValue(d)},g.prototype.queryCommandState=function(d){return document.queryCommandState(d)},g.prototype.queryCommandSupported=function(d){return document.queryCommandSupported(d)},g}();n.default=c},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(29)),r=e(t(4)),c=e(t(17)),g=e(t(27)),d=e(t(46));(0,a.default)(n,"__esModule",{value:!0});var p=t(2),f=p.__importDefault(t(3)),i=p.__importDefault(t(287)),u=t(6),l=p.__importDefault(t(299)),m=p.__importDefault(t(300)),v=t(7),h=function(){function A(y){this.editor=y,this.eventHooks={onBlurEvents:[],changeEvents:[],dropEvents:[],clickEvents:[],keydownEvents:[],keyupEvents:[],tabUpEvents:[],tabDownEvents:[],enterUpEvents:[],enterDownEvents:[],deleteUpEvents:[],deleteDownEvents:[],pasteEvents:[],linkClickEvents:[],codeClickEvents:[],textScrollEvents:[],toolbarClickEvents:[],imgClickEvents:[],imgDragBarMouseDownEvents:[],tableClickEvents:[],menuClickEvents:[],dropListMenuHoverEvents:[],splitLineEvents:[],videoClickEvents:[]}}return A.prototype.init=function(){this._saveRange(),this._bindEventHooks(),i.default(this)},A.prototype.togglePlaceholder=function(){var y,x=this.html(),S=(0,o.default)(y=this.editor.$textContainerElem).call(y,".placeholder");S.hide(),!this.editor.isComposing&&(!x||x===" ")&&S.show()},A.prototype.clear=function(){this.html(v.EMPTY_P)},A.prototype.html=function(y){var x=this.editor,S=x.$textElem;if(y==null){var T=S.html();T=T.replace(/\u200b/gm,""),T=T.replace(/

      <\/p>/gim,""),T=T.replace(v.EMPTY_P_LAST_REGEX,""),T=T.replace(v.EMPTY_P_REGEX,"

      ");var R=T.match(/<(img|br|hr|input)[^>]*>/gi);return R!==null&&(0,r.default)(R).call(R,function(C){C.match(/\/>/)||(T=T.replace(C,C.substring(0,C.length-1)+"/>"))}),T}y=(0,c.default)(y).call(y),y===""&&(y=v.EMPTY_P),(0,g.default)(y).call(y,"<")!==0&&(y="

      "+y+"

      "),S.html(y),x.initSelection()},A.prototype.setJSON=function(y){var x=m.default(y).children(),S=this.editor,T=S.$textElem;!x||T.replaceChildAll(x)},A.prototype.getJSON=function(){var y=this.editor,x=y.$textElem;return l.default(x)},A.prototype.text=function(y){var x=this.editor,S=x.$textElem;if(y==null){var T=S.text();return T=T.replace(/\u200b/gm,""),T}S.text("

      "+y+"

      "),x.initSelection()},A.prototype.append=function(y){var x=this.editor;(0,g.default)(y).call(y,"<")!==0&&(y="

      "+y+"

      "),this.html(this.html()+y),x.initSelection()},A.prototype._saveRange=function(){var y=this.editor,x=y.$textElem,S=f.default(document);function T(){y.selection.saveRange(),y.menus.changeActive()}x.on("keyup",T);function R(){T(),x.off("click",R)}x.on("click",R);function C(){T(),S.off("mouseup",C)}function E(){S.on("mouseup",C),x.off("mouseleave",E)}x.on("mousedown",function(){x.on("mouseleave",E)}),x.on("mouseup",function(D){x.off("mouseleave",E),(0,d.default)(function(){var P=y.selection,M=P.getRange();M!==null&&T()},0)})},A.prototype._bindEventHooks=function(){var y=this.editor,x=y.$textElem,S=this.eventHooks;x.on("click",function(R){var C=S.clickEvents;(0,r.default)(C).call(C,function(E){return E(R)})}),x.on("keyup",function(R){if(R.keyCode===13){var C=S.enterUpEvents;(0,r.default)(C).call(C,function(E){return E(R)})}}),x.on("keyup",function(R){var C=S.keyupEvents;(0,r.default)(C).call(C,function(E){return E(R)})}),x.on("keydown",function(R){var C=S.keydownEvents;(0,r.default)(C).call(C,function(E){return E(R)})}),x.on("keyup",function(R){if(!(R.keyCode!==8&&R.keyCode!==46)){var C=S.deleteUpEvents;(0,r.default)(C).call(C,function(E){return E(R)})}}),x.on("keydown",function(R){if(!(R.keyCode!==8&&R.keyCode!==46)){var C=S.deleteDownEvents;(0,r.default)(C).call(C,function(E){return E(R)})}}),x.on("paste",function(R){if(!u.UA.isIE()){R.preventDefault();var C=S.pasteEvents;(0,r.default)(C).call(C,function(E){return E(R)})}}),x.on("keydown",function(R){(y.isFocus||y.isCompatibleMode)&&(R.ctrlKey||R.metaKey)&&R.keyCode===90&&(R.preventDefault(),R.shiftKey?y.history.restore():y.history.revoke())}),x.on("keyup",function(R){if(R.keyCode===9){R.preventDefault();var C=S.tabUpEvents;(0,r.default)(C).call(C,function(E){return E(R)})}}),x.on("keydown",function(R){if(R.keyCode===9){R.preventDefault();var C=S.tabDownEvents;(0,r.default)(C).call(C,function(E){return E(R)})}}),x.on("scroll",u.throttle(function(R){var C=S.textScrollEvents;(0,r.default)(C).call(C,function(E){return E(R)})},100));function T(R){R.preventDefault()}f.default(document).on("dragleave",T).on("drop",T).on("dragenter",T).on("dragover",T),y.beforeDestroy(function(){f.default(document).off("dragleave",T).off("drop",T).off("dragenter",T).off("dragover",T)}),x.on("drop",function(R){R.preventDefault();var C=S.dropEvents;(0,r.default)(C).call(C,function(E){return E(R)})}),x.on("click",function(R){var C=null,E=R.target,D=f.default(E);if(D.getNodeName()==="A")C=D;else{var P=D.parentUntil("a");P!=null&&(C=P)}if(!!C){var M=S.linkClickEvents;(0,r.default)(M).call(M,function(I){return I(C)})}}),x.on("click",function(R){var C=null,E=R.target,D=f.default(E);if(D.getNodeName()==="IMG"&&!D.elems[0].getAttribute("data-emoji")&&(R.stopPropagation(),C=D),!!C){var P=S.imgClickEvents;(0,r.default)(P).call(P,function(M){return M(C)})}}),x.on("click",function(R){var C=null,E=R.target,D=f.default(E);if(D.getNodeName()==="PRE")C=D;else{var P=D.parentUntil("pre");P!==null&&(C=P)}if(!!C){var M=S.codeClickEvents;(0,r.default)(M).call(M,function(I){return I(C)})}}),x.on("click",function(R){var C=null,E=R.target,D=f.default(E);if(D.getNodeName()==="HR"&&(C=D),!!C){y.selection.createRangeByElem(C),y.selection.restoreSelection();var P=S.splitLineEvents;(0,r.default)(P).call(P,function(M){return M(C)})}}),y.$toolbarElem.on("click",function(R){var C=S.toolbarClickEvents;(0,r.default)(C).call(C,function(E){return E(R)})}),y.$textContainerElem.on("mousedown",function(R){var C=R.target,E=f.default(C);if(E.hasClass("w-e-img-drag-rb")){var D=S.imgDragBarMouseDownEvents;(0,r.default)(D).call(D,function(P){return P()})}}),x.on("click",function(R){var C=null,E=R.target;if(C=f.default(E).parentUntilEditor("TABLE",y,E),!!C){var D=S.tableClickEvents;(0,r.default)(D).call(D,function(P){return P(C,R)})}}),x.on("keydown",function(R){if(R.keyCode===13){var C=S.enterDownEvents;(0,r.default)(C).call(C,function(E){return E(R)})}}),x.on("click",function(R){var C=null,E=R.target,D=f.default(E);if(D.getNodeName()==="VIDEO"&&(R.stopPropagation(),C=D),!!C){var P=S.videoClickEvents;(0,r.default)(P).call(P,function(M){return M(C)})}})},A}();n.default=h},function(s,n,t){var e=t(284);s.exports=e},function(s,n,t){var e=t(285),a=Array.prototype;s.exports=function(o){var r=o.find;return o===a||o instanceof Array&&r===a.find?e:r}},function(s,n,t){t(286);var e=t(15);s.exports=e("Array").find},function(s,n,t){var e=t(5),a=t(32).find,o=t(82),r=t(22),c="find",g=!0,d=r(c);c in[]&&Array(1)[c](function(){g=!1}),e({target:"Array",proto:!0,forced:g||!d},{find:function(f){return a(this,f,arguments.length>1?arguments[1]:void 0)}}),o(c)},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(288)),c=o.__importStar(t(289)),g=o.__importDefault(t(290)),d=o.__importDefault(t(291)),p=o.__importDefault(t(298));function f(i){var u=i.editor,l=i.eventHooks;r.default(u,l.enterUpEvents,l.enterDownEvents),c.default(u,l.deleteUpEvents,l.deleteDownEvents),c.cutToKeepP(u,l.keyupEvents),g.default(u,l.tabDownEvents),d.default(u,l.pasteEvents),p.default(u,l.imgClickEvents)}n.default=f},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(27));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=t(7),g=r.__importDefault(t(3));function d(p,f,i){function u(v){var h,A=g.default(c.EMPTY_P);if(A.insertBefore(v),(0,o.default)(h=v.html()).call(h,"=0){A.remove();return}p.selection.createRangeByElem(A,!0,!0),p.selection.restoreSelection(),v.remove()}function l(){var v=p.$textElem,h=p.selection.getSelectionContainerElem(),A=h.parent();if(A.html()==="
      "){u(A);return}if(h.getNodeName()==="FONT"&&h.text()===""&&h.attr("face")==="monospace"){u(A);return}if(!!A.equal(v)){var y=h.getNodeName();y==="P"&&h.attr("data-we-empty-p")===null||h.text()||u(h)}}f.push(l);function m(v){var h;p.selection.saveRange((h=getSelection())===null||h===void 0?void 0:h.getRangeAt(0));var A=p.selection.getSelectionContainerElem();A.id===p.textElemId&&(v.preventDefault(),p.cmd.do("insertHTML","


      "))}i.push(m)}n.default=d},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(17)),r=e(t(28));(0,a.default)(n,"__esModule",{value:!0}),n.cutToKeepP=void 0;var c=t(2),g=t(7),d=c.__importDefault(t(3));function p(i,u,l){function m(){var h=i.$textElem,A=i.$textElem.html(),y=i.$textElem.text(),x=(0,o.default)(A).call(A),S=["


      ","
      ",'

      ',g.EMPTY_P];if(/^\s*$/.test(y)&&(!x||(0,r.default)(S).call(S,x))){h.html(g.EMPTY_P);var T=h.getNode();i.selection.createRangeByElems(T.childNodes[0],T.childNodes[0]);var R=i.selection.getSelectionContainerElem();i.selection.restoreSelection(),i.selection.moveCursor(R.getNode(),0)}}u.push(m);function v(h){var A,y=i.$textElem,x=(0,o.default)(A=y.html().toLowerCase()).call(A);if(x===g.EMPTY_P){h.preventDefault();return}}l.push(v)}function f(i,u){function l(m){var v;if(m.keyCode===88){var h=i.$textElem,A=(0,o.default)(v=h.html().toLowerCase()).call(v);if(!A||A==="
      "){var y=d.default(g.EMPTY_P);h.html(" "),h.append(y),i.selection.createRangeByElem(y,!1,!0),i.selection.restoreSelection(),i.selection.moveCursor(y.getNode(),0)}}}u.push(l)}n.cutToKeepP=f,n.default=p},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});function o(r,c){function g(){if(!!r.cmd.queryCommandSupported("insertHTML")){var d=r.selection.getSelectionContainerElem();if(!!d){var p=d.parent(),f=d.getNodeName(),i=p.getNodeName();f=="CODE"||i==="CODE"||i==="PRE"||/hljs/.test(i)?r.cmd.do("insertHTML",r.config.languageTab):r.cmd.do("insertHTML","    ")}}}c.push(g)}n.default=o},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(17)),r=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var c=t(131),g=t(6),d=t(7);function p(m){var v,h=(0,o.default)(v=m.replace(/
      /gim,"

      ").replace(/<\/div>/gim,"

      ")).call(v),A=document.createElement("div");return A.innerHTML=h,A.innerHTML.replace(/

      <\/p>/gim,"")}function f(m){var v=m.replace(/
      |/gm,` +`).replace(/<[^>]+>/gm,"");return v}function i(m){var v;if(m==="")return!1;var h=document.createElement("div");return h.innerHTML=m,((v=h.firstChild)===null||v===void 0?void 0:v.nodeName)==="P"}function u(m){if(!(m!=null&&m.length))return!1;var v=m.elems[0];return v.nodeName==="P"&&v.innerHTML==="
      "}function l(m,v){function h(A){var y=m.config,x=y.pasteFilterStyle,S=y.pasteIgnoreImg,T=y.pasteTextHandle,R=c.getPasteHtml(A,x,S),C=c.getPasteText(A);C=C.replace(/\n/gm,"
      ");var E=m.selection.getSelectionContainerElem();if(!!E){var D=E==null?void 0:E.getNodeName(),P=E==null?void 0:E.getNodeTop(m),M="";if(P.elems[0]&&(M=P==null?void 0:P.getNodeName()),D==="CODE"||M==="PRE"){T&&g.isFunction(T)&&(C=""+(T(C)||"")),m.cmd.do("insertHTML",f(C));return}if(d.urlRegex.test(C)&&x){T&&g.isFunction(T)&&(C=""+(T(C)||""));var I=C.replace(d.urlRegex,function(z){return''+z+""}),N=m.selection.getRange(),B=document.createElement("div"),F=document.createDocumentFragment();if(B.innerHTML=I,N==null)return;for(;B.childNodes.length;)F.append(B.childNodes[0]);var O=F.querySelectorAll("a");(0,r.default)(O).call(O,function(z){z.innerText=z.href}),N.insertNode&&(N.deleteContents(),N.insertNode(F)),m.selection.clearWindowSelectionRange();return}if(!!R)try{T&&g.isFunction(T)&&(R=""+(T(R)||""));var H=/[\.\#\@]?\w+[ ]+\{[^}]*\}/.test(R);if(H&&x)m.cmd.do("insertHTML",""+p(C));else{var L=p(R);if(i(L)){var U=m.$textElem;if(m.cmd.do("insertHTML",L),U.equal(E)){m.selection.createEmptyRange();return}u(P)&&P.remove()}else m.cmd.do("insertHTML",L)}}catch{T&&g.isFunction(T)&&(C=""+(T(C)||"")),m.cmd.do("insertHTML",""+p(C))}}}v.push(h)}n.default=l},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(17)),r=e(t(4)),c=e(t(28));(0,a.default)(n,"__esModule",{value:!0});var g=t(2),d=t(293),p=g.__importDefault(t(297));function f(v){var h=/.*?<\/span>/gi,A=/(.*?)<\/span>/;return v.replace(h,function(y){var x=y.match(A);return x==null?"":x[1]})}function i(v,h){var A;return v=(0,o.default)(A=v.toLowerCase()).call(A),!!(d.IGNORE_TAGS.has(v)||h&&v==="img")}function u(v,h){var A="";A="<"+v;var y=[];(0,r.default)(h).call(h,function(S){y.push(S.name+'="'+S.value+'"')}),y.length>0&&(A=A+" "+y.join(" "));var x=d.EMPTY_TAGS.has(v);return A=A+(x?"/":"")+">",A}function l(v){return""}function m(v,h,A){h===void 0&&(h=!0),A===void 0&&(A=!1);var y=[],x="";function S(E){E=(0,o.default)(E).call(E),E&&(d.EMPTY_TAGS.has(E)||(x=E))}function T(){x=""}var R=new p.default;R.parse(v,{startElement:function(D,P){if(S(D),!i(D,A)){var M=d.NECESSARY_ATTRS.get(D)||[],I=[];(0,r.default)(P).call(P,function(B){var F=B.name;if(F==="style"){h||I.push(B);return}(0,c.default)(M).call(M,F)!==!1&&I.push(B)});var N=u(D,I);y.push(N)}},characters:function(D){!D||i(x,A)||y.push(D)},endElement:function(D){if(!i(D,A)){var P=l(D);y.push(P),T()}},comment:function(D){S(D)}});var C=y.join("");return C=f(C),C}n.default=m},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(132)),r=e(t(121));(0,a.default)(n,"__esModule",{value:!0}),n.TOP_LEVEL_TAGS=n.EMPTY_TAGS=n.NECESSARY_ATTRS=n.IGNORE_TAGS=void 0,n.IGNORE_TAGS=new o.default(["doctype","!doctype","html","head","meta","body","script","style","link","frame","iframe","title","svg","center","o:p"]),n.NECESSARY_ATTRS=new r.default([["img",["src","alt"]],["a",["href","target"]],["td",["colspan","rowspan"]],["th",["colspan","rowspan"]]]),n.EMPTY_TAGS=new o.default(["area","base","basefont","br","col","hr","img","input","isindex","embed"]),n.TOP_LEVEL_TAGS=new o.default(["h1","h2","h3","h4","h5","p","ul","ol","table","blockquote","pre","hr","form"])},function(s,n,t){var e=t(295);s.exports=e},function(s,n,t){t(296),t(61),t(50),t(54);var e=t(9);s.exports=e.Set},function(s,n,t){var e=t(122),a=t(124);s.exports=e("Set",function(o){return function(){return o(this,arguments.length?arguments[0]:void 0)}},a)},function(s,n){function t(){}t.prototype={handler:null,startTagRe:/^<([^>\s\/]+)((\s+[^=>\s]+(\s*=\s*((\"[^"]*\")|(\'[^']*\')|[^>\s]+))?)*)\s*\/?\s*>/m,endTagRe:/^<\/([^>\s]+)[^>]*>/m,attrRe:/([^=\s]+)(\s*=\s*((\"([^"]*)\")|(\'([^']*)\')|[^>\s]+))?/gm,parse:function(e,a){a&&(this.contentHandler=a);for(var o,r,c,g=!1,d=this;e.length>0;)e.substring(0,4)==""),c!=-1?(this.contentHandler.comment(e.substring(4,c)),e=e.substring(c+3),g=!1):g=!0):e.substring(0,2)=="0&&d(u.children,l.getRootNode())}l&&i.appendChild(l)}),g.default(i)}n.default=d},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(89)),r=e(t(70)),c=e(t(28)),g=e(t(302)),d=e(t(4)),p=e(t(94)),f=e(t(133)),i=e(t(46)),u=e(t(57));(0,a.default)(n,"__esModule",{value:!0});var l=t(2),m=l.__importDefault(t(87)),v=l.__importDefault(t(314)),h=l.__importDefault(t(3)),A=function(){function y(x){this.editor=x,this.menuList=[],this.constructorList=v.default}return y.prototype.extend=function(x,S){!S||typeof S!="function"||(this.constructorList[x]=S)},y.prototype.init=function(){var x,S,T=this,R=this.editor.config,C=R.excludeMenus;(0,o.default)(C)===!1&&(C=[]),R.menus=(0,r.default)(x=R.menus).call(x,function(F){return(0,c.default)(C).call(C,F)===!1});var E=(0,g.default)(m.default.globalCustomMenuConstructorList);E=(0,r.default)(E).call(E,function(F){return(0,c.default)(C).call(C,F)}),(0,d.default)(E).call(E,function(F){delete m.default.globalCustomMenuConstructorList[F]}),(0,d.default)(S=R.menus).call(S,function(F){var O=T.constructorList[F];T._initMenuList(F,O)});for(var D=0,P=(0,p.default)(m.default.globalCustomMenuConstructorList);D +

      +
      +
      +
      `);C.css("visibility","hidden"),S.append(C),C.css("z-index",x.zIndex.get("tooltip"));var E=0;function D(){E&&clearTimeout(E)}function P(){D(),C.css("visibility","hidden")}S.on("mouseover",function(M){var I=M.target,N=h.default(I),B,F;if(N.isContain(S)){P();return}if(N.parentUntil(".w-e-droplist")!=null)P();else if(N.attr("data-title"))B=N.attr("data-title"),F=N;else{var O=N.parentUntil(".w-e-menu");O!=null&&(B=O.attr("data-title"),F=O)}if(B&&F){D();var H=F.getOffsetData();C.text(x.i18next.t("menus.title."+B));var L=C.getOffsetData(),U=H.left+H.width/2-L.width/2;C.css("left",U+"px"),R==="up"?C.css("top",H.top-L.height-8+"px"):R==="down"&&C.css("top",H.top+H.height+8+"px"),E=(0,i.default)(function(){C.css("visibility","visible")},200)}else P()}).on("mouseleave",function(){P()})},y.prototype._addToToolbar=function(){var x,S=this.editor,T=S.$toolbarElem;(0,d.default)(x=this.menuList).call(x,function(R){var C=R.$elem;C&&T.append(C)})},y.prototype.menuFind=function(x){for(var S=this.menuList,T=0,R=S.length;Tu;)m=f[u++],(!e||r.call(p,m))&&l.push(g?[m,p[m]]:p[m]);return l}};s.exports={entries:c(!0),values:c(!1)}},function(s,n,t){var e=t(311);s.exports=e},function(s,n,t){var e=t(312),a=Array.prototype;s.exports=function(o){var r=o.some;return o===a||o instanceof Array&&r===a.some?e:r}},function(s,n,t){t(313);var e=t(15);s.exports=e("Array").some},function(s,n,t){var e=t(5),a=t(32).some,o=t(67),r=t(22),c=o("some"),g=r("some");e({target:"Array",proto:!0,forced:!c||!g},{some:function(p){return a(this,p,arguments.length>1?arguments[1]:void 0)}})},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(315)),c=o.__importDefault(t(316)),g=o.__importDefault(t(321)),d=o.__importDefault(t(326)),p=o.__importDefault(t(327)),f=o.__importDefault(t(328)),i=o.__importDefault(t(329)),u=o.__importDefault(t(331)),l=o.__importDefault(t(333)),m=o.__importDefault(t(334)),v=o.__importDefault(t(337)),h=o.__importDefault(t(338)),A=o.__importDefault(t(339)),y=o.__importDefault(t(350)),x=o.__importDefault(t(365)),S=o.__importDefault(t(369)),T=o.__importDefault(t(137)),R=o.__importDefault(t(378)),C=o.__importDefault(t(380)),E=o.__importDefault(t(381)),D=o.__importDefault(t(382)),P=o.__importDefault(t(401)),M=o.__importDefault(t(406)),I=o.__importDefault(t(409));n.default={bold:r.default,head:c.default,italic:d.default,link:g.default,underline:p.default,strikeThrough:f.default,fontName:i.default,fontSize:u.default,justify:l.default,quote:m.default,backColor:v.default,foreColor:h.default,video:A.default,image:y.default,indent:x.default,emoticon:S.default,list:T.default,lineHeight:R.default,undo:C.default,redo:E.default,table:D.default,code:P.default,splitLine:M.default,todo:I.default}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(23)),c=o.__importDefault(t(3)),g=function(d){o.__extends(p,d);function p(f){var i=this,u=c.default(`
      + +
      `);return i=d.call(this,u,f)||this,i}return p.prototype.clickHandler=function(){var f=this.editor,i=f.selection.isSelectionEmpty();i&&f.selection.createEmptyRange(),f.cmd.do("bold"),i&&(f.selection.collapseRange(),f.selection.restoreSelection())},p.prototype.tryChangeActive=function(){var f=this.editor;f.cmd.queryCommandState("bold")?this.active():this.unActive()},p}(r.default);n.default=g},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(27)),r=e(t(29)),c=e(t(4)),g=e(t(317)),d=e(t(28));(0,a.default)(n,"__esModule",{value:!0});var p=t(2),f=p.__importDefault(t(24)),i=p.__importDefault(t(3)),u=t(6),l=t(7),m=function(v){p.__extends(h,v);function h(A){var y=this,x=i.default('
      '),S={width:100,title:"\u8BBE\u7F6E\u6807\u9898",type:"list",list:[{$elem:i.default("

      H1

      "),value:"

      "},{$elem:i.default("

      H2

      "),value:"

      "},{$elem:i.default("

      H3

      "),value:"

      "},{$elem:i.default("

      H4

      "),value:"

      "},{$elem:i.default("

      H5
      "),value:"
      "},{$elem:i.default("

      "+A.i18next.t("menus.dropListMenu.head.\u6B63\u6587")+"

      "),value:"

      "}],clickHandler:function(C){y.command(C)}};y=v.call(this,x,A,S)||this;var T=A.config.onCatalogChange;return T&&(y.oldCatalogs=[],y.addListenerCatalog(),y.getCatalogs()),y}return h.prototype.command=function(A){var y=this.editor,x=y.selection.getSelectionContainerElem();if(x&&y.$textElem.equal(x))this.setMultilineHead(A);else{var S;if((0,o.default)(S=["OL","UL","LI","TABLE","TH","TR","CODE","HR"]).call(S,i.default(x).getNodeName())>-1)return;y.cmd.do("formatBlock",A)}A!=="

      "&&this.addUidForSelectionElem()},h.prototype.addUidForSelectionElem=function(){var A=this.editor,y=A.selection.getSelectionContainerElem(),x=u.getRandomCode();i.default(y).attr("id",x)},h.prototype.addListenerCatalog=function(){var A=this,y=this.editor;y.txt.eventHooks.changeEvents.push(function(){A.getCatalogs()})},h.prototype.getCatalogs=function(){var A=this.editor,y=this.editor.$textElem,x=A.config.onCatalogChange,S=(0,r.default)(y).call(y,"h1,h2,h3,h4,h5"),T=[];(0,c.default)(S).call(S,function(R,C){var E=i.default(R),D=E.attr("id"),P=E.getNodeName(),M=E.text();D||(D=u.getRandomCode(),E.attr("id",D)),M&&T.push({tag:P,id:D,text:M})}),(0,g.default)(this.oldCatalogs)!==(0,g.default)(T)&&(this.oldCatalogs=T,x&&x(T))},h.prototype.setMultilineHead=function(A){var y=this,x,S,T=this.editor,R=T.selection,C=(x=R.getSelectionContainerElem())===null||x===void 0?void 0:x.elems[0],E=["IMG","VIDEO","TABLE","TH","TR","UL","OL","PRE","HR","BLOCKQUOTE"],D=i.default(R.getSelectionStartElem()),P=i.default(R.getSelectionEndElem());P.elems[0].outerHTML===i.default(l.EMPTY_P).elems[0].outerHTML&&!P.elems[0].nextSibling&&(P=P.prev());var M=[];M.push(D.getNodeTop(T));var I=[],N=(S=R.getRange())===null||S===void 0?void 0:S.commonAncestorContainer.childNodes;N==null||(0,c.default)(N).call(N,function(O,H){O===M[0].getNode()&&I.push(H),O===P.getNodeTop(T).getNode()&&I.push(H)});for(var B=0;M[B].getNode()!==P.getNodeTop(T).getNode();){if(!M[B].elems[0])return;var F=i.default(M[B].next().getNode());M.push(F),B++}M==null||(0,c.default)(M).call(M,function(O,H){if(!y.hasTag(O,E)){var L=i.default(A),U=O.parent().getNode();L.html(""+O.html()),U.insertBefore(L.getNode(),O.getNode()),O.remove()}}),R.createRangeByElems(C.children[I[0]],C.children[I[1]])},h.prototype.hasTag=function(A,y){var x=this,S;if(!A)return!1;if((0,d.default)(y).call(y,A==null?void 0:A.getNodeName()))return!0;var T=!1;return(S=A.children())===null||S===void 0||(0,c.default)(S).call(S,function(R){T=x.hasTag(i.default(R),y)}),T},h.prototype.tryChangeActive=function(){var A=this.editor,y=/^h/i,x=A.cmd.queryCommandValue("formatBlock");y.test(x)?this.active():this.unActive()},h}(f.default);n.default=m},function(s,n,t){s.exports=t(318)},function(s,n,t){var e=t(319);s.exports=e},function(s,n,t){t(320);var e=t(9);e.JSON||(e.JSON={stringify:JSON.stringify}),s.exports=function(o,r,c){return e.JSON.stringify.apply(null,arguments)}},function(s,n,t){var e=t(5),a=t(36),o=t(11),r=a("JSON","stringify"),c=/[\uD800-\uDFFF]/g,g=/^[\uD800-\uDBFF]$/,d=/^[\uDC00-\uDFFF]$/,p=function(i,u,l){var m=l.charAt(u-1),v=l.charAt(u+1);return g.test(i)&&!d.test(v)||d.test(i)&&!g.test(m)?"\\u"+i.charCodeAt(0).toString(16):i},f=o(function(){return r("\uDF06\uD834")!=='"\\udf06\\ud834"'||r("\uDEAD")!=='"\\udead"'});r&&e({target:"JSON",stat:!0,forced:f},{stringify:function(u,l,m){var v=r.apply(null,arguments);return typeof v=="string"?v.replace(c,p):v}})},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(17));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(38)),g=r.__importDefault(t(3)),d=r.__importDefault(t(322)),p=r.__importStar(t(96)),f=r.__importDefault(t(33)),i=r.__importDefault(t(324)),u=t(7),l=function(m){r.__extends(v,m);function v(h){var A=this,y=g.default('

      ');return A=m.call(this,y,h)||this,i.default(h),A}return v.prototype.clickHandler=function(){var h=this.editor,A,y=h.selection.getSelectionContainerElem(),x=h.$textElem,S=x.html(),T=(0,o.default)(S).call(S);if(T===u.EMPTY_P){var R=x.children();h.selection.createRangeByElem(R,!0,!0),y=h.selection.getSelectionContainerElem()}if(!(y&&h.$textElem.equal(y)))if(this.isActive){var C="",E="";if(A=h.selection.getSelectionContainerElem(),!A)return;if(A.getNodeName()!=="A"){var D=p.getParentNodeA(A);A=g.default(D)}C=A.elems[0].innerText,E=A.attr("href"),this.createPanel(C,E)}else h.selection.isSelectionEmpty()?this.createPanel("",""):this.createPanel(h.selection.getSelectionText(),"")},v.prototype.createPanel=function(h,A){var y=d.default(this.editor,h,A),x=new f.default(this,y);x.create()},v.prototype.tryChangeActive=function(){var h=this.editor;p.default(h)?this.active():this.unActive()},v}(c.default);n.default=l},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(28)),r=e(t(17)),c=e(t(29));(0,a.default)(n,"__esModule",{value:!0});var g=t(2),d=t(6),p=g.__importDefault(t(3)),f=g.__importStar(t(96)),i=t(323);function u(l,m,v){var h=d.getRandom("input-link"),A=d.getRandom("input-text"),y=d.getRandom("btn-ok"),x=d.getRandom("btn-del"),S=f.default(l)?"inline-block":"none",T;function R(){if(!!f.default(l)){var M=l.selection.getSelectionContainerElem();!M||(l.selection.createRangeByElem(M),l.selection.restoreSelection(),T=M)}}function C(M,I){var N=M.replace(//g,">"),B=p.default(''+N+""),F=B.elems[0];F.innerText=M,F.href=I,f.default(l)&&R(),l.cmd.do("insertElem",B)}function E(){if(!!f.default(l))if(R(),T.getNodeName()==="A"){var M,I=T.elems[0],N=I.parentElement;N&&(0,o.default)(M=f.EXTRA_TAG).call(M,N.nodeName)?N.innerHTML=I.innerHTML:l.cmd.do("insertHTML",""+I.innerHTML+"")}else{var B=f.getParentNodeA(T),F=B.innerHTML;l.cmd.do("insertHTML",""+F+"")}}function D(M,I){var N=l.config.linkCheck(M,I);if(N!==void 0){if(N===!0)return!0;l.config.customAlert(N,"warning")}return!1}var P={width:300,height:0,tabs:[{title:l.i18next.t("menus.panelMenus.link.\u94FE\u63A5"),tpl:`
      + + + + +
      + + +
      +
      `,events:[{selector:"#"+y,type:"click",fn:function(){var I,N,B,F,O,H=l.selection.getSelectionContainerElem(),L=H==null?void 0:H.elems[0];l.selection.restoreSelection();var U=l.selection.getSelectionRangeTopNodes()[0].getNode(),z=window.getSelection(),j=p.default("#"+h),K=p.default("#"+A),V=(0,r.default)(I=j.val()).call(I),Q=(0,r.default)(N=K.val()).call(N),w="";z&&!(z!=null&&z.isCollapsed)&&(w=(F=i.insertHtml(z,U))===null||F===void 0?void 0:(0,r.default)(F).call(F));var G=w==null?void 0:w.replace(/<.*?>/g,""),X=(O=G==null?void 0:G.length)!==null&&O!==void 0?O:0;if(X<=Q.length){var tt=Q.substring(0,X),nt=Q.substring(X);G===tt&&(Q=G+nt)}if(!!V&&(Q||(Q=V),!!D(Q,V))){if((L==null?void 0:L.nodeName)==="A")return L.setAttribute("href",V),L.innerText=Q,!0;if((L==null?void 0:L.nodeName)!=="A"&&(0,o.default)(B=f.EXTRA_TAG).call(B,L.nodeName)){var st=f.getParentNodeA(H);if(st)return st.setAttribute("href",V),L.innerText=Q,!0}return C(Q,V),!0}},bindEnter:!0},{selector:"#"+x,type:"click",fn:function(){return E(),!0}}]}],setLinkValue:function(I,N){var B="",F="",O;N==="text"&&(B="#"+A,F=m),N==="link"&&(B="#"+h,F=v),O=(0,c.default)(I).call(I,B).elems[0],O.value=F}};return P}n.default=u},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0}),n.insertHtml=n.createPartHtml=n.makeHtmlString=n.getTopNode=void 0;function r(i,u){var l=i,m=i;do{if(l.textContent===u)break;m=l,l.parentNode&&(l=l==null?void 0:l.parentNode)}while((l==null?void 0:l.nodeName)!=="P");return m}n.getTopNode=r;function c(i,u){var l=i.nodeName,m="";if(i.nodeType===3||/^(h|H)[1-6]$/.test(l))return u;if(i.nodeType===1){var v=i.getAttribute("style"),h=i.getAttribute("face"),A=i.getAttribute("color");v&&(m=m+(' style="'+v+'"')),h&&(m=m+(' face="'+h+'"')),A&&(m=m+(' color="'+A+'"'))}return l=l.toLowerCase(),"<"+l+m+">"+u+""}n.makeHtmlString=c;function g(i,u,l,m){var v,h=(v=u.textContent)===null||v===void 0?void 0:v.substring(l,m),A=u,y="";do y=c(A,h!=null?h:""),h=y,A=A==null?void 0:A.parentElement;while(A&&A.textContent!==i);return y}n.createPartHtml=g;function d(i,u){var l,m,v,h,A,y=i.anchorNode,x=i.focusNode,S=i.anchorOffset,T=i.focusOffset,R=(l=u.textContent)!==null&&l!==void 0?l:"",C=p(u),E="",D="",P="",M="",I=y,N=x,B=y;if(y!=null&&y.isEqualNode(x!=null?x:null)){var F=g(R,y,S,T);return F=f(C,F),F}for(y&&(D=g(R,y,S!=null?S:0)),x&&(M=g(R,x,0,T)),y&&(I=r(y,R)),x&&(N=r(x,R)),B=(m=I==null?void 0:I.nextSibling)!==null&&m!==void 0?m:y;!(B!=null&&B.isEqualNode(N!=null?N:null));){var O=B==null?void 0:B.nodeName;if(O==="#text")P=P+(B==null?void 0:B.textContent);else{var H=(h=(v=B==null?void 0:B.firstChild)===null||v===void 0?void 0:v.parentElement)===null||h===void 0?void 0:h.innerHTML;B&&(P=P+c(B,H!=null?H:""))}var L=(A=B==null?void 0:B.nextSibling)!==null&&A!==void 0?A:B;if(L===B)break;B=L}return E=""+D+P+M,E=f(C,E),E}n.insertHtml=d;function p(i){for(var u,l=(u=i.textContent)!==null&&u!==void 0?u:"",m=[];(i==null?void 0:i.textContent)===l;)i.nodeName!=="P"&&i.nodeName!=="TABLE"&&m.push(i),i=i.childNodes[0];return m}function f(i,u){return(0,o.default)(i).call(i,function(l){u=c(l,u)}),u}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(325));function c(g){r.default(g)}n.default=c},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(28));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=r.__importDefault(t(39)),d=t(96);function p(i){var u;function l(v){var h=[{$elem:c.default(""+i.i18next.t("menus.panelMenus.link.\u67E5\u770B\u94FE\u63A5")+""),onClick:function(y,x){var S=x.attr("href");return window.open(S,"_target"),!0}},{$elem:c.default(""+i.i18next.t("menus.panelMenus.link.\u53D6\u6D88\u94FE\u63A5")+""),onClick:function(y,x){var S,T;y.selection.createRangeByElem(x),y.selection.restoreSelection();var R=x.childNodes();if((R==null?void 0:R.getNodeName())==="IMG"){var C=(T=(S=y.selection.getSelectionContainerElem())===null||S===void 0?void 0:S.children())===null||T===void 0?void 0:T.elems[0].children[0];y.cmd.do("insertHTML",`")}else{var E,D=x.elems[0],P=D.innerHTML,M=D.parentElement;M&&(0,o.default)(E=d.EXTRA_TAG).call(E,M.nodeName)?M.innerHTML=P:y.cmd.do("insertHTML",""+P+"")}return!0}}];u=new g.default(i,v,h),u.create()}function m(){u&&(u.remove(),u=null)}return{showLinkTooltip:l,hideLinkTooltip:m}}function f(i){var u=p(i),l=u.showLinkTooltip,m=u.hideLinkTooltip;i.txt.eventHooks.linkClickEvents.push(l),i.txt.eventHooks.clickEvents.push(m),i.txt.eventHooks.keyupEvents.push(m),i.txt.eventHooks.toolbarClickEvents.push(m),i.txt.eventHooks.menuClickEvents.push(m),i.txt.eventHooks.textScrollEvents.push(m)}n.default=f},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(23)),c=o.__importDefault(t(3)),g=function(d){o.__extends(p,d);function p(f){var i=this,u=c.default(`
      + +
      `);return i=d.call(this,u,f)||this,i}return p.prototype.clickHandler=function(){var f=this.editor,i=f.selection.isSelectionEmpty();i&&f.selection.createEmptyRange(),f.cmd.do("italic"),i&&(f.selection.collapseRange(),f.selection.restoreSelection())},p.prototype.tryChangeActive=function(){var f=this.editor;f.cmd.queryCommandState("italic")?this.active():this.unActive()},p}(r.default);n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(23)),c=o.__importDefault(t(3)),g=function(d){o.__extends(p,d);function p(f){var i=this,u=c.default(`
      + +
      `);return i=d.call(this,u,f)||this,i}return p.prototype.clickHandler=function(){var f=this.editor,i=f.selection.isSelectionEmpty();i&&f.selection.createEmptyRange(),f.cmd.do("underline"),i&&(f.selection.collapseRange(),f.selection.restoreSelection())},p.prototype.tryChangeActive=function(){var f=this.editor;f.cmd.queryCommandState("underline")?this.active():this.unActive()},p}(r.default);n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(23)),c=o.__importDefault(t(3)),g=function(d){o.__extends(p,d);function p(f){var i=this,u=c.default(`
      + +
      `);return i=d.call(this,u,f)||this,i}return p.prototype.clickHandler=function(){var f=this.editor,i=f.selection.isSelectionEmpty();i&&f.selection.createEmptyRange(),f.cmd.do("strikeThrough"),i&&(f.selection.collapseRange(),f.selection.restoreSelection())},p.prototype.tryChangeActive=function(){var f=this.editor;f.cmd.queryCommandState("strikeThrough")?this.active():this.unActive()},p}(r.default);n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(24)),c=o.__importDefault(t(3)),g=o.__importDefault(t(330)),d=function(p){o.__extends(f,p);function f(i){var u=this,l=c.default(`
      + +
      `),m=new g.default(i.config.fontNames),v={width:100,title:"\u8BBE\u7F6E\u5B57\u4F53",type:"list",list:m.getItemList(),clickHandler:function(A){u.command(A)}};return u=p.call(this,l,i,v)||this,u}return f.prototype.command=function(i){var u,l=this.editor,m=l.selection.isSelectionEmpty(),v=(u=l.selection.getSelectionContainerElem())===null||u===void 0?void 0:u.elems[0];if(v!=null){var h=(v==null?void 0:v.nodeName.toLowerCase())!=="p",A=(v==null?void 0:v.getAttribute("face"))===i;if(m){if(h&&!A){var y=l.selection.getSelectionRangeTopNodes();l.selection.createRangeByElem(y[0]),l.selection.moveCursor(y[0].elems[0])}l.selection.setRangeToElem(v),l.selection.createEmptyRange()}l.cmd.do("fontName",i),m&&(l.selection.collapseRange(),l.selection.restoreSelection())}},f.prototype.tryChangeActive=function(){},f}(r.default);n.default=d},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=function(){function d(p){var f=this;this.itemList=[],(0,o.default)(p).call(p,function(i){var u=typeof i=="string"?i:i.value,l=typeof i=="string"?i:i.name;f.itemList.push({$elem:c.default(`

      `+l+"

      "),value:l})})}return d.prototype.getItemList=function(){return this.itemList},d}();n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(24)),c=o.__importDefault(t(3)),g=o.__importDefault(t(332)),d=function(p){o.__extends(f,p);function f(i){var u=this,l=c.default(`
      + +
      `),m=new g.default(i.config.fontSizes),v={width:160,title:"\u8BBE\u7F6E\u5B57\u53F7",type:"list",list:m.getItemList(),clickHandler:function(A){u.command(A)}};return u=p.call(this,l,i,v)||this,u}return f.prototype.command=function(i){var u,l=this.editor,m=l.selection.isSelectionEmpty(),v=(u=l.selection.getSelectionContainerElem())===null||u===void 0?void 0:u.elems[0];v!=null&&(l.cmd.do("fontSize",i),m&&(l.selection.collapseRange(),l.selection.restoreSelection()))},f.prototype.tryChangeActive=function(){},f}(r.default);n.default=d},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(3)),c=function(){function g(d){this.itemList=[];for(var p in d){var f=d[p];this.itemList.push({$elem:r.default('

      '+f.name+"

      "),value:f.value})}}return g.prototype.getItemList=function(){return this.itemList},g}();n.default=c},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4)),r=e(t(27));(0,a.default)(n,"__esModule",{value:!0});var c=t(2),g=c.__importDefault(t(24)),d=c.__importDefault(t(3)),p=["LI"],f=["BLOCKQUOTE"],i=function(u){c.__extends(l,u);function l(m){var v=this,h=d.default('
      '),A={width:100,title:"\u5BF9\u9F50\u65B9\u5F0F",type:"list",list:[{$elem:d.default(`

      + + `+m.i18next.t("menus.dropListMenu.justify.\u9760\u5DE6")+` +

      `),value:"left"},{$elem:d.default(`

      + + `+m.i18next.t("menus.dropListMenu.justify.\u5C45\u4E2D")+` +

      `),value:"center"},{$elem:d.default(`

      + + `+m.i18next.t("menus.dropListMenu.justify.\u9760\u53F3")+` +

      `),value:"right"},{$elem:d.default(`

      + + `+m.i18next.t("menus.dropListMenu.justify.\u4E24\u7AEF")+` +

      `),value:"justify"}],clickHandler:function(x){v.command(x)}};return v=u.call(this,h,m,A)||this,v}return l.prototype.command=function(m){var v=this.editor,h=v.selection,A=h.getSelectionContainerElem();h.saveRange();var y=v.selection.getSelectionRangeTopNodes();if(A!=null&&A.length)if(this.isSpecialNode(A,y[0])||this.isSpecialTopNode(y[0])){var x=this.getSpecialNodeUntilTop(A,y[0]);if(x==null)return;d.default(x).css("text-align",m)}else(0,o.default)(y).call(y,function(S){S.css("text-align",m)});h.restoreSelection()},l.prototype.getSpecialNodeUntilTop=function(m,v){for(var h=m.elems[0],A=v.elems[0];h!=null;){if((0,r.default)(p).call(p,h==null?void 0:h.nodeName)!==-1||h.parentNode===A)return h;h=h.parentNode}return h},l.prototype.isSpecialNode=function(m,v){var h=this.getSpecialNodeUntilTop(m,v);return h==null?!1:(0,r.default)(p).call(p,h.nodeName)!==-1},l.prototype.isSpecialTopNode=function(m){var v;return m==null?!1:(0,r.default)(f).call(f,(v=m.elems[0])===null||v===void 0?void 0:v.nodeName)!==-1},l.prototype.tryChangeActive=function(){},l}(g.default);n.default=i},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=r.__importDefault(t(23)),d=r.__importDefault(t(335)),p=r.__importDefault(t(336)),f=t(7),i=function(u){r.__extends(l,u);function l(m){var v=this,h=c.default(`
      + +
      `);return v=u.call(this,h,m)||this,d.default(m),v}return l.prototype.clickHandler=function(){var m,v,h=this.editor,A=h.selection.isSelectionEmpty(),y=h.selection.getSelectionRangeTopNodes(),x=y[y.length-1],S=this.getTopNodeName();if(S==="BLOCKQUOTE"){var T=c.default(x.childNodes()),R=T.length,C=x;(0,o.default)(T).call(T,function(M){var I=c.default(M);I.insertAfter(C),C=I}),x.remove(),h.selection.moveCursor(T.elems[R-1]),this.tryChangeActive()}else{var E=p.default(y);if(h.$textElem.equal(x)){var D=(m=h.selection.getSelectionContainerElem())===null||m===void 0?void 0:m.elems[0];h.selection.createRangeByElems(D.children[0],D.children[0]),y=h.selection.getSelectionRangeTopNodes(),E=p.default(y),x.append(E)}else E.insertAfter(x);this.delSelectNode(y);var P=(v=E.childNodes())===null||v===void 0?void 0:v.last().getNode();if(P==null)return;P.textContent?h.selection.moveCursor(P):h.selection.moveCursor(P,0),this.tryChangeActive(),c.default(f.EMPTY_P).insertAfter(E);return}A&&(h.selection.collapseRange(),h.selection.restoreSelection())},l.prototype.tryChangeActive=function(){var m,v=this.editor,h=(m=v.selection.getSelectionRangeTopNodes()[0])===null||m===void 0?void 0:m.getNodeName();h==="BLOCKQUOTE"?this.active():this.unActive()},l.prototype.getTopNodeName=function(){var m=this.editor,v=m.selection.getSelectionRangeTopNodes()[0],h=v==null?void 0:v.getNodeName();return h},l.prototype.delSelectNode=function(m){(0,o.default)(m).call(m,function(v){v.remove()})},l}(g.default);n.default=i},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=t(7),c=o.__importDefault(t(3));function g(d){function p(f){var i,u=d.selection.getSelectionContainerElem(),l=d.selection.getSelectionRangeTopNodes()[0];if((l==null?void 0:l.getNodeName())==="BLOCKQUOTE"){if(u.getNodeName()==="BLOCKQUOTE"){var m=(i=u.childNodes())===null||i===void 0?void 0:i.getNode();d.selection.moveCursor(m)}if(u.text()===""){f.preventDefault(),u.remove();var v=c.default(r.EMPTY_P);v.insertAfter(l),d.selection.moveCursor(v.getNode(),0)}l.text()===""&&l.remove()}}d.txt.eventHooks.enterDownEvents.push(p)}n.default=g},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3));function g(d){var p=c.default("
      ");return(0,o.default)(d).call(d,function(f){p.append(f.clone(!0))}),p}n.default=g},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(26));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(24)),g=r.__importDefault(t(3)),d=t(6),p=function(f){r.__extends(i,f);function i(u){var l,m=this,v=g.default(`
      + +
      `),h={width:120,title:"\u80CC\u666F\u989C\u8272",type:"inline-block",list:(0,o.default)(l=u.config.colors).call(l,function(A){return{$elem:g.default(''),value:A}}),clickHandler:function(y){m.command(y)}};return m=f.call(this,v,u,h)||this,m}return i.prototype.command=function(u){var l,m=this.editor,v=m.selection.isSelectionEmpty(),h=(l=m.selection.getSelectionContainerElem())===null||l===void 0?void 0:l.elems[0];if(h!=null){var A=(h==null?void 0:h.nodeName.toLowerCase())!=="p",y=h==null?void 0:h.style.backgroundColor,x=d.hexToRgb(u)===y;if(v){if(A&&!x){var S=m.selection.getSelectionRangeTopNodes();m.selection.createRangeByElem(S[0]),m.selection.moveCursor(S[0].elems[0])}m.selection.createEmptyRange()}m.cmd.do("backColor",u),v&&(m.selection.collapseRange(),m.selection.restoreSelection())}},i.prototype.tryChangeActive=function(){},i}(c.default);n.default=p},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(26));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(24)),g=r.__importDefault(t(3)),d=function(p){r.__extends(f,p);function f(i){var u,l=this,m=g.default(`
      + +
      `),v={width:120,title:"\u6587\u5B57\u989C\u8272",type:"inline-block",list:(0,o.default)(u=i.config.colors).call(u,function(h){return{$elem:g.default(''),value:h}}),clickHandler:function(A){l.command(A)}};return l=p.call(this,m,i,v)||this,l}return f.prototype.command=function(i){var u,l=this.editor,m=l.selection.isSelectionEmpty(),v=(u=l.selection.getSelectionContainerElem())===null||u===void 0?void 0:u.elems[0];if(v!=null){var h=l.selection.getSelectionText();if(v.nodeName==="A"&&v.textContent===h){var A=g.default("").getNode();v.appendChild(A)}l.cmd.do("foreColor",i),m&&(l.selection.collapseRange(),l.selection.restoreSelection())}},f.prototype.tryChangeActive=function(){},f}(c.default);n.default=d},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(33)),g=o.__importDefault(t(38)),d=o.__importDefault(t(340)),p=o.__importDefault(t(346)),f=function(i){o.__extends(u,i);function u(l){var m=this,v=r.default(`
      + +
      `);return m=i.call(this,v,l)||this,p.default(l),m}return u.prototype.clickHandler=function(){this.createPanel("")},u.prototype.createPanel=function(l){var m=d.default(this.editor,l),v=new c.default(this,m);v.create()},u.prototype.tryChangeActive=function(){},u}(g.default);n.default=f},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(17));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=t(6),g=r.__importDefault(t(3)),d=r.__importDefault(t(341)),p=t(7);function f(i,u){var l=i.config,m=new d.default(i),v=c.getRandom("input-iframe"),h=c.getRandom("btn-ok"),A=c.getRandom("input-upload"),y=c.getRandom("btn-local-ok");function x(C){i.cmd.do("insertHTML",C+p.EMPTY_P),i.config.onlineVideoCallback(C)}function S(C){var E=i.config.onlineVideoCheck(C);return E===!0?!0:(typeof E=="string"&&i.config.customAlert(E,"error"),!1)}var T=[{title:i.i18next.t("menus.panelMenus.video.\u4E0A\u4F20\u89C6\u9891"),tpl:`
      +
      + +
      +
      + +
      +
      `,events:[{selector:"#"+y,type:"click",fn:function(){var E=g.default("#"+A),D=E.elems[0];if(D)D.click();else return!0}},{selector:"#"+A,type:"change",fn:function(){var E=g.default("#"+A),D=E.elems[0];if(!D)return!0;var P=D.files;return P.length&&m.uploadVideo(P),!0}}]},{title:i.i18next.t("menus.panelMenus.video.\u63D2\u5165\u89C6\u9891"),tpl:`
      + "/> + +
      + +
      +
      `,events:[{selector:"#"+h,type:"click",fn:function(){var E,D=g.default("#"+v),P=(0,o.default)(E=D.val()).call(E);if(!!P&&!!S(P))return x(P),!0},bindEnter:!0}]}],R={width:300,height:0,tabs:[]};return window.FileReader&&(l.uploadVideoServer||l.customUploadVideo)&&R.tabs.push(T[0]),l.showLinkVideo&&R.tabs.push(T[1]),R}n.default=f},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(133)),r=e(t(57)),c=e(t(4)),g=e(t(27));(0,a.default)(n,"__esModule",{value:!0});var d=t(2),p=t(6),f=d.__importDefault(t(135)),i=d.__importDefault(t(136)),u=t(7),l=t(6),m=function(){function v(h){this.editor=h}return v.prototype.uploadVideo=function(h){var A=this;if(!!h.length){var y=this.editor,x=y.config,S="validate.",T=function(G){return y.i18next.t(S+G)},R=x.uploadVideoServer,C=x.uploadVideoMaxSize,E=C/1024,D=x.uploadVideoName,P=x.uploadVideoParams,M=x.uploadVideoParamsWithUrl,I=x.uploadVideoHeaders,N=x.uploadVideoHooks,B=x.uploadVideoTimeout,F=x.withVideoCredentials,O=x.customUploadVideo,H=x.uploadVideoAccept,L=[],U=[];if(p.arrForEach(h,function(w){var G=w.name,X=w.size/1024/1024;if(!(!G||!X)){if(!(H instanceof Array)){U.push("\u3010"+H+"\u3011"+T("uploadVideoAccept \u4E0D\u662FArray"));return}if(!(0,o.default)(H).call(H,function(tt){return tt===G.split(".")[G.split(".").length-1]})){U.push("\u3010"+G+"\u3011"+T("\u4E0D\u662F\u89C6\u9891"));return}if(E1&&(X=X+(G+1)),j.append(X,w)}),R){var K=R.split("#");R=K[0];var V=K[1]||"";(0,c.default)(p).call(p,P,function(w,G){M&&((0,g.default)(R).call(R,"?")>0?R+="&":R+="?",R=R+w+"="+G),j.append(w,G)}),V&&(R+="#"+V);var Q=f.default(R,{timeout:B,formData:j,headers:I,withCredentials:!!F,beforeSend:function(G){if(N.before)return N.before(G,y,L)},onTimeout:function(G){x.customAlert(T("\u4E0A\u4F20\u89C6\u9891\u8D85\u65F6"),"error"),N.timeout&&N.timeout(G,y)},onProgress:function(G,X){var tt=new i.default(y);X.lengthComputable&&(G=X.loaded/X.total,tt.show(G))},onError:function(G){x.customAlert(T("\u4E0A\u4F20\u89C6\u9891\u9519\u8BEF"),"error",T("\u4E0A\u4F20\u89C6\u9891\u9519\u8BEF")+"\uFF0C"+T("\u670D\u52A1\u5668\u8FD4\u56DE\u72B6\u6001")+": "+G.status),N.error&&N.error(G,y)},onFail:function(G,X){x.customAlert(T("\u4E0A\u4F20\u89C6\u9891\u5931\u8D25"),"error",T("\u4E0A\u4F20\u89C6\u9891\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF")+("\uFF0C"+T("\u8FD4\u56DE\u7ED3\u679C")+": ")+X),N.fail&&N.fail(G,y,X)},onSuccess:function(G,X){if(N.customInsert){var tt;N.customInsert((0,r.default)(tt=A.insertVideo).call(tt,A),X,y);return}if(X.errno!="0"){x.customAlert(T("\u4E0A\u4F20\u89C6\u9891\u5931\u8D25"),"error",T("\u4E0A\u4F20\u89C6\u9891\u8FD4\u56DE\u7ED3\u679C\u9519\u8BEF")+"\uFF0C"+T("\u8FD4\u56DE\u7ED3\u679C")+" errno="+X.errno),N.fail&&N.fail(G,y,X);return}var nt=X.data;A.insertVideo(nt.url),N.success&&N.success(G,y,X)}});typeof Q=="string"&&x.customAlert(Q,"error")}}},v.prototype.insertVideo=function(h){var A=this.editor,y=A.config,x="validate.",S=function(C,E){return E===void 0&&(E=x),A.i18next.t(E+C)};if(!y.customInsertVideo)l.UA.isFirefox?A.cmd.do("insertHTML",'

      '):A.cmd.do("insertHTML",''+u.EMPTY_P);else{y.customInsertVideo(h);return}var T=document.createElement("video");T.onload=function(){T=null},T.onerror=function(){y.customAlert(S("\u63D2\u5165\u89C6\u9891\u9519\u8BEF"),"error","wangEditor: "+S("\u63D2\u5165\u89C6\u9891\u9519\u8BEF")+"\uFF0C"+S("\u89C6\u9891\u94FE\u63A5")+' "'+h+'"\uFF0C'+S("\u4E0B\u8F7D\u94FE\u63A5\u5931\u8D25")),T=null},T.onabort=function(){return T=null},T.src=h},v}();n.default=m},function(s,n,t){s.exports=t(343)},function(s,n,t){var e=t(344);s.exports=e},function(s,n,t){t(345);var e=t(9);s.exports=e.Date.now},function(s,n,t){var e=t(5);e({target:"Date",stat:!0},{now:function(){return new Date().getTime()}})},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(347)),c=o.__importDefault(t(349));function g(d){r.default(d),c.default(d)}n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.createShowHideFn=void 0;var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(39)),g=o.__importDefault(t(348));function d(f){var i,u=function(h,A){return A===void 0&&(A=""),f.i18next.t(A+h)};function l(v){var h=[{$elem:r.default(""),onClick:function(y,x){return x.remove(),!0}},{$elem:r.default("100%"),onClick:function(y,x){return x.attr("width","100%"),x.removeAttr("height"),!0}},{$elem:r.default("50%"),onClick:function(y,x){return x.attr("width","50%"),x.removeAttr("height"),!0}},{$elem:r.default("30%"),onClick:function(y,x){return x.attr("width","30%"),x.removeAttr("height"),!0}},{$elem:r.default(""+u("\u91CD\u7F6E")+""),onClick:function(y,x){return x.removeAttr("width"),x.removeAttr("height"),!0}},{$elem:r.default(""+u("menus.justify.\u9760\u5DE6")+""),onClick:function(y,x){return g.default(x,"left"),!0}},{$elem:r.default(""+u("menus.justify.\u5C45\u4E2D")+""),onClick:function(y,x){return g.default(x,"center"),!0}},{$elem:r.default(""+u("menus.justify.\u9760\u53F3")+""),onClick:function(y,x){return g.default(x,"right"),!0}}];i=new c.default(f,v,h),i.create()}function m(){i&&(i.remove(),i=null)}return{showVideoTooltip:l,hideVideoTooltip:m}}n.createShowHideFn=d;function p(f){var i=d(f),u=i.showVideoTooltip,l=i.hideVideoTooltip;f.txt.eventHooks.videoClickEvents.push(u),f.txt.eventHooks.clickEvents.push(l),f.txt.eventHooks.keyupEvents.push(l),f.txt.eventHooks.toolbarClickEvents.push(l),f.txt.eventHooks.menuClickEvents.push(l),f.txt.eventHooks.textScrollEvents.push(l),f.txt.eventHooks.changeEvents.push(l)}n.default=p},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(28));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3));function g(p,f){var i=["P"],u=d(p,i);u&&c.default(u).css("text-align",f)}n.default=g;function d(p,f){for(var i,u=p.elems[0];u!=null;){if((0,o.default)(f).call(f,u==null?void 0:u.nodeName))return u;if(((i=u==null?void 0:u.parentNode)===null||i===void 0?void 0:i.nodeName)==="BODY")return null;u=u.parentNode}return u}},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(6);function r(c){if(!!o.UA.isFirefox){var g=c.txt,d=c.selection,p=g.eventHooks.keydownEvents;p.push(function(f){var i=d.getSelectionContainerElem();if(i){var u=i.getNodeTop(c),l=u.length&&u.prev().length?u.prev():null;l&&l.attr("data-we-video-p")&&d.getCursorPos()===0&&f.keyCode===8&&l.remove()}})}}n.default=r},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(26));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=t(7),g=r.__importDefault(t(3)),d=r.__importDefault(t(33)),p=r.__importDefault(t(38)),f=r.__importDefault(t(351)),i=r.__importDefault(t(364)),u=function(l){r.__extends(m,l);function m(v){var h=this,A=g.default('
      '),y=i.default(v);if(y.onlyUploadConf){var x;A=y.onlyUploadConf.$elem,(0,o.default)(x=y.onlyUploadConf.events).call(x,function(S){var T=S.type,R=S.fn||c.EMPTY_FN;A.on(T,function(C){C.stopPropagation(),R(C)})})}return h=l.call(this,A,v)||this,h.imgPanelConfig=y,f.default(v),h}return m.prototype.clickHandler=function(){this.imgPanelConfig.onlyUploadConf||this.createPanel()},m.prototype.createPanel=function(){var v=this.imgPanelConfig,h=new d.default(this,v);this.setPanel(h),h.create()},m.prototype.tryChangeActive=function(){},m}(p.default);n.default=u},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(352)),c=o.__importDefault(t(353)),g=o.__importDefault(t(354)),d=o.__importDefault(t(362)),p=o.__importDefault(t(363));function f(i){r.default(i),c.default(i),g.default(i),d.default(i),p.default(i)}n.default=f},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=t(131),c=o.__importDefault(t(97));function g(i,u){var l=i.config,m=l.pasteFilterStyle,v=l.pasteIgnoreImg,h=r.getPasteHtml(u,m,v);if(h)return!0;var A=r.getPasteText(u);return!!A}function d(i,u){for(var l,m=((l=u.clipboardData)===null||l===void 0?void 0:l.types)||[],v=0;v +
      +
      + `);return h.hide(),v.append(h),h}function i(m,v,h){var A=m.getBoundingClientRect(),y=h.getBoundingClientRect(),x=y.width.toFixed(2),S=y.height.toFixed(2);(0,o.default)(v).call(v,".w-e-img-drag-show-size").text(x+"px * "+S+"px"),p(v,(0,r.default)(x),(0,r.default)(S),y.left-A.left,y.top-A.top),v.show()}function u(m){var v=m.$textContainerElem,h,A=f(m,v);function y(T,R){T.on("click",function(C){C.stopPropagation()}),T.on("mousedown",".w-e-img-drag-rb",function(C){if(C.preventDefault(),!h)return;var E=C.clientX,D=C.clientY,P=R.getBoundingClientRect(),M=h.getBoundingClientRect(),I=M.width,N=M.height,B=M.left-P.left,F=M.top-P.top,O=I/N,H=I,L=N,U=g.default(document);function z(){U.off("mousemove",j),U.off("mouseup",K)}function j(V){V.stopPropagation(),V.preventDefault(),H=I+(V.clientX-E),L=N+(V.clientY-D),H/L!=O&&(L=H/O),H=(0,r.default)(H.toFixed(2)),L=(0,r.default)(L.toFixed(2)),(0,o.default)(T).call(T,".w-e-img-drag-show-size").text(H.toFixed(2).replace(".00","")+"px * "+L.toFixed(2).replace(".00","")+"px"),p(T,H,L,B,F)}U.on("mousemove",j);function K(){h.attr("width",H+""),h.attr("height",L+"");var V=h.getBoundingClientRect();p(T,H,L,V.left-P.left,V.top-P.top),z()}U.on("mouseup",K),U.on("mouseleave",z)})}function x(T){if(d.UA.isIE())return!1;T&&(h=T,i(v,A,h))}function S(){(0,o.default)(v).call(v,".w-e-img-drag-mask").hide()}return y(A,v),g.default(document).on("click",S),m.beforeDestroy(function(){g.default(document).off("click",S)}),{showDrag:x,hideDrag:S}}n.createShowHideFn=u;function l(m){var v=u(m),h=v.showDrag,A=v.hideDrag;m.txt.eventHooks.imgClickEvents.push(h),m.txt.eventHooks.textScrollEvents.push(A),m.txt.eventHooks.keyupEvents.push(A),m.txt.eventHooks.toolbarClickEvents.push(A),m.txt.eventHooks.menuClickEvents.push(A),m.txt.eventHooks.changeEvents.push(A)}n.default=l},function(s,n,t){s.exports=t(356)},function(s,n,t){var e=t(357);s.exports=e},function(s,n,t){t(358);var e=t(9);s.exports=e.parseFloat},function(s,n,t){var e=t(5),a=t(359);e({global:!0,forced:parseFloat!=a},{parseFloat:a})},function(s,n,t){var e=t(8),a=t(90).trim,o=t(68),r=e.parseFloat,c=1/r(o+"-0")!==-1/0;s.exports=c?function(d){var p=a(String(d)),f=r(p);return f===0&&p.charAt(0)=="-"?-0:f}:r},function(s,n,t){var e=t(20),a=t(361);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21);n=e(!1),n.push([s.i,`.w-e-text-container { + overflow: hidden; +} +.w-e-img-drag-mask { + position: absolute; + z-index: 1; + border: 1px dashed #ccc; + box-sizing: border-box; +} +.w-e-img-drag-mask .w-e-img-drag-rb { + position: absolute; + right: -5px; + bottom: -5px; + width: 16px; + height: 16px; + border-radius: 50%; + background: #ccc; + cursor: se-resize; +} +.w-e-img-drag-mask .w-e-img-drag-show-size { + min-width: 110px; + height: 22px; + line-height: 22px; + font-size: 14px; + color: #999; + position: absolute; + left: 0; + top: 0; + background-color: #999; + color: #fff; + border-radius: 2px; + padding: 0 5px; +} +`,""]),s.exports=n},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.createShowHideFn=void 0;var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(39));function g(p){var f,i=function(v,h){return h===void 0&&(h=""),p.i18next.t(h+v)};function u(m){var v=[{$elem:r.default(""),onClick:function(A,y){return A.selection.createRangeByElem(y),A.selection.restoreSelection(),A.cmd.do("delete"),!0}},{$elem:r.default("30%"),onClick:function(A,y){return y.attr("width","30%"),y.removeAttr("height"),!0}},{$elem:r.default("50%"),onClick:function(A,y){return y.attr("width","50%"),y.removeAttr("height"),!0}},{$elem:r.default("100%"),onClick:function(A,y){return y.attr("width","100%"),y.removeAttr("height"),!0}}];v.push({$elem:r.default(""+i("\u91CD\u7F6E")+""),onClick:function(A,y){return y.removeAttr("width"),y.removeAttr("height"),!0}}),m.attr("data-href")&&v.push({$elem:r.default(""+i("\u67E5\u770B\u94FE\u63A5")+""),onClick:function(A,y){var x=y.attr("data-href");return x&&(x=decodeURIComponent(x),window.open(x,"_target")),!0}}),f=new c.default(p,m,v),f.create()}function l(){f&&(f.remove(),f=null)}return{showImgTooltip:u,hideImgTooltip:l}}n.createShowHideFn=g;function d(p){var f=g(p),i=f.showImgTooltip,u=f.hideImgTooltip;p.txt.eventHooks.imgClickEvents.push(i),p.txt.eventHooks.clickEvents.push(u),p.txt.eventHooks.keyupEvents.push(u),p.txt.eventHooks.toolbarClickEvents.push(u),p.txt.eventHooks.menuClickEvents.push(u),p.txt.eventHooks.textScrollEvents.push(u),p.txt.eventHooks.imgDragBarMouseDownEvents.push(u),p.txt.eventHooks.changeEvents.push(u)}n.default=d},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});function o(r){var c=r.txt,g=r.selection,d=c.eventHooks.keydownEvents;d.push(function(p){var f=g.getSelectionContainerElem(),i=g.getRange();if(!(!i||!f||p.keyCode!==8||!g.isSelectionEmpty())){var u=i.startContainer,l=i.startOffset,m=null;if(l===0)for(;u!==f.elems[0]&&f.elems[0].contains(u)&&u.parentNode&&!m;){if(u.previousSibling){m=u.previousSibling;break}u=u.parentNode}else u.nodeType!==3&&(m=u.childNodes[l-1]);if(!!m){for(var v=m;v.childNodes.length;)v=v.childNodes[v.childNodes.length-1];v instanceof HTMLElement&&v.tagName==="IMG"&&(v.remove(),p.preventDefault())}}})}n.default=o},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(26)),r=e(t(17));(0,a.default)(n,"__esModule",{value:!0});var c=t(2),g=c.__importDefault(t(3)),d=t(6),p=c.__importDefault(t(97));function f(i){var u,l=i.config,m=new p.default(i),v=d.getRandom("up-trigger-id"),h=d.getRandom("up-file-id"),A=d.getRandom("input-link-url"),y=d.getRandom("input-link-url-alt"),x=d.getRandom("input-link-url-href"),S=d.getRandom("btn-link"),T="menus.panelMenus.image.",R=function(O,H){return H===void 0&&(H=T),i.i18next.t(H+O)};function C(F,O,H){var L=l.linkImgCheck(F);return L===!0?!0:(typeof L=="string"&&l.customAlert(L,"error"),!1)}var E=l.uploadImgMaxLength===1?"":'multiple="multiple"',D=(0,o.default)(u=l.uploadImgAccept).call(u,function(F){return"image/"+F}).join(","),P=function(O,H,L){return'
      +
      + +
      +
      + +
      +
      `},M=[{selector:"#"+v,type:"click",fn:function(){var O=l.uploadImgFromMedia;if(O&&typeof O=="function")return O(),!0;var H=g.default("#"+h),L=H.elems[0];if(L)L.click();else return!0}},{selector:"#"+h,type:"change",fn:function(){var O=g.default("#"+h),H=O.elems[0];if(!H)return!0;var L=H.files;return L!=null&&L.length&&m.uploadImg(L),H&&(H.value=""),!0}}],I=[`'];l.showLinkImgAlt&&I.push(` + '),l.showLinkImgHref&&I.push(` + ');var N=[{title:R("\u4E0A\u4F20\u56FE\u7247"),tpl:P("w-e-up-img-container","w-e-icon-upload2",""),events:M},{title:R("\u7F51\u7EDC\u56FE\u7247"),tpl:`
      + `+I.join("")+` +
      + +
      +
      `,events:[{selector:"#"+S,type:"click",fn:function(){var O,H=g.default("#"+A),L=(0,r.default)(O=H.val()).call(O);if(!!L){var U;if(l.showLinkImgAlt){var z;U=(0,r.default)(z=g.default("#"+y).val()).call(z)}var j;if(l.showLinkImgHref){var K;j=(0,r.default)(K=g.default("#"+x).val()).call(K)}if(!!C(L))return m.insertImg(L,U,j),!0}},bindEnter:!0}]}],B={width:300,height:0,tabs:[],onlyUploadConf:{$elem:g.default(P("w-e-menu","w-e-icon-image","\u56FE\u7247")),events:M}};return window.FileReader&&(l.uploadImgShowBase64||l.uploadImgServer||l.customUploadImg||l.uploadImgFromMedia)&&B.tabs.push(N[0]),l.showLinkImg&&(B.tabs.push(N[1]),B.onlyUploadConf=void 0),B}n.default=f},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=r.__importDefault(t(24)),d=r.__importDefault(t(366)),p=function(f){r.__extends(i,f);function i(u){var l=this,m=c.default(`
      + +
      `),v={width:130,title:"\u8BBE\u7F6E\u7F29\u8FDB",type:"list",list:[{$elem:c.default(`

      + + `+u.i18next.t("menus.dropListMenu.indent.\u589E\u52A0\u7F29\u8FDB")+` +

      `),value:"increase"},{$elem:c.default(`

      + + `+u.i18next.t("menus.dropListMenu.indent.\u51CF\u5C11\u7F29\u8FDB")+` +

      `),value:"decrease"}],clickHandler:function(A){l.command(A)}};return l=f.call(this,m,u,v)||this,l}return i.prototype.command=function(u){var l=this.editor,m=l.selection.getSelectionContainerElem();if(m&&l.$textElem.equal(m)){var v=l.selection.getSelectionRangeTopNodes();v.length>0&&(0,o.default)(v).call(v,function(h){d.default(c.default(h),u,l)})}else m&&m.length>0&&(0,o.default)(m).call(m,function(h){d.default(c.default(h),u,l)});l.selection.restoreSelection(),this.tryChangeActive()},i.prototype.tryChangeActive=function(){var u=this.editor,l=u.selection.getSelectionStartElem(),m=c.default(l).getNodeTop(u);m.length<=0||(m.elems[0].style.paddingLeft!=""?this.active():this.unActive())},i}(g.default);n.default=p},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(45)),r=e(t(17));(0,a.default)(n,"__esModule",{value:!0});var c=t(2),g=c.__importDefault(t(367)),d=c.__importDefault(t(368)),p=/^(\d+)(\w+)$/,f=/^(\d+)%$/;function i(l){var m=l.config.indentation;if(typeof m=="string"){if(p.test(m)){var v,h=(0,o.default)(v=(0,r.default)(m).call(m).match(p)).call(v,1,3),A=h[0],y=h[1];return{value:Number(A),unit:y}}else if(f.test(m))return{value:Number((0,r.default)(m).call(m).match(f)[1]),unit:"%"}}else if(m.value!==void 0&&m.unit)return m;return{value:2,unit:"em"}}function u(l,m,v){var h=l.getNodeTop(v),A=/^(P|H[0-9]*)$/;A.test(h.getNodeName())&&(m==="increase"?g.default(h,i(v)):m==="decrease"&&d.default(h,i(v)))}n.default=u},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(45));(0,a.default)(n,"__esModule",{value:!0});function r(c,g){var d=c.elems[0];if(d.style.paddingLeft==="")c.css("padding-left",g.value+g.unit);else{var p=d.style.paddingLeft,f=(0,o.default)(p).call(p,0,p.length-g.unit.length),i=Number(f)+g.value;c.css("padding-left",""+i+g.unit)}}n.default=r},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(45));(0,a.default)(n,"__esModule",{value:!0});function r(c,g){var d=c.elems[0];if(d.style.paddingLeft!==""){var p=d.style.paddingLeft,f=(0,o.default)(p).call(p,0,p.length-g.unit.length),i=Number(f)-g.value;i>0?c.css("padding-left",""+i+g.unit):c.css("padding-left","")}}n.default=r},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(38)),g=o.__importDefault(t(33)),d=o.__importDefault(t(370)),p=function(f){o.__extends(i,f);function i(u){var l=this,m=r.default(`

      + +
      `);return l=f.call(this,m,u)||this,l}return i.prototype.createPanel=function(){var u=d.default(this.editor),l=new g.default(this,u);l.create()},i.prototype.clickHandler=function(){this.createPanel()},i.prototype.tryChangeActive=function(){},i}(c.default);n.default=p},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(26)),r=e(t(70)),c=e(t(17));(0,a.default)(n,"__esModule",{value:!0});var g=t(2),d=g.__importDefault(t(3));function p(f){var i=f.config.emotions;function u(v){var h=[];if(v.type=="image"){var A;h=(0,o.default)(A=v.content).call(A,function(x){return typeof x=="string"?"":' + ['+x.alt+`] + `}),h=(0,r.default)(h).call(h,function(x){return x!==""})}else{var y;h=(0,o.default)(y=v.content).call(y,function(x){return''+x+""})}return h.join("").replace(/ /g,"")}var l=(0,o.default)(i).call(i,function(v){return{title:f.i18next.t("menus.panelMenus.emoticon."+v.title),tpl:"
      "+u(v)+"
      ",events:[{selector:".eleImg",type:"click",fn:function(A){var y=d.default(A.target),x=y.getNodeName(),S;if(x==="IMG"){var T;S=(0,c.default)(T=y.parent().html()).call(T)}else S=""+y.html()+"";return f.cmd.do("insertHTML",S),!0}}]}}),m={width:300,height:230,tabs:l};return m}n.default=p},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.createListHandle=n.ClassType=void 0;var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(372)),g=o.__importDefault(t(374)),d=o.__importDefault(t(375)),p=o.__importDefault(t(376)),f=o.__importDefault(t(377)),i;(function(v){v.Wrap="WrapListHandle",v.Join="JoinListHandle",v.StartJoin="StartJoinListHandle",v.EndJoin="EndJoinListHandle",v.Other="OtherListHandle"})(i=n.ClassType||(n.ClassType={}));var u={WrapListHandle:c.default,JoinListHandle:g.default,StartJoinListHandle:d.default,EndJoinListHandle:p.default,OtherListHandle:f.default};function l(v,h,A){if(v===i.Other&&A===void 0)throw new Error("other \u7C7B\u9700\u8981\u4F20\u5165 range");return v!==i.Other?new u[v](h):new u[v](h,A)}n.createListHandle=l;var m=function(){function v(h){this.handle=h,this.handle.exec()}return v.prototype.getSelectionRangeElem=function(){return r.default(this.handle.selectionRangeElem.get())},v}();n.default=m},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=t(58),d=t(47),p=function(f){r.__extends(i,f);function i(u){return f.call(this,u)||this}return i.prototype.exec=function(){var u=this.options,l=u.listType,m=u.listTarget,v=u.$selectionElem,h=u.$startElem,A=u.$endElem,y,x=[],S=v==null?void 0:v.getNodeName(),T=h.prior,R=A.prior;if(!h.prior&&!A.prior||!(T!=null&&T.prev().length)&&!(R!=null&&R.next().length)){var C;(0,o.default)(C=v==null?void 0:v.children()).call(C,function(B){x.push(c.default(B))}),S===l?y=d.createElementFragment(x,d.createDocumentFragment(),"p"):(y=d.createElement(m),(0,o.default)(x).call(x,function(B){y.appendChild(B.elems[0])})),this.selectionRangeElem.set(y),d.insertBefore(v,y,v.elems[0]),v.remove()}else{for(var E=T;E.length;)x.push(E),R!=null&&R.equal(E)?E=c.default(void 0):E=E.next();var D=T.prev(),P=R.next();if(S===l?y=d.createElementFragment(x,d.createDocumentFragment(),"p"):(y=d.createElement(m),(0,o.default)(x).call(x,function(B){y.append(B.elems[0])})),D.length&&P.length){for(var M=[];P.length;)M.push(P),P=P.next();var I=d.createElement(S);(0,o.default)(M).call(M,function(B){I.append(B.elems[0])}),c.default(I).insertAfter(v),this.selectionRangeElem.set(y);var N=v.next();N.length?d.insertBefore(v,y,N.elems[0]):v.parent().elems[0].append(y)}else if(!D.length)this.selectionRangeElem.set(y),d.insertBefore(v,y,v.elems[0]);else{this.selectionRangeElem.set(y);var N=v.next();N.length?d.insertBefore(v,y,N.elems[0]):v.parent().elems[0].append(y)}}},i}(g.ListHandle);n.default=p},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=function(){function c(){this._element=null}return c.prototype.set=function(g){if(g instanceof DocumentFragment){var d,p=[];(0,o.default)(d=g.childNodes).call(d,function(f){p.push(f)}),g=p}this._element=g},c.prototype.get=function(){return this._element},c.prototype.clear=function(){this._element=null},c}();n.default=r},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=t(58),d=t(47),p=function(f){r.__extends(i,f);function i(u){return f.call(this,u)||this}return i.prototype.exec=function(){var u,l,m,v,h,A,y,x=this.options,S=x.editor,T=x.listType,R=x.listTarget,C=x.$startElem,E=x.$endElem,D,P=S.selection.getSelectionRangeTopNodes(),M=C==null?void 0:C.getNodeName(),I=E==null?void 0:E.getNodeName();if(M===I)if(P.length>2)if(P.shift(),P.pop(),D=d.createElementFragment(d.filterSelectionNodes(P),d.createDocumentFragment()),M===T)(u=E.children())===null||u===void 0||(0,o.default)(u).call(u,function(V){D.append(V)}),E.remove(),this.selectionRangeElem.set(D),C.elems[0].append(D);else{for(var N=document.createDocumentFragment(),B=document.createDocumentFragment(),F=d.getStartPoint(C);F.length;){var O=F.elems[0];F=F.next(),N.append(O)}for(var H=d.getEndPoint(E),L=[];H.length;)L.unshift(H.elems[0]),H=H.prev();(0,o.default)(L).call(L,function(V){B.append(V)});var U=d.createElement(R);U.append(N),U.append(D),U.append(B),D=U,this.selectionRangeElem.set(D),c.default(U).insertAfter(C),!(!((l=C.children())===null||l===void 0)&&l.length)&&C.remove(),!(!((m=E.children())===null||m===void 0)&&m.length)&&E.remove()}else{P.length=0;for(var F=d.getStartPoint(C);F.length;)P.push(F),F=F.next();for(var H=d.getEndPoint(E),L=[];H.length;)L.unshift(H),H=H.prev();P.push.apply(P,L),M===T?(D=d.createElementFragment(P,d.createDocumentFragment(),"p"),this.selectionRangeElem.set(D),d.insertBefore(C,D,E.elems[0])):(D=d.createElement(R),(0,o.default)(P).call(P,function(G){D.append(G.elems[0])}),this.selectionRangeElem.set(D),c.default(D).insertAfter(C)),!(!((v=C.children())===null||v===void 0)&&v.length)&&E.remove(),!(!((h=E.children())===null||h===void 0)&&h.length)&&E.remove()}else{for(var z=[],H=d.getEndPoint(E);H.length;)z.unshift(H),H=H.prev();for(var j=[],F=d.getStartPoint(C);F.length;)j.push(F),F=F.next();if(D=d.createDocumentFragment(),P.shift(),P.pop(),(0,o.default)(j).call(j,function(w){return D.append(w.elems[0])}),D=d.createElementFragment(d.filterSelectionNodes(P),D),(0,o.default)(z).call(z,function(w){return D.append(w.elems[0])}),this.selectionRangeElem.set(D),M===T)C.elems[0].append(D),!(!((A=E.children())===null||A===void 0)&&A.length)&&E.remove();else if(!((y=E.children())===null||y===void 0)&&y.length){var K=E.children();d.insertBefore(K,D,K.elems[0])}else E.elems[0].append(D)}},i}(g.ListHandle);n.default=p},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=t(58),d=t(47),p=function(f){r.__extends(i,f);function i(u){return f.call(this,u)||this}return i.prototype.exec=function(){var u,l=this.options,m=l.editor,v=l.listType,h=l.listTarget,A=l.$startElem,y,x=m.selection.getSelectionRangeTopNodes(),S=A==null?void 0:A.getNodeName();x.shift();for(var T=[],R=d.getStartPoint(A);R.length;)T.push(R),R=R.next();S===v?(y=d.createDocumentFragment(),(0,o.default)(T).call(T,function(C){return y.append(C.elems[0])}),y=d.createElementFragment(d.filterSelectionNodes(x),y),this.selectionRangeElem.set(y),A.elems[0].append(y)):(y=d.createElement(h),(0,o.default)(T).call(T,function(C){return y.append(C.elems[0])}),y=d.createElementFragment(d.filterSelectionNodes(x),y),this.selectionRangeElem.set(y),c.default(y).insertAfter(A),!(!((u=A.children())===null||u===void 0)&&u.length)&&A.remove())},i}(g.ListHandle);n.default=p},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=t(58),d=t(47),p=function(f){r.__extends(i,f);function i(u){return f.call(this,u)||this}return i.prototype.exec=function(){var u,l,m=this.options,v=m.editor,h=m.listType,A=m.listTarget,y=m.$endElem,x,S=v.selection.getSelectionRangeTopNodes(),T=y==null?void 0:y.getNodeName();S.pop();for(var R=[],C=d.getEndPoint(y);C.length;)R.unshift(C),C=C.prev();if(T===h)if(x=d.createElementFragment(d.filterSelectionNodes(S),d.createDocumentFragment()),(0,o.default)(R).call(R,function(P){return x.append(P.elems[0])}),this.selectionRangeElem.set(x),!((u=y.children())===null||u===void 0)&&u.length){var E=y.children();d.insertBefore(E,x,E.elems[0])}else y.elems[0].append(x);else{var D=d.filterSelectionNodes(S);D.push.apply(D,R),x=d.createElementFragment(D,d.createElement(A)),this.selectionRangeElem.set(x),c.default(x).insertBefore(y),!(!((l=y.children())===null||l===void 0)&&l.length)&&y.remove()}},i}(g.ListHandle);n.default=p},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=t(58),c=t(47),g=function(d){o.__extends(p,d);function p(f,i){var u=d.call(this,f)||this;return u.range=i,u}return p.prototype.exec=function(){var f=this.options,i=f.editor,u=f.listTarget,l=i.selection.getSelectionRangeTopNodes(),m=c.createElementFragment(c.filterSelectionNodes(l),c.createElement(u));this.selectionRangeElem.set(m),this.range.insertNode(m)},p}(r.ListHandle);n.default=g},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4)),r=e(t(27));(0,a.default)(n,"__esModule",{value:!0});var c=t(2),g=c.__importDefault(t(24)),d=c.__importDefault(t(3)),p=c.__importDefault(t(379)),f=function(i){c.__extends(u,i);function u(l){var m=this,v=d.default(`
      + +
      `),h=new p.default(l,l.config.lineHeights),A={width:100,title:"\u8BBE\u7F6E\u884C\u9AD8",type:"list",list:h.getItemList(),clickHandler:function(x){l.selection.saveRange(),m.command(x)}};return m=i.call(this,v,l,A)||this,m}return u.prototype.command=function(l){var m=this.editor;m.selection.restoreSelection();var v=d.default(m.selection.getSelectionContainerElem());if(!!v.elems.length){if(v&&m.$textElem.equal(v)){for(var h=!1,A=d.default(m.selection.getSelectionStartElem()).elems[0],y=d.default(m.selection.getSelectionEndElem()).elems[0],x=this.getDom(A),S=this.getDom(y),T=v.elems[0].children,R=0;R"+p.i18next.t("\u9ED8\u8BA4")+""),value:""}],(0,o.default)(f).call(f,function(u){i.itemList.push({$elem:c.default(""+u+""),value:u})})}return d.prototype.getItemList=function(){return this.itemList},d}();n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(23)),g=function(d){o.__extends(p,d);function p(f){var i=this,u=r.default(`
      + +
      `);return i=d.call(this,u,f)||this,i}return p.prototype.clickHandler=function(){var f=this.editor;f.history.revoke();var i=f.$textElem.children();if(!!(i!=null&&i.length)){var u=i.last();f.selection.createRangeByElem(u,!1,!0),f.selection.restoreSelection()}},p.prototype.tryChangeActive=function(){this.editor.isCompatibleMode||(this.editor.history.size[0]?this.active():this.unActive())},p}(c.default);n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(23)),g=function(d){o.__extends(p,d);function p(f){var i=this,u=r.default(`
      + +
      `);return i=d.call(this,u,f)||this,i}return p.prototype.clickHandler=function(){var f=this.editor;f.history.restore();var i=f.$textElem.children();if(!!(i!=null&&i.length)){var u=i.last();f.selection.createRangeByElem(u,!1,!0),f.selection.restoreSelection()}},p.prototype.tryChangeActive=function(){this.editor.isCompatibleMode||(this.editor.history.size[1]?this.active():this.unActive())},p}(c.default);n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(38)),c=o.__importDefault(t(3)),g=o.__importDefault(t(383)),d=o.__importDefault(t(33)),p=o.__importDefault(t(392)),f=function(i){o.__extends(u,i);function u(l){var m=this,v=c.default('
      ');return m=i.call(this,v,l)||this,p.default(l),m}return u.prototype.clickHandler=function(){this.createPanel()},u.prototype.createPanel=function(){var l=g.default(this.editor),m=new d.default(this,l);m.create()},u.prototype.tryChangeActive=function(){},u}(r.default);n.default=f},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(384));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=t(6),g=r.__importDefault(t(3));t(389);var d=r.__importDefault(t(391));function p(i){return i>0&&(0,o.default)(i)}function f(i){var u=new d.default(i),l=c.getRandom("w-col-id"),m=c.getRandom("w-row-id"),v=c.getRandom("btn-link"),h="menus.panelMenus.table.",A=function(T){return i.i18next.t(T)},y=[{title:A(h+"\u63D2\u5165\u8868\u683C"),tpl:`
      +
      + `+A("\u521B\u5EFA")+` + + `+A(h+"\u884C")+` + + `+(A(h+"\u5217")+A(h+"\u7684")+A(h+"\u8868\u683C"))+` +
      +
      + +
      +
      `,events:[{selector:"#"+v,type:"click",fn:function(){var T=Number(g.default("#"+l).val()),R=Number(g.default("#"+m).val());return p(R)&&p(T)?(u.createAction(R,T),!0):(i.config.customAlert("\u8868\u683C\u884C\u5217\u8BF7\u8F93\u5165\u6B63\u6574\u6570","warning"),!1)},bindEnter:!0}]}],x={width:330,height:0,tabs:[]};return x.tabs.push(y[0]),x}n.default=f},function(s,n,t){s.exports=t(385)},function(s,n,t){var e=t(386);s.exports=e},function(s,n,t){t(387);var e=t(9);s.exports=e.Number.isInteger},function(s,n,t){var e=t(5),a=t(388);e({target:"Number",stat:!0},{isInteger:a})},function(s,n,t){var e=t(13),a=Math.floor;s.exports=function(r){return!e(r)&&isFinite(r)&&a(r)===r}},function(s,n,t){var e=t(20),a=t(390);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21);n=e(!1),n.push([s.i,`.w-e-table { + display: flex; +} +.w-e-table .w-e-table-input { + width: 40px; + text-align: center!important; + margin: 0 5px; +} +`,""]),s.exports=n},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=t(7),c=o.__importDefault(t(3)),g=function(){function d(p){this.editor=p}return d.prototype.createAction=function(p,f){var i=this.editor,u=c.default(i.selection.getSelectionContainerElem()),l=c.default(u.elems[0]).parentUntilEditor("UL",i),m=c.default(u.elems[0]).parentUntilEditor("OL",i);if(!(l||m)){var v=this.createTableHtml(p,f);i.cmd.do("insertHTML",v)}},d.prototype.createTableHtml=function(p,f){for(var i="",u="",l=0;l":u=u+"";i=i+""+u+""}var v=''+i+("
      "+r.EMPTY_P);return v},d}();n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(393)),c=t(400);function g(d){r.default(d),c.bindEventKeyboardEvent(d),c.bindClickEvent(d)}n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(39)),g=o.__importDefault(t(394)),d=o.__importDefault(t(399)),p=t(7);function f(m){var v;function h(y){var x=new d.default(m),S="menus.panelMenus.table.",T=function(E,D){return D===void 0&&(D=S),m.i18next.t(D+E)},R=[{$elem:r.default(""+T("\u5220\u9664\u8868\u683C")+""),onClick:function(E,D){return E.selection.createRangeByElem(D),E.selection.restoreSelection(),E.cmd.do("insertHTML",p.EMPTY_P),!0}},{$elem:r.default(""+T("\u6DFB\u52A0\u884C")+""),onClick:function(E,D){var P=i(E);if(P)return!0;var M=r.default(E.selection.getSelectionStartElem()),I=x.getRowNode(M.elems[0]);if(!I)return!0;var N=Number(x.getCurrentRowIndex(D.elems[0],I)),B=x.getTableHtml(D.elems[0]),F=x.getTableHtml(g.default.ProcessingRow(r.default(B),N).elems[0]);return F=l(D,F),E.selection.createRangeByElem(D),E.selection.restoreSelection(),E.cmd.do("insertHTML",F),!0}},{$elem:r.default(""+T("\u5220\u9664\u884C")+""),onClick:function(E,D){var P=i(E);if(P)return!0;var M=r.default(E.selection.getSelectionStartElem()),I=x.getRowNode(M.elems[0]);if(!I)return!0;var N=Number(x.getCurrentRowIndex(D.elems[0],I)),B=x.getTableHtml(D.elems[0]),F=g.default.DeleteRow(r.default(B),N).elems[0].children[0].children.length,O="";return E.selection.createRangeByElem(D),E.selection.restoreSelection(),F===0?O=p.EMPTY_P:O=x.getTableHtml(g.default.DeleteRow(r.default(B),N).elems[0]),O=l(D,O),E.cmd.do("insertHTML",O),!0}},{$elem:r.default(""+T("\u6DFB\u52A0\u5217")+""),onClick:function(E,D){var P=i(E);if(P)return!0;var M=r.default(E.selection.getSelectionStartElem()),I=x.getCurrentColIndex(M.elems[0]),N=x.getTableHtml(D.elems[0]),B=x.getTableHtml(g.default.ProcessingCol(r.default(N),I).elems[0]);return B=l(D,B),E.selection.createRangeByElem(D),E.selection.restoreSelection(),E.cmd.do("insertHTML",B),!0}},{$elem:r.default(""+T("\u5220\u9664\u5217")+""),onClick:function(E,D){var P=i(E);if(P)return!0;var M=r.default(E.selection.getSelectionStartElem()),I=x.getCurrentColIndex(M.elems[0]),N=x.getTableHtml(D.elems[0]),B=g.default.DeleteCol(r.default(N),I),F=B.elems[0].children[0].children[0].children.length,O="";return E.selection.createRangeByElem(D),E.selection.restoreSelection(),F===0?O=p.EMPTY_P:O=x.getTableHtml(B.elems[0]),O=l(D,O),E.cmd.do("insertHTML",O),!0}},{$elem:r.default(""+T("\u8BBE\u7F6E\u8868\u5934")+""),onClick:function(E,D){var P=i(E);if(P)return!0;var M=r.default(E.selection.getSelectionStartElem()),I=x.getRowNode(M.elems[0]);if(!I)return!0;var N=Number(x.getCurrentRowIndex(D.elems[0],I));N!==0&&(N=0);var B=x.getTableHtml(D.elems[0]),F=x.getTableHtml(g.default.setTheHeader(r.default(B),N,"th").elems[0]);return F=l(D,F),E.selection.createRangeByElem(D),E.selection.restoreSelection(),E.cmd.do("insertHTML",F),!0}},{$elem:r.default(""+T("\u53D6\u6D88\u8868\u5934")+""),onClick:function(E,D){var P=r.default(E.selection.getSelectionStartElem()),M=x.getRowNode(P.elems[0]);if(!M)return!0;var I=Number(x.getCurrentRowIndex(D.elems[0],M));I!==0&&(I=0);var N=x.getTableHtml(D.elems[0]),B=x.getTableHtml(g.default.setTheHeader(r.default(N),I,"td").elems[0]);return B=l(D,B),E.selection.createRangeByElem(D),E.selection.restoreSelection(),E.cmd.do("insertHTML",B),!0}}];v=new c.default(m,y,R),v.create()}function A(){v&&(v.remove(),v=null)}return{showTableTooltip:h,hideTableTooltip:A}}function i(m){var v=m.selection.getSelectionStartElem(),h=m.selection.getSelectionEndElem();return(v==null?void 0:v.elems[0])!==(h==null?void 0:h.elems[0])}function u(m){var v=f(m),h=v.showTableTooltip,A=v.hideTableTooltip;m.txt.eventHooks.tableClickEvents.push(h),m.txt.eventHooks.clickEvents.push(A),m.txt.eventHooks.keyupEvents.push(A),m.txt.eventHooks.toolbarClickEvents.push(A),m.txt.eventHooks.menuClickEvents.push(A),m.txt.eventHooks.textScrollEvents.push(A)}n.default=u;function l(m,v){var h=m.elems[0].nextSibling;return(!h||h.innerHTML==="
      ")&&(v+=""+p.EMPTY_P),v}},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(45)),r=e(t(91)),c=e(t(4)),g=e(t(138));(0,a.default)(n,"__esModule",{value:!0});var d=t(2),p=d.__importDefault(t(3));function f(A,y){for(var x=h(A),S=(0,o.default)(Array.prototype).apply(x.children),T=S[0].children.length,R=document.createElement("tr"),C=0;C1?arguments[1]:void 0,v=m!==void 0,h=d(i),A=0,y,x,S,T,R,C;if(v&&(m=e(m,l>2?arguments[2]:void 0,2)),h!=null&&!(u==Array&&r(h)))for(T=h.call(i),R=T.next,x=new u;!(S=R.call(T)).done;A++)C=v?o(T,m,[S.value,A],!0):S.value,g(x,A,C);else for(y=c(i.length),x=new u(y);y>A;A++)C=v?m(i[A],A):i[A],g(x,A,C);return x.length=A,x}},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4)),r=e(t(138));(0,a.default)(n,"__esModule",{value:!0});var c=t(2),g=c.__importDefault(t(3)),d=function(){function p(f){this.editor=f}return p.prototype.getRowNode=function(f){var i,u=g.default(f).elems[0];return u.parentNode&&(u=(i=g.default(u).parentUntil("TR",u))===null||i===void 0?void 0:i.elems[0]),u},p.prototype.getCurrentRowIndex=function(f,i){var u,l=0,m=f.children[0];return m.nodeName==="COLGROUP"&&(m=f.children[f.children.length-1]),(0,o.default)(u=(0,r.default)(m.children)).call(u,function(v,h){v===i&&(l=h)}),l},p.prototype.getCurrentColIndex=function(f){var i,u,l=0,m=g.default(f).getNodeName()==="TD"||g.default(f).getNodeName()==="TH"?f:(u=g.default(f).parentUntil("TD",f))===null||u===void 0?void 0:u.elems[0],v=g.default(m).parent();return(0,o.default)(i=(0,r.default)(v.elems[0].children)).call(i,function(h,A){h===m&&(l=A)}),l},p.prototype.getTableHtml=function(f){var i=''+g.default(f).html()+"
      ";return i},p}();n.default=d},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.bindEventKeyboardEvent=n.bindClickEvent=void 0;var o=t(2),r=o.__importDefault(t(3));function c(p){if(!p.length)return!1;var f=p.elems[0];return f.nodeName==="P"&&f.innerHTML==="
      "}function g(p){function f(i,u){if(u.detail>=3){var l=window.getSelection();if(l){var m=l.focusNode,v=l.anchorNode,h=r.default(v==null?void 0:v.parentElement);if(!i.isContain(r.default(m))){var A=h.elems[0].tagName==="TD"?h:h.parentUntilEditor("td",p);if(A){var y=p.selection.getRange();y==null||y.setEnd(A.elems[0],A.elems[0].childNodes.length),p.selection.restoreSelection()}}}}}p.txt.eventHooks.tableClickEvents.push(f)}n.bindClickEvent=g;function d(p){var f=p.txt,i=p.selection,u=f.eventHooks.keydownEvents;u.push(function(l){p.selection.saveRange();var m=i.getSelectionContainerElem();if(m){var v=m.getNodeTop(p),h=v.length&&v.prev().length?v.prev():null;if(h&&h.getNodeName()==="TABLE"&&i.isSelectionEmpty()&&i.getCursorPos()===0&&l.keyCode===8){var A=v.next(),y=!!A.length;y&&c(v)&&(v.remove(),p.selection.setRangeToElem(A.elems[0])),l.preventDefault()}}})}n.bindEventKeyboardEvent=d},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(26));(0,a.default)(n,"__esModule",{value:!0}),n.formatCodeHtml=void 0;var r=t(2),c=r.__importDefault(t(38)),g=r.__importDefault(t(3)),d=t(6),p=r.__importDefault(t(402)),f=r.__importDefault(t(139)),i=r.__importDefault(t(33)),u=r.__importDefault(t(403));function l(v,h){if(!h)return h;return h=y(h),h=A(h),h=d.replaceSpecialSymbol(h),h;function A(x){var S=x.match(//g);return S===null||(0,o.default)(S).call(S,function(T){x=x.replace(T,T.replace(/<\/code>/g,` +`).replace(/
      /g,""))}),x}function y(x){var S,T=x.match(//gm);if(!T||!T.length)return x;for(var R=(0,o.default)(S=d.deepClone(T)).call(S,function(E){return E=E.replace(/]+>/,""),E.replace(/<\/span>/,"")}),C=0;C');return y=v.call(this,x,A)||this,u.default(A),y}return h.prototype.insertLineCode=function(A){var y=this.editor,x=g.default(""+A+"");y.cmd.do("insertElem",x),y.selection.createRangeByElem(x,!1),y.selection.restoreSelection()},h.prototype.clickHandler=function(){var A=this.editor,y=A.selection.getSelectionText();this.isActive||(A.selection.isSelectionEmpty()?this.createPanel("",""):this.insertLineCode(y))},h.prototype.createPanel=function(A,y){var x=p.default(this.editor,A,y),S=new i.default(this,x);S.create()},h.prototype.tryChangeActive=function(){var A=this.editor;f.default(A)?this.active():this.unActive()},h}(c.default);n.default=m},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(26));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=t(6),g=r.__importDefault(t(3)),d=r.__importDefault(t(139)),p=t(7);function f(i,u,l){var m,v=c.getRandom("input-iframe"),h=c.getRandom("select"),A=c.getRandom("btn-ok");function y(R,C){var E,D=d.default(i);D&&x();var P=(E=i.selection.getSelectionStartElem())===null||E===void 0?void 0:E.elems[0].innerHTML;P&&i.cmd.do("insertHTML",p.EMPTY_P);var M=C.replace(//g,">");i.highlight&&(M=i.highlight.highlightAuto(M).value),i.cmd.do("insertHTML",'
      '+M+"
      ");var I=i.selection.getSelectionStartElem(),N=I==null?void 0:I.getNodeTop(i);(N==null?void 0:N.getNextSibling().elems.length)===0&&g.default(p.EMPTY_P).insertAfter(N)}function x(){if(!!d.default(i)){var R=i.selection.getSelectionStartElem(),C=R==null?void 0:R.getNodeTop(i);!C||(i.selection.createRangeByElem(C),i.selection.restoreSelection())}}var S=function(C){return i.i18next.t(C)},T={width:500,height:0,tabs:[{title:S("menus.panelMenus.code.\u63D2\u5165\u4EE3\u7801"),tpl:`
      + + +
      + +
      +
      `,events:[{selector:"#"+A,type:"click",fn:function(){var C=document.getElementById(v),E=g.default("#"+h),D=E.val(),P=C.value;if(!!P)return d.default(i)?!1:(y(D,P),!0)}}]}]};return T}n.default=f},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(404)),c=o.__importDefault(t(405));function g(d){r.default(d),c.default(d)}n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.createShowHideFn=void 0;var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(39));function g(p){var f;function i(l){var m="menus.panelMenus.code.",v=function(y,x){return x===void 0&&(x=m),p.i18next.t(x+y)},h=[{$elem:r.default(""+v("\u5220\u9664\u4EE3\u7801")+""),onClick:function(y,x){return x.remove(),!0}}];f=new c.default(p,l,h),f.create()}function u(){f&&(f.remove(),f=null)}return{showCodeTooltip:i,hideCodeTooltip:u}}n.createShowHideFn=g;function d(p){var f=g(p),i=f.showCodeTooltip,u=f.hideCodeTooltip;p.txt.eventHooks.codeClickEvents.push(i),p.txt.eventHooks.clickEvents.push(u),p.txt.eventHooks.toolbarClickEvents.push(u),p.txt.eventHooks.menuClickEvents.push(u),p.txt.eventHooks.textScrollEvents.push(u)}n.default=d},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=t(7),c=o.__importDefault(t(3));function g(d){var p=d.$textElem,f=d.selection,i=d.txt,u=i.eventHooks.keydownEvents;u.push(function(l){var m;if(l.keyCode===40){var v=f.getSelectionContainerElem(),h=(m=p.children())===null||m===void 0?void 0:m.last();if((v==null?void 0:v.elems[0].tagName)==="XMP"&&(h==null?void 0:h.elems[0].tagName)==="PRE"){var A=c.default(r.EMPTY_P);p.append(A)}}}),u.push(function(l){d.selection.saveRange();var m=f.getSelectionContainerElem();if(m){var v=m.getNodeTop(d),h=v==null?void 0:v.prev(),A=v==null?void 0:v.getNextSibling();if(h.length&&(h==null?void 0:h.getNodeName())==="PRE"&&A.length===0&&f.getCursorPos()===0&&l.keyCode===8){var y=c.default(r.EMPTY_P);p.append(y)}}})}n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(23)),c=o.__importDefault(t(3)),g=o.__importDefault(t(407)),d=t(6),p=t(7),f=function(i){o.__extends(u,i);function u(l){var m=this,v=c.default('
      ');return m=i.call(this,v,l)||this,g.default(l),m}return u.prototype.clickHandler=function(){var l=this.editor,m=l.selection.getRange(),v=l.selection.getSelectionContainerElem();if(!!(v!=null&&v.length)){var h=c.default(v.elems[0]),A=h.parentUntil("TABLE",v.elems[0]),y=h.children();h.getNodeName()!=="CODE"&&(A&&c.default(A.elems[0]).getNodeName()==="TABLE"||y&&y.length!==0&&c.default(y.elems[0]).getNodeName()==="IMG"&&!(m!=null&&m.collapsed)||this.createSplitLine())}},u.prototype.createSplitLine=function(){var l="
      "+p.EMPTY_P;d.UA.isFirefox&&(l="

      "),this.editor.cmd.do("insertHTML",l)},u.prototype.tryChangeActive=function(){},u}(r.default);n.default=f},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(408));function c(g){r.default(g)}n.default=c},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(3)),c=o.__importDefault(t(39));function g(p){var f;function i(l){var m=[{$elem:r.default(""+p.i18next.t("menus.panelMenus.\u5220\u9664")+""),onClick:function(h,A){return h.selection.createRangeByElem(A),h.selection.restoreSelection(),h.cmd.do("delete"),!0}}];f=new c.default(p,l,m),f.create()}function u(){f&&(f.remove(),f=null)}return{showSplitLineTooltip:i,hideSplitLineTooltip:u}}function d(p){var f=g(p),i=f.showSplitLineTooltip,u=f.hideSplitLineTooltip;p.txt.eventHooks.splitLineEvents.push(i),p.txt.eventHooks.clickEvents.push(u),p.txt.eventHooks.keyupEvents.push(u),p.txt.eventHooks.toolbarClickEvents.push(u),p.txt.eventHooks.menuClickEvents.push(u),p.txt.eventHooks.textScrollEvents.push(u)}n.default=d},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=r.__importDefault(t(23)),d=t(98),p=r.__importDefault(t(415)),f=r.__importDefault(t(140)),i=function(u){r.__extends(l,u);function l(m){var v=this,h=c.default(`
      + +
      `);return v=u.call(this,h,m)||this,p.default(m),v}return l.prototype.clickHandler=function(){var m=this.editor;d.isAllTodo(m)?(this.cancelTodo(),this.tryChangeActive()):this.setTodo()},l.prototype.tryChangeActive=function(){d.isAllTodo(this.editor)?this.active():this.unActive()},l.prototype.setTodo=function(){var m=this.editor,v=m.selection.getSelectionRangeTopNodes();(0,o.default)(v).call(v,function(h){var A,y=h==null?void 0:h.getNodeName();if(y==="P"){var x=f.default(h),S=x.getTodo(),T=(A=S.children())===null||A===void 0?void 0:A.getNode();S.insertAfter(h),m.selection.moveCursor(T),h.remove()}}),this.tryChangeActive()},l.prototype.cancelTodo=function(){var m=this.editor,v=m.selection.getSelectionRangeTopNodes();(0,o.default)(v).call(v,function(h){var A,y,x,S=(y=(A=h.childNodes())===null||A===void 0?void 0:A.childNodes())===null||y===void 0?void 0:y.clone(!0),T=c.default("

      ");T.append(S),T.insertAfter(h),(x=T.childNodes())===null||x===void 0||x.get(0).remove(),m.selection.moveCursor(T.getNode()),h.remove()})},l}(g.default);n.default=i},function(s,n,t){s.exports=t(411)},function(s,n,t){var e=t(412);s.exports=e},function(s,n,t){var e=t(413),a=Array.prototype;s.exports=function(o){var r=o.every;return o===a||o instanceof Array&&r===a.every?e:r}},function(s,n,t){t(414);var e=t(15);s.exports=e("Array").every},function(s,n,t){var e=t(5),a=t(32).every,o=t(67),r=t(22),c=o("every"),g=r("every");e({target:"Array",proto:!0,forced:!c||!g},{every:function(p){return a(this,p,arguments.length>1?arguments[1]:void 0)}})},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3)),g=t(98),d=r.__importDefault(t(140)),p=t(98),f=t(7);function i(u){function l(A){var y,x;if(g.isAllTodo(u)){A.preventDefault();var S=u.selection,T=S.getSelectionRangeTopNodes()[0],R=(y=T.childNodes())===null||y===void 0?void 0:y.get(0),C=(x=window.getSelection())===null||x===void 0?void 0:x.anchorNode,E=S.getRange();if(!(E!=null&&E.collapsed)){var D=E==null?void 0:E.commonAncestorContainer.childNodes,P=E==null?void 0:E.startContainer,M=E==null?void 0:E.endContainer,I=E==null?void 0:E.startOffset,N=E==null?void 0:E.endOffset,B=0,F=0,O=[];D==null||(0,o.default)(D).call(D,function(G,X){G.contains(P)&&(B=X),G.contains(M)&&(F=X)}),F-B>1&&(D==null||(0,o.default)(D).call(D,function(G,X){X<=B||X>=F||O.push(G)}),(0,o.default)(O).call(O,function(G){G.remove()})),p.dealTextNode(P,I),p.dealTextNode(M,N,!1),u.selection.moveCursor(M,0)}if(T.text()===""){var H=c.default(f.EMPTY_P);H.insertAfter(T),S.moveCursor(H.getNode()),T.remove();return}var L=S.getCursorPos(),U=g.getCursorNextNode(R==null?void 0:R.getNode(),C,L),z=d.default(c.default(U)),j=z.getInputContainer(),K=j.parent().getNode(),V=z.getTodo(),Q=j.getNode().nextSibling;if((R==null?void 0:R.text())===""&&(R==null||R.append(c.default("
      "))),V.insertAfter(T),!Q||(Q==null?void 0:Q.textContent)===""){if((Q==null?void 0:Q.nodeName)!=="BR"){var w=c.default("
      ");w.insertAfter(j)}S.moveCursor(K,1)}else S.moveCursor(K)}}function m(A){var y,x;if(g.isAllTodo(u)){var S=u.selection,T=S.getSelectionRangeTopNodes()[0],R=(y=T.childNodes())===null||y===void 0?void 0:y.getNode(),C=c.default("

      "),E=C.getNode(),D=(x=window.getSelection())===null||x===void 0?void 0:x.anchorNode,P=S.getCursorPos(),M=D.previousSibling;if(T.text()===""){A.preventDefault();var I=c.default(f.EMPTY_P);I.insertAfter(T),T.remove(),S.moveCursor(I.getNode(),0);return}if((M==null?void 0:M.nodeName)==="SPAN"&&M.childNodes[0].nodeName==="INPUT"&&P===0){var N;A.preventDefault(),R==null||(0,o.default)(N=R.childNodes).call(N,function(B,F){F!==0&&E.appendChild(B.cloneNode(!0))}),C.insertAfter(T),T.remove()}}}function v(){var A=u.selection,y=A.getSelectionRangeTopNodes()[0];y&&p.isTodo(y)&&y.text()===""&&(c.default(f.EMPTY_P).insertAfter(y),y.remove())}function h(A){A&&A.target instanceof HTMLInputElement&&A.target.type==="checkbox"&&(A.target.checked?A.target.setAttribute("checked","true"):A.target.removeAttribute("checked"))}u.txt.eventHooks.enterDownEvents.push(l),u.txt.eventHooks.deleteUpEvents.push(v),u.txt.eventHooks.deleteDownEvents.push(m),u.txt.eventHooks.clickEvents.push(h)}n.default=i},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.selectorValidator=void 0;var o=t(2),r=o.__importDefault(t(3)),c=t(6),g=t(7),d=o.__importDefault(t(130)),p={border:"1px solid #c9d8db",toolbarBgColor:"#FFF",toolbarBottomBorder:"1px solid #EEE"};function f(u){var l=u.toolbarSelector,m=r.default(l),v=u.textSelector,h=u.config,A=h.height,y=u.i18next,x=r.default("
      "),S=r.default("
      "),T,R,C=null;v==null?(R=m.children(),m.append(x).append(S),x.css("background-color",p.toolbarBgColor).css("border",p.border).css("border-bottom",p.toolbarBottomBorder),S.css("border",p.border).css("border-top","none").css("height",A+"px")):(m.append(x),C=r.default(v).children(),r.default(v).append(S),R=S.children()),T=r.default("
      "),T.attr("contenteditable","true").css("width","100%").css("height","100%");var E,D=u.config.placeholder;D!==d.default.placeholder?E=r.default("
      "+D+"
      "):E=r.default("
      "+y.t(D)+"
      "),E.addClass("placeholder"),R&&R.length?(T.append(R),E.hide()):T.append(r.default(g.EMPTY_P)),C&&C.length&&(T.append(C),E.hide()),S.append(T),S.append(E),x.addClass("w-e-toolbar").css("z-index",u.zIndex.get("toolbar")),S.addClass("w-e-text-container"),S.css("z-index",u.zIndex.get()),T.addClass("w-e-text");var P=c.getRandom("toolbar-elem");x.attr("id",P);var M=c.getRandom("text-elem");T.attr("id",M);var I=S.getBoundingClientRect().height,N=T.getBoundingClientRect().height;I!==N&&T.css("min-height",I+"px"),u.$toolbarElem=x,u.$textContainerElem=S,u.$textElem=T,u.toolbarElemId=P,u.textElemId=M}n.default=f;function i(u){var l="data-we-id",m=/^wangEditor-\d+$/,v=u.textSelector,h=u.toolbarSelector,A={bar:r.default("
      "),text:r.default("
      ")};if(h==null)throw new Error("\u9519\u8BEF\uFF1A\u521D\u59CB\u5316\u7F16\u8F91\u5668\u65F6\u5019\u672A\u4F20\u5165\u4EFB\u4F55\u53C2\u6570\uFF0C\u8BF7\u67E5\u9605\u6587\u6863");if(A.bar=r.default(h),!A.bar.elems.length)throw new Error("\u65E0\u6548\u7684\u8282\u70B9\u9009\u62E9\u5668\uFF1A"+h);if(m.test(A.bar.attr(l)))throw new Error("\u521D\u59CB\u5316\u8282\u70B9\u5DF2\u5B58\u5728\u7F16\u8F91\u5668\u5B9E\u4F8B\uFF0C\u65E0\u6CD5\u91CD\u590D\u521B\u5EFA\u7F16\u8F91\u5668");if(v){if(A.text=r.default(v),!A.text.elems.length)throw new Error("\u65E0\u6548\u7684\u8282\u70B9\u9009\u62E9\u5668\uFF1A"+v);if(m.test(A.text.attr(l)))throw new Error("\u521D\u59CB\u5316\u8282\u70B9\u5DF2\u5B58\u5728\u7F16\u8F91\u5668\u5B9E\u4F8B\uFF0C\u65E0\u6CD5\u91CD\u590D\u521B\u5EFA\u7F16\u8F91\u5668")}A.bar.attr(l,u.id),A.text.attr(l,u.id),u.beforeDestroy(function(){A.bar.removeAttr(l),A.text.removeAttr(l)})}n.selectorValidator=i},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(3)),c=t(7);function g(d,p){var f=d.$textElem,i=f.children();if(!i||!i.length){f.append(r.default(c.EMPTY_P)),g(d);return}var u=i.last();if(p){var l=u.html().toLowerCase(),m=u.getNodeName();if(l!=="
      "&&l!=="
      "||m!=="P"){f.append(r.default(c.EMPTY_P)),g(d);return}}d.selection.createRangeByElem(u,!1,!0),d.config.focus?d.selection.restoreSelection():d.selection.clearWindowSelectionRange()}n.default=g},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3));function g(l){d(l),p(l),f(l)}function d(l){l.txt.eventHooks.changeEvents.push(function(){var m=l.config.onchange;if(m){var v=l.txt.html()||"";l.isFocus=!0,m(v)}l.txt.togglePlaceholder()})}function p(l){l.isFocus=!1;function m(v){var h=v.target,A=c.default(h),y=l.$textElem,x=l.$toolbarElem,S=y.isContain(A),T=x.isContain(A),R=x.elems[0]==v.target;if(S)l.isFocus||u(l),l.isFocus=!0;else{if(T&&!R||!l.isFocus)return;i(l),l.isFocus=!1}}document.activeElement===l.$textElem.elems[0]&&l.config.focus&&(u(l),l.isFocus=!0),c.default(document).on("click",m),l.beforeDestroy(function(){c.default(document).off("click",m)})}function f(l){l.$textElem.on("compositionstart",function(){l.isComposing=!0,l.txt.togglePlaceholder()}).on("compositionend",function(){l.isComposing=!1,l.txt.togglePlaceholder()})}function i(l){var m,v=l.config,h=v.onblur,A=l.txt.html()||"";(0,o.default)(m=l.txt.eventHooks.onBlurEvents).call(m,function(y){return y()}),h(A)}function u(l){var m=l.config,v=m.onfocus,h=l.txt.html()||"";v(h)}n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});function o(r){var c=r.config,g=c.lang,d=c.languages;if(r.i18next!=null){try{r.i18next.init({ns:"wangEditor",lng:g,defaultNS:"wangEditor",resources:d})}catch(p){throw new Error("i18next:"+p)}return}r.i18next={t:function(f){var i=f.split(".");return i[i.length-1]}}}n.default=o},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(29));(0,a.default)(n,"__esModule",{value:!0}),n.setUnFullScreen=n.setFullScreen=void 0;var r=t(2),c=r.__importDefault(t(3));t(421);var g="w-e-icon-fullscreen",d="w-e-icon-fullscreen_exit",p="w-e-full-screen-editor";n.setFullScreen=function(i){var u=c.default(i.toolbarSelector),l=i.$textContainerElem,m=i.$toolbarElem,v=(0,o.default)(m).call(m,"i."+g),h=i.config;v.removeClass(g),v.addClass(d),u.addClass(p),u.css("z-index",h.zIndexFullScreen);var A=m.getBoundingClientRect();l.css("height","calc(100% - "+A.height+"px)")},n.setUnFullScreen=function(i){var u=c.default(i.toolbarSelector),l=i.$textContainerElem,m=i.$toolbarElem,v=(0,o.default)(m).call(m,"i."+d),h=i.config;v.removeClass(d),v.addClass(g),u.removeClass(p),u.css("z-index","auto"),l.css("height",h.height+"px")};var f=function(u){if(!u.textSelector&&!!u.config.showFullScreen){var l=u.$toolbarElem,m=c.default(`
      + +
      `);m.on("click",function(v){var h,A=(0,o.default)(h=c.default(v.currentTarget)).call(h,"i");A.hasClass(g)?(m.attr("data-title","\u53D6\u6D88\u5168\u5C4F"),n.setFullScreen(u)):(m.attr("data-title","\u5168\u5C4F"),n.setUnFullScreen(u))}),l.append(m)}};n.default=f},function(s,n,t){var e=t(20),a=t(422);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21);n=e(!1),n.push([s.i,`.w-e-full-screen-editor { + position: fixed; + width: 100%!important; + height: 100%!important; + left: 0; + top: 0; +} +`,""]),s.exports=n},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(29));(0,a.default)(n,"__esModule",{value:!0});var r=function(g,d){var p,f=g.isEnable?g.$textElem:(0,o.default)(p=g.$textContainerElem).call(p,".w-e-content-mantle"),i=(0,o.default)(f).call(f,"[id='"+d+"']"),u=i.getOffsetData().top;f.scrollTop(u)};n.default=r},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(129)),c={menu:2,panel:2,toolbar:1,tooltip:1,textContainer:1},g=function(){function d(){this.tier=c,this.baseZIndex=r.default.zIndex}return d.prototype.get=function(p){return p&&this.tier[p]?this.baseZIndex+this.tier[p]:this.baseZIndex},d.prototype.init=function(p){this.baseZIndex==r.default.zIndex&&(this.baseZIndex=p.config.zIndex)},d}();n.default=g},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(70)),r=e(t(4));(0,a.default)(n,"__esModule",{value:!0});var c=t(2),g=c.__importDefault(t(426)),d=t(6),p=t(7);function f(u,l){return(0,o.default)(u).call(u,function(m){var v=m.type,h=m.target,A=m.attributeName;return v!="attributes"||v=="attributes"&&(A=="contenteditable"||h!=l)})}var i=function(u){c.__extends(l,u);function l(m){var v=u.call(this,function(h,A){var y;if(h=f(h,A.target),(y=v.data).push.apply(y,h),m.isCompatibleMode)v.asyncSave();else if(!m.isComposing)return v.asyncSave()})||this;return v.editor=m,v.data=[],v.asyncSave=p.EMPTY_FN,v}return l.prototype.save=function(){this.data.length&&(this.editor.history.save(this.data),this.data.length=0,this.emit())},l.prototype.emit=function(){var m;(0,r.default)(m=this.editor.txt.eventHooks.changeEvents).call(m,function(v){return v()})},l.prototype.observe=function(){var m=this;u.prototype.observe.call(this,this.editor.$textElem.elems[0]);var v=this.editor.config.onchangeTimeout;this.asyncSave=d.debounce(function(){m.save()},v),this.editor.isCompatibleMode||this.editor.$textElem.on("compositionend",function(){m.asyncSave()})},l}(g.default);n.default=i},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=function(){function r(c,g){var d=this;this.options={subtree:!0,childList:!0,attributes:!0,attributeOldValue:!0,characterData:!0,characterDataOldValue:!0},this.callback=function(p){c(p,d)},this.observer=new MutationObserver(this.callback),g&&(this.options=g)}return(0,a.default)(r.prototype,"target",{get:function(){return this.node},enumerable:!1,configurable:!0}),r.prototype.observe=function(c){this.node instanceof Node||(this.node=c,this.connect())},r.prototype.connect=function(){if(this.node)return this.observer.observe(this.node,this.options),this;throw new Error("\u8FD8\u672A\u521D\u59CB\u5316\u7ED1\u5B9A\uFF0C\u8BF7\u60A8\u5148\u7ED1\u5B9A\u6709\u6548\u7684 Node \u8282\u70B9")},r.prototype.disconnect=function(){var c=this.observer.takeRecords();c.length&&this.callback(c),this.observer.disconnect()},r}();n.default=o},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(428)),c=o.__importDefault(t(435)),g=o.__importDefault(t(436)),d=function(){function p(f){this.editor=f,this.content=new r.default(f),this.scroll=new c.default(f),this.range=new g.default(f)}return(0,a.default)(p.prototype,"size",{get:function(){return this.scroll.size},enumerable:!1,configurable:!0}),p.prototype.observe=function(){this.content.observe(),this.scroll.observe(),!this.editor.isCompatibleMode&&this.range.observe()},p.prototype.save=function(f){f.length&&(this.content.save(f),this.scroll.save(),!this.editor.isCompatibleMode&&this.range.save())},p.prototype.revoke=function(){this.editor.change.disconnect();var f=this.content.revoke();f&&(this.scroll.revoke(),this.editor.isCompatibleMode||(this.range.revoke(),this.editor.$textElem.focus())),this.editor.change.connect(),f&&this.editor.change.emit()},p.prototype.restore=function(){this.editor.change.disconnect();var f=this.content.restore();f&&(this.scroll.restore(),this.editor.isCompatibleMode||(this.range.restore(),this.editor.$textElem.focus())),this.editor.change.connect(),f&&this.editor.change.emit()},p}();n.default=d},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(429)),c=o.__importDefault(t(433)),g=function(){function d(p){this.editor=p}return d.prototype.observe=function(){this.editor.isCompatibleMode?this.cache=new c.default(this.editor):this.cache=new r.default(this.editor),this.cache.observe()},d.prototype.save=function(p){this.editor.isCompatibleMode?this.cache.save():this.cache.compile(p)},d.prototype.revoke=function(){var p;return(p=this.cache)===null||p===void 0?void 0:p.revoke()},d.prototype.restore=function(){var p;return(p=this.cache)===null||p===void 0?void 0:p.restore()},d}();n.default=g},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(99)),c=o.__importDefault(t(431)),g=t(432),d=function(p){o.__extends(f,p);function f(i){var u=p.call(this,i.config.historyMaxSize)||this;return u.editor=i,u}return f.prototype.observe=function(){this.resetMaxSize(this.editor.config.historyMaxSize)},f.prototype.compile=function(i){return this.save(c.default(i)),this},f.prototype.revoke=function(){return p.prototype.revoke.call(this,function(i){g.revoke(i)})},f.prototype.restore=function(){return p.prototype.restore.call(this,function(i){g.restore(i)})},f}(r.default);n.default=d},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0}),n.CeilStack=void 0;var o=function(){function r(c){c===void 0&&(c=0),this.data=[],this.max=0,this.reset=!1,c=Math.abs(c),c&&(this.max=c)}return r.prototype.resetMax=function(c){c=Math.abs(c),!this.reset&&!isNaN(c)&&(this.max=c,this.reset=!0)},(0,a.default)(r.prototype,"size",{get:function(){return this.data.length},enumerable:!1,configurable:!0}),r.prototype.instack=function(c){return this.data.unshift(c),this.max&&this.size>this.max&&(this.data.length=this.max),this},r.prototype.outstack=function(){return this.data.shift()},r.prototype.clear=function(){return this.data.length=0,this},r}();n.CeilStack=o},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4)),r=e(t(27));(0,a.default)(n,"__esModule",{value:!0}),n.compliePosition=n.complieNodes=n.compileValue=n.compileType=void 0;var c=t(6);function g(m){switch(m){case"childList":return"node";case"attributes":return"attr";default:return"text"}}n.compileType=g;function d(m){switch(m.type){case"attributes":return m.target.getAttribute(m.attributeName)||"";case"characterData":return m.target.textContent;default:return""}}n.compileValue=d;function p(m){var v={};return m.addedNodes.length&&(v.add=c.toArray(m.addedNodes)),m.removedNodes.length&&(v.remove=c.toArray(m.removedNodes)),v}n.complieNodes=p;function f(m){var v;return m.previousSibling?v={type:"before",target:m.previousSibling}:m.nextSibling?v={type:"after",target:m.nextSibling}:v={type:"parent",target:m.target},v}n.compliePosition=f;var i=["UL","OL","H1","H2","H3","H4","H5","H6"];function u(m){var v=[],h=!1,A=[];return(0,o.default)(m).call(m,function(y,x){var S={type:g(y.type),target:y.target,attr:y.attributeName||"",value:d(y)||"",oldValue:y.oldValue||"",nodes:p(y),position:f(y)};if(v.push(S),!!c.UA.isFirefox){if(h&&y.addedNodes.length&&y.addedNodes[0].nodeType==1){var T=y.addedNodes[0],R={type:"node",target:T,attr:"",value:"",oldValue:"",nodes:{add:[h]},position:{type:"parent",target:T}};(0,r.default)(i).call(i,T.nodeName)!=-1?(R.nodes.add=c.toArray(T.childNodes),v.push(R)):h.nodeType==3?(l(T,A)&&(R.nodes.add=c.toArray(T.childNodes)),v.push(R)):(0,r.default)(i).call(i,y.target.nodeName)==-1&&l(T,A)&&(R.nodes.add=c.toArray(T.childNodes),v.push(R))}S.type=="node"&&y.removedNodes.length==1?(h=y.removedNodes[0],A.push(h)):(h=!1,A.length=0)}}),v}n.default=u;function l(m,v){for(var h=0,A=v.length-1;A>0&&m.contains(v[A]);A--)h++;return h}},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(4)),r=e(t(94));(0,a.default)(n,"__esModule",{value:!0}),n.restore=n.revoke=void 0;function c(A,y){var x=A.position.target;switch(A.position.type){case"before":x.nextSibling?(x=x.nextSibling,(0,o.default)(y).call(y,function(S){A.target.insertBefore(S,x)})):(0,o.default)(y).call(y,function(S){A.target.appendChild(S)});break;case"after":(0,o.default)(y).call(y,function(S){A.target.insertBefore(S,x)});break;default:(0,o.default)(y).call(y,function(S){x.appendChild(S)});break}}function g(A){for(var y=0,x=(0,r.default)(A.nodes);y-1;y--){var x=A[y];f[x.type](x)}}n.revoke=i;function u(A){for(var y=0,x=(0,r.default)(A.nodes);ythis.max;)this.data.shift();return this.point=this.size-1,this},c.prototype.current=function(){return this.data[this.point]},c.prototype.prev=function(){if(!this.isRe&&(this.isRe=!0),this.point--,this.point<0){this.point=0;return}return this.current()},c.prototype.next=function(){if(!this.isRe&&(this.isRe=!0),this.point++,this.point>=this.size){this.point=this.size-1;return}return this.current()},c}();n.TailChain=r},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(99)),c=function(g){o.__extends(d,g);function d(p){var f=g.call(this,p.config.historyMaxSize)||this;return f.editor=p,f.last=0,f.target=p.$textElem.elems[0],f}return d.prototype.observe=function(){var p=this;this.target=this.editor.$textElem.elems[0],this.editor.$textElem.on("scroll",function(){p.last=p.target.scrollTop}),this.resetMaxSize(this.editor.config.historyMaxSize)},d.prototype.save=function(){return g.prototype.save.call(this,[this.last,this.target.scrollTop]),this},d.prototype.revoke=function(){var p=this;return g.prototype.revoke.call(this,function(f){p.target.scrollTop=f[0]})},d.prototype.restore=function(){var p=this;return g.prototype.restore.call(this,function(f){p.target.scrollTop=f[1]})},d}(r.default);n.default=c},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=t(2),r=o.__importDefault(t(99)),c=o.__importDefault(t(3)),g=t(6);function d(f){return{start:[f.startContainer,f.startOffset],end:[f.endContainer,f.endOffset],root:f.commonAncestorContainer,collapsed:f.collapsed}}var p=function(f){o.__extends(i,f);function i(u){var l=f.call(this,u.config.historyMaxSize)||this;return l.editor=u,l.lastRange=d(document.createRange()),l.root=u.$textElem.elems[0],l.updateLastRange=g.debounce(function(){l.lastRange=d(l.rangeHandle)},u.config.onchangeTimeout),l}return(0,a.default)(i.prototype,"rangeHandle",{get:function(){var l=document.getSelection();return l&&l.rangeCount?l.getRangeAt(0):document.createRange()},enumerable:!1,configurable:!0}),i.prototype.observe=function(){var u=this;this.root=this.editor.$textElem.elems[0],this.resetMaxSize(this.editor.config.historyMaxSize);function l(){var v=u.rangeHandle;(u.root===v.commonAncestorContainer||u.root.contains(v.commonAncestorContainer))&&(u.editor.isComposing||u.updateLastRange())}function m(v){(v.key=="Backspace"||v.key=="Delete")&&u.updateLastRange()}c.default(document).on("selectionchange",l),this.editor.beforeDestroy(function(){c.default(document).off("selectionchange",l)}),u.editor.$textElem.on("keydown",m)},i.prototype.save=function(){var u=d(this.rangeHandle);return f.prototype.save.call(this,[this.lastRange,u]),this.lastRange=u,this},i.prototype.set=function(u){try{if(u){var l=this.rangeHandle;return l.setStart.apply(l,u.start),l.setEnd.apply(l,u.end),this.editor.menus.changeActive(),!0}}catch{return!1}return!1},i.prototype.revoke=function(){var u=this;return f.prototype.revoke.call(this,function(l){u.set(l[0])})},i.prototype.restore=function(){var u=this;return f.prototype.restore.call(this,function(l){u.set(l[1])})},i}(r.default);n.default=p},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(29));(0,a.default)(n,"__esModule",{value:!0});var r=t(2),c=r.__importDefault(t(3));t(438);function g(d){var p=!1,f,i;d.txt.eventHooks.changeEvents.push(function(){p&&(0,o.default)(f).call(f,".w-e-content-preview").html(d.$textElem.html())});function u(){if(!p){d.$textElem.hide();var m=d.zIndex.get("textContainer"),v=d.txt.html();f=c.default('
      +
      `+v+`
      +
      `),d.$textContainerElem.append(f);var h=d.zIndex.get("menu");i=c.default('
      '),d.$toolbarElem.append(i),p=!0,d.isEnable=!1}}function l(){!p||(f.remove(),i.remove(),d.$textElem.show(),p=!1,d.isEnable=!0)}return{disable:u,enable:l}}n.default=g},function(s,n,t){var e=t(20),a=t(439);a=a.__esModule?a.default:a,typeof a=="string"&&(a=[[s.i,a,""]]);var o={};o.insert="head",o.singleton=!1,e(a,o),s.exports=a.locals||{}},function(s,n,t){var e=t(21);n=e(!1),n.push([s.i,`.w-e-content-mantle { + width: 100%; + height: 100%; + overflow-y: auto; +} +.w-e-content-mantle .w-e-content-preview { + width: 100%; + min-height: 100%; + padding: 0 10px; + line-height: 1.5; +} +.w-e-content-mantle .w-e-content-preview img { + cursor: default; +} +.w-e-content-mantle .w-e-content-preview img:hover { + box-shadow: none; +} +.w-e-menue-mantle { + position: absolute; + height: 100%; + width: 100%; + top: 0; + left: 0; +} +`,""]),s.exports=n},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0});var o=function(){function r(c){var g=this;this.editor=c;var d=function(){var f=document.activeElement;f===c.$textElem.elems[0]&&g.emit()};window.document.addEventListener("selectionchange",d),this.editor.beforeDestroy(function(){window.document.removeEventListener("selectionchange",d)})}return r.prototype.emit=function(){var c,g=this.editor.config.onSelectionChange;if(g){var d=this.editor.selection;d.saveRange(),d.isSelectionEmpty()||g({text:d.getSelectionText(),html:(c=d.getSelectionContainerElem())===null||c===void 0?void 0:c.elems[0].innerHTML,selection:d})}},r}();n.default=o},function(s,n,t){var e=t(0),a=e(t(1)),o=e(t(128)),r=e(t(94)),c=e(t(4));(0,a.default)(n,"__esModule",{value:!0}),n.registerPlugin=void 0;var g=t(2),d=g.__importDefault(t(87)),p=t(6);function f(u,l,m){if(!u)throw new TypeError("name is not define");if(!l)throw new TypeError("options is not define");if(!l.intention)throw new TypeError("options.intention is not define");if(l.intention&&typeof l.intention!="function")throw new TypeError("options.intention is not function");m[u]&&console.warn("plugin "+u+" \u5DF2\u5B58\u5728\uFF0C\u5DF2\u8986\u76D6\u3002"),m[u]=l}n.registerPlugin=f;function i(u){var l=(0,o.default)({},p.deepClone(d.default.globalPluginsFunctionList),p.deepClone(u.pluginsFunctionList)),m=(0,r.default)(l);(0,c.default)(m).call(m,function(v){var h=v[0],A=v[1];console.info("plugin "+h+" initializing");var y=A.intention,x=A.config;y(u,x),console.info("plugin "+h+" initialization complete")})}n.default=i},function(s,n,t){var e=t(0),a=e(t(1));(0,a.default)(n,"__esModule",{value:!0})}]).default})})(Yt);var oe=Vt(Yt.exports);const re=Ut({name:"wngEditor",props:{id:{type:String,default:()=>"wangeditor"},isDisable:{type:Boolean,default:()=>!1},placeholder:{type:String,default:()=>"\u8BF7\u8F93\u5165\u5185\u5BB9"},modelValue:String},setup(et,{emit:at}){const s=jt({editor:null}),n=()=>{s.editor=new oe(`#${et.id}`),s.editor.config.zIndex=1,s.editor.config.placeholder=et.placeholder,s.editor.config.uploadImgShowBase64=!0,s.editor.config.showLinkImg=!1,t(),s.editor.create(),s.editor.txt.html(et.modelValue),et.isDisable?s.editor.disable():s.editor.enable()},t=()=>{s.editor.config.onchange=e=>{at("update:modelValue",e)}};return _t(()=>{n()}),te(()=>et.modelValue,e=>{s.editor.txt.html(e)}),{...Qt(s)}}}),ae={class:"editor-container"},ie=["id"];function le(et,at,s,n,t,e){return $t(),wt("div",ae,[pt("div",{id:et.id},null,8,ie)])}var ue=Ot(re,[["render",le]]);const se=Ut({name:"Edit",components:{Delete:Gt,Plus:Kt,CircleClose:Jt,Minus:Wt,Right:Xt,Top:Zt,Bottom:kt,Editor:ue},setup(et,{emit:at}){const s=Lt(null),n=Lt(null),t=jt({id:0,configData:[],type_name:"",isShowDialog:!1,ruleForm:{id:0,name:"",type:"notice",value:"",doc:""},rules:{value:[{required:!0,message:"\u914D\u7F6E\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),e=c=>{c&&(t.type_name=c.value,Ht.config.getbyname({name:c.value,type:"notice"}).then(g=>{t.ruleForm=g||[]})),t.isShowDialog=!0},a=()=>{t.isShowDialog=!1};return{openDialog:e,closeDialog:a,onCancel:()=>{a()},onSubmit:()=>{const c=ee(n);!c||c.validate(g=>{g&&(t.ruleForm.name=t.type_name,t.ruleForm.type="notice",Ht.config.save(t.ruleForm).then(()=>{qt.success("\u63D2\u4EF6\u8BBE\u7F6E\u6210\u529F"),a(),at("dataList")}))})},formRef:n,myRef:s,...Qt(t)}}}),fe={class:"system-edit-dic-container"},de={style:{display:"flex","justify-content":"space-between"}},ce={style:{width:"50%",padding:"10px"}},ve=pt("div",null,"\u914D\u7F6E\u5185\u5BB9",-1),me={style:{width:"50%",padding:"10px"}},pe=pt("div",null,"\u914D\u7F6E\u8BF4\u660E",-1),he={class:"dialog-footer"},ge=bt("\u53D6 \u6D88");function Ae(et,at,s,n,t,e){const a=Mt("el-input"),o=Mt("Editor"),r=Mt("el-form"),c=Mt("el-button"),g=Mt("el-dialog");return $t(),wt("div",fe,[Dt(g,{title:"\u8BBE\u7F6E\u914D\u7F6E\u4FE1\u606F",modelValue:et.isShowDialog,"onUpdate:modelValue":at[2]||(at[2]=d=>et.isShowDialog=d),width:"65%"},{footer:It(()=>[pt("span",he,[Dt(c,{onClick:et.onCancel,size:"default"},{default:It(()=>[ge]),_:1},8,["onClick"]),Dt(c,{type:"primary",onClick:et.onSubmit,size:"default"},{default:It(()=>[bt(ne(et.ruleForm.id!==0?"\u8BBE \u7F6E":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:It(()=>[Dt(r,{model:et.ruleForm,ref:"formRef",rules:et.rules,size:"default","label-width":"110px"},{default:It(()=>[pt("div",de,[pt("div",ce,[ve,Dt(a,{modelValue:et.ruleForm.value,"onUpdate:modelValue":at[0]||(at[0]=d=>et.ruleForm.value=d),type:"textarea",placeholder:"\u914D\u7F6E\u5185\u5BB9\uFF0C\u4E00\u884C\u4E00\u6761",style:{"min-height":"420px"}},null,8,["modelValue"])]),pt("div",me,[pe,pt("div",null,[Dt(o,{"is-disable":!1,modelValue:et.ruleForm.doc,"onUpdate:modelValue":at[1]||(at[1]=d=>et.ruleForm.doc=d)},null,8,["modelValue"])])])])]),_:1},8,["model","rules"])]),_:1},8,["modelValue"])])}var Se=Ot(se,[["render",Ae]]);export{Se as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469511.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469511.js new file mode 100644 index 0000000..4a30dfc --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469511.js @@ -0,0 +1 @@ +import{a as F}from"./index.17011843046957.js";import{v as _}from"./vue3cron.1701184304695.js";import{_ as w,E}from"./index.1701184304695.js";import{L as S,h as T,a2 as U,ab as z,a as y,_ as o,T as t,j as $,e as q,ai as n,o as m,b as A,Y as b,Z as L,F as h,a8 as v,S as k}from"./vue.1701184304695.js";const N=S({name:"Edit",components:{vue3cron:_},setup(u,{emit:l}){const f=T(null),{proxy:D}=$(),{datahub_model_type:C}=D.useDict("datahub_model_type"),a=U({isShowDialog:!1,zidianData:[],cityData:[],cronShow:!1,crontype:"",unitData:[{label:"\u79D2",value:"second"},{label:"\u5206",value:"minute"},{label:"\u65F6",value:"hour"},{label:"\u5929",value:"day"}],ruleForm:{id:0,name:"",key:"",busiTypes:[],desc:"",type:""},rules:{key:[{required:!0,message:"\u6A21\u578B\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],name:[{required:!0,message:"\u6A21\u578B\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],type:[{required:!0,message:"\u6A21\u578B\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],interval:[{required:!0,message:"\u8BF7\u8F93\u5165\u66F4\u65B0\u65F6\u95F4",trigger:"blur"}]}}),i=e=>{r(),F.template.getDictData({DictType:"busi_types"}).then(d=>{a.zidianData=d.values}),F.template.cityTree({status:1}).then(d=>{a.cityData=d}),e&&(a.ruleForm=e,e.dataTemplateBusi&&(a.ruleForm.busiTypes=e.dataTemplateBusi.map(d=>d.busiTypes.toString()))),a.isShowDialog=!0},r=()=>{a.ruleForm={id:0,name:"",key:"",busiTypes:[],desc:"",type:""}},s=()=>{a.isShowDialog=!1};return{handlelisten:e=>{a.ruleForm.cronExpression=e.cron},showCron:e=>{a.crontype=e,a.cronShow=!0},cronclose:()=>{a.cronShow=!1},openDialog:i,closeDialog:s,onCancel:()=>{s()},onSubmit:()=>{const e=q(f);!e||e.validate(d=>{d&&(a.ruleForm.id!==0?F.template.edit(a.ruleForm).then(()=>{E.success("\u6A21\u578B\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),s(),l("typeList")}):F.template.add(a.ruleForm).then(()=>{E.success("\u6A21\u578B\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),s(),l("typeList")}))})},formRef:f,datahub_model_type:C,...z(a)}}}),R={class:"system-edit-dic-container"},H={style:{display:"flex"}},j=b("\u8BBE\u7F6E"),I={class:"dialog-footer"},M=b("\u53D6 \u6D88");function W(u,l,f,D,C,a){const i=n("el-input"),r=n("el-form-item"),s=n("el-option"),c=n("el-select"),p=n("el-button"),g=n("el-form"),B=n("el-dialog"),V=n("vue3cron");return m(),y("div",R,[o(B,{title:(u.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u6A21\u578B",modelValue:u.isShowDialog,"onUpdate:modelValue":l[7]||(l[7]=e=>u.isShowDialog=e),width:"769px"},{footer:t(()=>[A("span",I,[o(p,{onClick:u.onCancel,size:"default"},{default:t(()=>[M]),_:1},8,["onClick"]),o(p,{type:"primary",onClick:u.onSubmit,size:"default"},{default:t(()=>[b(L(u.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:t(()=>[o(g,{model:u.ruleForm,ref:"formRef",rules:u.rules,size:"default","label-width":"110px"},{default:t(()=>[o(r,{label:"\u6A21\u578B\u6807\u8BC6",prop:"key"},{default:t(()=>[o(i,{modelValue:u.ruleForm.key,"onUpdate:modelValue":l[0]||(l[0]=e=>u.ruleForm.key=e),placeholder:"\u8BF7\u8F93\u5165\u6A21\u578B\u540D\u79F0",disabled:u.ruleForm.id},null,8,["modelValue","disabled"])]),_:1}),o(r,{label:"\u6A21\u578B\u540D\u79F0",prop:"name"},{default:t(()=>[o(i,{modelValue:u.ruleForm.name,"onUpdate:modelValue":l[1]||(l[1]=e=>u.ruleForm.name=e),placeholder:"\u8BF7\u8F93\u5165\u6A21\u578B\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(r,{label:"\u6A21\u578B\u7C7B\u578B",prop:"type"},{default:t(()=>[o(c,{modelValue:u.ruleForm.type,"onUpdate:modelValue":l[2]||(l[2]=e=>u.ruleForm.type=e),placeholder:"\u8BF7\u9009\u62E9\u6A21\u578B\u7C7B\u578B",class:"w100"},{default:t(()=>[(m(!0),y(h,null,v(u.datahub_model_type,e=>(m(),k(s,{key:e.value,label:e.label,value:e.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),o(r,{label:"\u5B9A\u65F6\u8BF7\u6C42"},{default:t(()=>[A("div",H,[o(i,{modelValue:u.ruleForm.cronExpression,"onUpdate:modelValue":l[3]||(l[3]=e=>u.ruleForm.cronExpression=e),placeholder:"\u8BF7\u8F93\u5165cron\u8868\u8FBE\u5F0F"},null,8,["modelValue"]),o(p,{type:"success",onClick:l[4]||(l[4]=e=>u.showCron("ruleForm")),style:{"margin-left":"5px"}},{default:t(()=>[j]),_:1})])]),_:1}),o(r,{label:"\u63CF\u8FF0",prop:"desc"},{default:t(()=>[o(i,{modelValue:u.ruleForm.desc,"onUpdate:modelValue":l[5]||(l[5]=e=>u.ruleForm.desc=e),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5355\u5143\u7C7B\u578B",prop:"busiTypes"},{default:t(()=>[o(c,{modelValue:u.ruleForm.busiTypes,"onUpdate:modelValue":l[6]||(l[6]=e=>u.ruleForm.busiTypes=e),multiple:"",placeholder:"\u8BF7\u9009\u62E9\u5355\u5143\u7C7B\u578B",class:"w100"},{default:t(()=>[(m(!0),y(h,null,v(u.zidianData,e=>(m(),k(s,{key:e.key,label:e.value,value:e.key},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"]),o(B,{modelValue:u.cronShow,"onUpdate:modelValue":l[8]||(l[8]=e=>u.cronShow=e),title:"\u9009\u62E9Cron\u89C4\u5219",width:"60%"},{default:t(()=>[o(V,{onHandlelisten:u.handlelisten,type:u.crontype,onClose:u.cronclose},null,8,["onHandlelisten","type","onClose"])]),_:1},8,["modelValue"])])}var K=w(N,[["render",W]]);export{K as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469512.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469512.js new file mode 100644 index 0000000..5fbc79e --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469512.js @@ -0,0 +1 @@ +import{a as E}from"./index.17011843046957.js";/* empty css */import{v as z}from"./vue3cron.1701184304695.js";import{_ as J,t as O,v as H,w as M,x as G,y as W,E as B}from"./index.1701184304695.js";import{L as X,h as K,a2 as Y,ab as Z,a as F,_ as l,T as t,e as Q,ai as f,o as p,b as c,S as P,X as A,Y as i,Z as N,F as D,a8 as _}from"./vue.1701184304695.js";const x=X({name:"Edit",components:{Delete:O,Plus:H,CircleClose:M,Minus:G,Right:W,vue3cron:z},setup(e,{emit:a}){const I=K(null),S=K(null),u=Y({isShowDialog:!1,dialogVisible:!1,cronShow:!1,crontype:"",config:{},devconfig:{},tabconfig:{},sourceData:[],sourceId:0,jsonData:"",ruledata:[{expression:"",replace:""}],rule:[{expression:"",replace:""}],requestParams:[[{type:"",key:"",name:"",value:""}]],methodData:[{label:"GET",value:"get"},{label:"POST",value:"post"}],unitData:[{label:"\u79D2",value:"second"},{label:"\u5206",value:"minute"},{label:"\u65F6",value:"hour"},{label:"\u5929",value:"day"}],paramData:[{lable:"header",value:"header"},{lable:"body",value:"body"},{lable:"param",value:"param"}],ruleForm:{sourceId:0,name:"",from:1,key:"",rule:[],config:{method:"",url:"",interval:"",intervalUnit:"",requestParams:[]},desc:""},rules:{key:[{required:!0,message:"\u6570\u636E\u6E90\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],name:[{required:!0,message:"\u6570\u636E\u6E90\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],from:[{required:!0,message:"\u6570\u636E\u6E90\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),T=n=>{u.requestParams.splice(n,1)},r=(n,s)=>{u.requestParams[n].splice(s,1)},d=()=>{u.requestParams.push([{type:"",key:"",name:"",value:""}]),console.log(u.requestParams)},y=n=>{u.requestParams[n].push({type:"",key:"",name:"",value:""})},V=n=>{u.rule.splice(n,1)},k=()=>{u.rule.push({expression:"",replace:""})},v=n=>{g(),q(),console.log(u.requestParams),n&&(u.sourceId=n.sourceId,E.common.detail(n.sourceId).then(s=>{u.ruleForm=s.data,s.data.from==1?(u.config=s.data.apiConfig,u.requestParams=s.data.apiConfig.requestParams):s.data.from==4?u.devconfig=s.data.deviceConfig:s.data.from==2&&(u.tabconfig=s.data.dbConfig),s.data.sourceRule.forEach((m,j)=>{u.rule[j].expression=m.expression,u.rule[j].replace=m.replace})})),u.isShowDialog=!0},C=n=>{if(n.target.innerText&&n.target.className=="jv-key"){let s=n.target.innerText;s=s.substr(0,s.length-1),console.log(s)}},g=()=>{u.devconfig={},u.tabconfig={},u.ruleForm={sourceId:0,name:"",from:1,key:"",rule:[],config:{method:"",url:"",interval:"",intervalUnit:"",requestParams:[]},desc:""}},b=()=>{u.isShowDialog=!1},U=()=>{b()},q=()=>{E.common.getdevList({}).then(n=>{u.sourceData=n.device})};return{cronclose:()=>{u.cronShow=!1},showCron:n=>{u.crontype=n,u.cronShow=!0},onTest:()=>{u.ruleForm.from==1?E.common.api(u.sourceId).then(n=>{u.jsonData=JSON.parse(n.data),u.dialogVisible=!0,console.log(n)}):u.ruleForm.from==4&&E.common.devapi(u.sourceId).then(n=>{u.jsonData=JSON.parse(n.data),u.dialogVisible=!0,console.log(n)})},addRule:k,delRule:V,handlelisten:n=>{console.log(n),n.type=="config"?u.config.cronExpression=n.cron:n.type=="tabconfig"&&(u.tabconfig.cronExpression=n.cron)},addParams:y,addParamss:d,delParamss:r,delParams:T,onKeyclick:C,openDialog:v,setNode:n=>{u.sourceData.forEach((s,m)=>{s.id==n&&(u.devconfig.productKey=s.product.key,u.devconfig.deviceKey=s.key)})},closeDialog:b,getDevData:q,onCancel:U,onSubmit:()=>{const n=Q(S);console.log(n),n&&n.validate(s=>{s&&(u.ruleForm.rule=u.rule,u.ruleForm.from==1?(u.config.requestParams=u.requestParams,u.ruleForm.config=u.config):u.ruleForm.from==4?u.ruleForm.config=u.devconfig:u.ruleForm.from==2&&(u.ruleForm.config=u.tabconfig),u.ruleForm.sourceId!==0?u.ruleForm.from==1?E.common.edit(u.ruleForm).then(()=>{B.success("\u6570\u636E\u6E90\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),b(),a("typeList")}):u.ruleForm.from==4?E.common.devedit(u.ruleForm).then(()=>{B.success("\u6570\u636E\u6E90\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),b(),a("typeList")}):u.ruleForm.from==2&&E.common.dbedit(u.ruleForm).then(()=>{B.success("\u6570\u636E\u6E90\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),b(),a("typeList")}):u.ruleForm.from==1?E.common.add(u.ruleForm).then(()=>{B.success("\u6570\u636E\u6E90\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),b(),a("typeList")}):u.ruleForm.from==4?E.common.devadd(u.ruleForm).then(()=>{B.success("\u6570\u636E\u6E90\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),b(),a("typeList")}):u.ruleForm.from==2&&E.common.dbadd(u.ruleForm).then(()=>{B.success("\u6570\u636E\u6E90\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),b(),a("typeList")}))})},formRef:S,myRef:I,...Z(u)}}}),ee={class:"system-edit-dic-container"},le=i("api\u5BFC\u5165"),ue=i("\u8BBE\u5907"),oe=i("\u6570\u636E\u5E93"),ae=i("\u6570\u636E\u6E90\u914D\u7F6E"),te={key:0},ne={style:{display:"flex"}},se=i("\u8BBE\u7F6E"),de={class:"box-content"},re={class:"conicon",style:{width:"100%","text-align":"right",position:"absolute",right:"-8px",top:"-8px",color:"red"}},ie={style:{display:"flex"}},me=i("\u8BF7\u6C42\u53C2\u6570"),fe={class:"conicon"},pe=i("\u589E\u52A0"),ce=c("div",{style:{}},null,-1),Fe=i("\u589E\u52A0\u5206\u7EC4"),ge={key:1},be={style:{float:"left"}},Ee={style:{float:"right","font-size":"13px"}},ye={key:2},Be=i("mysql"),Ve=i("mssql"),ve={class:"inline"},Ce={class:"inline"},he=i("\u6570\u636E\u8868"),De=i("Sql"),_e={style:{display:"flex"}},ke=i("\u8BBE\u7F6E"),Ue={class:"dialog-footer"},qe=i("\u6D4B\u8BD5"),we=i("\u53D6 \u6D88"),Pe={class:"dialog-footer"},Ae=i("\u5173\u95ED");function Se(e,a,I,S,u,T){const r=f("el-input"),d=f("el-form-item"),y=f("el-radio"),V=f("el-radio-group"),k=f("el-divider"),v=f("el-option"),C=f("el-select"),g=f("el-button"),b=f("CircleClose"),U=f("el-icon"),q=f("Delete"),$=f("el-form"),w=f("el-dialog"),L=f("JsonViewer"),R=f("vue3cron");return p(),F("div",ee,[l(w,{title:(e.ruleForm.sourceId!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u6570\u636E\u6E90",modelValue:e.isShowDialog,"onUpdate:modelValue":a[21]||(a[21]=o=>e.isShowDialog=o),width:"769px"},{footer:t(()=>[c("span",Ue,[e.ruleForm.sourceId>0?(p(),P(g,{key:0,onClick:e.onTest,type:"warning",size:"default"},{default:t(()=>[qe]),_:1},8,["onClick"])):A("",!0),l(g,{onClick:e.onCancel,size:"default"},{default:t(()=>[we]),_:1},8,["onClick"]),l(g,{type:"primary",onClick:e.onSubmit,size:"default"},{default:t(()=>[i(N(e.ruleForm.sourceId!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:t(()=>[l($,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"110px"},{default:t(()=>[l(d,{label:"\u6570\u636E\u6E90\u6807\u8BC6",prop:"key"},{default:t(()=>[l(r,{modelValue:e.ruleForm.key,"onUpdate:modelValue":a[0]||(a[0]=o=>e.ruleForm.key=o),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u6E90\u540D\u79F0",disabled:e.ruleForm.sourceId},null,8,["modelValue","disabled"])]),_:1}),l(d,{label:"\u6570\u636E\u6E90\u540D\u79F0",prop:"name"},{default:t(()=>[l(r,{modelValue:e.ruleForm.name,"onUpdate:modelValue":a[1]||(a[1]=o=>e.ruleForm.name=o),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u6E90\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u63CF\u8FF0",prop:"desc"},{default:t(()=>[l(r,{modelValue:e.ruleForm.desc,"onUpdate:modelValue":a[2]||(a[2]=o=>e.ruleForm.desc=o),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u6570\u636E\u6765\u6E90",prop:"from"},{default:t(()=>[l(V,{modelValue:e.ruleForm.from,"onUpdate:modelValue":a[3]||(a[3]=o=>e.ruleForm.from=o)},{default:t(()=>[l(y,{label:1},{default:t(()=>[le]),_:1}),l(y,{label:4},{default:t(()=>[ue]),_:1}),l(y,{label:2},{default:t(()=>[oe]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(k,{"content-position":"left"},{default:t(()=>[ae]),_:1}),e.ruleForm.from==1?(p(),F("div",te,[l(d,{label:"\u8BF7\u6C42\u65B9\u6CD5"},{default:t(()=>[l(C,{modelValue:e.config.method,"onUpdate:modelValue":a[4]||(a[4]=o=>e.config.method=o),placeholder:"\u8BF7\u9009\u62E9\u8BF7\u6C42\u65B9\u6CD5"},{default:t(()=>[(p(!0),F(D,null,_(e.methodData,o=>(p(),P(v,{key:o.value,label:o.label,value:o.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),l(d,{label:"\u8BF7\u6C42\u5730\u5740"},{default:t(()=>[l(r,{modelValue:e.config.url,"onUpdate:modelValue":a[5]||(a[5]=o=>e.config.url=o),placeholder:"\u8BF7\u8F93\u5165\u8BF7\u6C42\u5730\u5740"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u5B9A\u65F6\u8BF7\u6C42"},{default:t(()=>[c("div",ne,[l(r,{modelValue:e.config.cronExpression,"onUpdate:modelValue":a[6]||(a[6]=o=>e.config.cronExpression=o),placeholder:"\u8BF7\u8F93\u5165cron\u8868\u8FBE\u5F0F"},null,8,["modelValue"]),l(g,{type:"success",onClick:a[7]||(a[7]=o=>e.showCron("config")),style:{"margin-left":"5px"}},{default:t(()=>[se]),_:1})])]),_:1}),c("div",de,[c("div",null,[(p(!0),F(D,null,_(e.requestParams,(o,h)=>(p(),F("div",{key:h,style:{padding:"10px",border:"1px solid #eee","margin-bottom":"10px",position:"relative"}},[c("div",re,[l(U,{onClick:n=>e.delParams(h)},{default:t(()=>[l(b)]),_:2},1032,["onClick"])]),c("div",ie,[l(k,{"content-position":"left"},{default:t(()=>[me]),_:1})]),(p(!0),F(D,null,_(o,(n,s)=>(p(),F("div",{class:"content-f",key:s},[l(C,{modelValue:n.type,"onUpdate:modelValue":m=>n.type=m,placeholder:"\u53C2\u6570\u7C7B\u578B",style:{width:"320px"}},{default:t(()=>[(p(!0),F(D,null,_(e.paramData,m=>(p(),P(v,{key:m.value,label:m.label,value:m.value},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"]),l(r,{modelValue:n.name,"onUpdate:modelValue":m=>n.name=m,placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\u6807\u9898",style:{width:"320px"}},null,8,["modelValue","onUpdate:modelValue"]),l(r,{modelValue:n.key,"onUpdate:modelValue":m=>n.key=m,placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\u540D",style:{width:"320px"}},null,8,["modelValue","onUpdate:modelValue"]),l(r,{modelValue:n.value,"onUpdate:modelValue":m=>n.value=m,placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\u503C",style:{width:"320px"}},null,8,["modelValue","onUpdate:modelValue"]),c("div",fe,[l(U,{onClick:m=>e.delParamss(h,s)},{default:t(()=>[l(q)]),_:2},1032,["onClick"])])]))),128)),l(g,{type:"primary",class:"addbutton",onClick:n=>e.addParams(h)},{default:t(()=>[pe]),_:2},1032,["onClick"]),ce]))),128))])]),l(g,{type:"success",class:"addbutton",onClick:e.addParamss},{default:t(()=>[Fe]),_:1},8,["onClick"])])):A("",!0),e.ruleForm.from==4?(p(),F("div",ge,[l(d,{label:"\u9009\u62E9\u8BBE\u5907"},{default:t(()=>[l(C,{modelValue:e.devconfig.deviceKey,"onUpdate:modelValue":a[8]||(a[8]=o=>e.devconfig.deviceKey=o),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u8BBE\u5907",onChange:e.setNode},{default:t(()=>[(p(!0),F(D,null,_(e.sourceData,o=>(p(),P(v,{key:o.id,label:o.key,value:o.id},{default:t(()=>[c("span",be,N(o.name),1),c("span",Ee,N(o.key),1)]),_:2},1032,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1})])):A("",!0),e.ruleForm.from==2?(p(),F("div",ye,[l(d,{label:"\u6570\u636E\u6765\u6E90",prop:"type"},{default:t(()=>[l(V,{modelValue:e.tabconfig.type,"onUpdate:modelValue":a[9]||(a[9]=o=>e.tabconfig.type=o)},{default:t(()=>[l(y,{label:"mysql"},{default:t(()=>[Be]),_:1}),l(y,{label:"mssql"},{default:t(()=>[Ve]),_:1})]),_:1},8,["modelValue"])]),_:1}),c("div",ve,[l(d,{label:"\u4E3B\u673A\u5730\u5740"},{default:t(()=>[l(r,{modelValue:e.tabconfig.host,"onUpdate:modelValue":a[10]||(a[10]=o=>e.tabconfig.host=o),placeholder:"\u8BF7\u8F93\u5165\u4E3B\u673A\u5730\u5740"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u7AEF\u53E3\u53F7"},{default:t(()=>[l(r,{modelValue:e.tabconfig.port,"onUpdate:modelValue":a[11]||(a[11]=o=>e.tabconfig.port=o),placeholder:"\u8BF7\u8F93\u5165\u7AEF\u53E3\u53F7"},null,8,["modelValue"])]),_:1})]),c("div",Ce,[l(d,{label:"\u7528\u6237\u540D"},{default:t(()=>[l(r,{modelValue:e.tabconfig.user,"onUpdate:modelValue":a[12]||(a[12]=o=>e.tabconfig.user=o),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u540D"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u5BC6\u7801"},{default:t(()=>[l(r,{modelValue:e.tabconfig.passwd,"onUpdate:modelValue":a[13]||(a[13]=o=>e.tabconfig.passwd=o),placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801"},null,8,["modelValue"])]),_:1})]),l(d,{label:"\u6570\u636E\u5E93\u540D\u79F0"},{default:t(()=>[l(r,{modelValue:e.tabconfig.dbName,"onUpdate:modelValue":a[14]||(a[14]=o=>e.tabconfig.dbName=o),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u5E93\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u6267\u884C\u65B9\u5F0F",prop:"queryType"},{default:t(()=>[l(V,{modelValue:e.tabconfig.queryType,"onUpdate:modelValue":a[15]||(a[15]=o=>e.tabconfig.queryType=o)},{default:t(()=>[l(y,{label:"tableName"},{default:t(()=>[he]),_:1}),l(y,{label:"sql"},{default:t(()=>[De]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(d,{label:""},{default:t(()=>[l(r,{modelValue:e.tabconfig.tableName,"onUpdate:modelValue":a[16]||(a[16]=o=>e.tabconfig.tableName=o),type:"textarea",placeholder:e.tabconfig.queryType=="sql"?"\u8BF7\u8F93\u5165sql\u8BED\u53E5":"\u8BF7\u8F93\u5165\u8868\u540D\u79F0"},null,8,["modelValue","placeholder"])]),_:1}),l(d,{label:"\u4E3B\u952E\u5B57\u6BB5"},{default:t(()=>[l(r,{modelValue:e.tabconfig.pk,"onUpdate:modelValue":a[17]||(a[17]=o=>e.tabconfig.pk=o),placeholder:"\u8BF7\u8F93\u5165\u4E3B\u952E\u5B57\u6BB5"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u6BCF\u6B21\u83B7\u53D6\u6570\u91CF"},{default:t(()=>[l(r,{modelValue:e.tabconfig.num,"onUpdate:modelValue":a[18]||(a[18]=o=>e.tabconfig.num=o),placeholder:"\u8BF7\u8F93\u5165\u6BCF\u6B21\u83B7\u53D6\u6570\u91CF"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u4EFB\u52A1\u8868\u8FBE\u5F0F"},{default:t(()=>[c("div",_e,[l(r,{modelValue:e.tabconfig.cronExpression,"onUpdate:modelValue":a[19]||(a[19]=o=>e.tabconfig.cronExpression=o),placeholder:"\u8BF7\u8F93\u5165cron\u4EFB\u52A1\u8868\u8FBE\u5F0F"},null,8,["modelValue"]),l(g,{type:"success",onClick:a[20]||(a[20]=o=>e.showCron("tabconfig")),style:{"margin-left":"5px"}},{default:t(()=>[ke]),_:1})])]),_:1})])):A("",!0)]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"]),l(w,{modelValue:e.dialogVisible,"onUpdate:modelValue":a[23]||(a[23]=o=>e.dialogVisible=o),title:"\u8FD4\u56DEJson\u6570\u636E",width:"30%"},{footer:t(()=>[c("span",Pe,[l(g,{onClick:a[22]||(a[22]=o=>e.dialogVisible=!1)},{default:t(()=>[Ae]),_:1})])]),default:t(()=>[l(L,{value:e.jsonData,boxed:"",sort:"",theme:"jv-dark",onClick:e.onKeyclick},null,8,["value","onClick"])]),_:1},8,["modelValue"]),l(w,{modelValue:e.cronShow,"onUpdate:modelValue":a[24]||(a[24]=o=>e.cronShow=o),title:"\u9009\u62E9Cron\u89C4\u5219",width:"60%"},{default:t(()=>[l(R,{onHandlelisten:e.handlelisten,type:e.crontype,onClose:e.cronclose},null,8,["onHandlelisten","type","onClose"])]),_:1},8,["modelValue"])])}var Re=J(x,[["render",Se]]);export{Re as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469513.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469513.js new file mode 100644 index 0000000..8a9df85 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469513.js @@ -0,0 +1 @@ +import{_ as y,b as i,E as b}from"./index.1701184304695.js";import{p as w}from"./validator.1701184304695.js";import{L as S,h as k,a2 as U,ab as L,a as _,_ as e,T as u,e as z,ai as s,o as V,b as B,Y as A,Z as g,X as $}from"./vue.1701184304695.js";const h={parentId:-1,deptName:"",organizationId:1,orderNum:0,leader:"",phone:"",email:"",status:1},q=S({name:"systemEditDept",setup(l,{emit:o}){const F=k(null),t=U({isShowDialog:!1,ruleForm:{...h},deptData:[],orgData:[],rules:{organizationId:[{required:!0,message:"\u7EC4\u7EC7\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],deptName:[{required:!0,message:"\u90E8\u95E8\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],leader:[{required:!0,message:"\u8D1F\u8D23\u4EBA\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],phone:[{validator:w,trigger:"blur"}],email:[{type:"email",message:"\u8BF7\u8F93\u5165\u6B63\u786E\u90AE\u7BB1",trigger:"blur"}]}}),E=r=>{n(),i.dept.getList({status:1}).then(m=>{t.deptData=m||[]}),i.org.getList({status:1}).then(m=>{t.orgData=m||[]}),r&&typeof r=="object"?t.ruleForm=r:r&&typeof r=="number"&&(t.ruleForm.parentId=r),t.isShowDialog=!0},p=()=>{t.isShowDialog=!1},f=()=>{p()},d=()=>{console.log(t.ruleForm.parentId);const r=z(F);!r||r.validate(m=>{m&&(console.log(t.ruleForm),console.log(t.ruleForm.parentId),t.ruleForm.parentId||(t.ruleForm.parentId=-1),console.log(t.ruleForm.parentId),t.ruleForm.deptId?i.dept.edit(t.ruleForm).then(()=>{b.success("\u4FEE\u6539\u6210\u529F"),p(),o("deptList")}):i.dept.add(t.ruleForm).then(()=>{b.success("\u6DFB\u52A0\u6210\u529F"),p(),o("deptList")}))})},n=()=>{t.ruleForm={...h}};return{openDialog:E,closeDialog:p,onCancel:f,onSubmit:d,formRef:F,...L(t)}}}),R={class:"system-edit-dept-container"},T={key:0},j={class:"dialog-footer"},x=A("\u53D6 \u6D88");function M(l,o,F,t,E,p){const f=s("el-cascader"),d=s("el-form-item"),n=s("el-col"),r=s("el-input"),m=s("el-input-number"),I=s("el-switch"),N=s("el-row"),v=s("el-form"),c=s("el-button"),C=s("el-dialog");return V(),_("div",R,[e(C,{title:(l.ruleForm.deptId?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u90E8\u95E8",modelValue:l.isShowDialog,"onUpdate:modelValue":o[7]||(o[7]=a=>l.isShowDialog=a),width:"769px"},{footer:u(()=>[B("span",j,[e(c,{onClick:l.onCancel,size:"default"},{default:u(()=>[x]),_:1},8,["onClick"]),e(c,{type:"primary",onClick:l.onSubmit,size:"default"},{default:u(()=>[A(g(l.ruleForm.deptId?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:u(()=>[e(v,{ref:"formRef",model:l.ruleForm,rules:l.rules,size:"default","label-width":"90px"},{default:u(()=>[e(N,{gutter:35},{default:u(()=>[e(n,{xs:24,sm:24,md:24,lg:24,xl:24},{default:u(()=>[e(d,{label:"\u4E0A\u7EA7\u90E8\u95E8"},{default:u(()=>[e(f,{options:l.deptData,props:{checkStrictly:!0,emitPath:!1,value:"deptId",label:"deptName"},placeholder:"\u8BF7\u9009\u62E9\u90E8\u95E8",clearable:"",class:"w100",modelValue:l.ruleForm.parentId,"onUpdate:modelValue":o[0]||(o[0]=a=>l.ruleForm.parentId=a)},{default:u(({node:a,data:D})=>[B("span",null,g(D.deptName),1),a.isLeaf?$("",!0):(V(),_("span",T," ("+g(D.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),e(n,{xs:24,sm:12,md:12,lg:12,xl:12},{default:u(()=>[e(d,{label:"\u90E8\u95E8\u540D\u79F0",prop:"deptName"},{default:u(()=>[e(r,{modelValue:l.ruleForm.deptName,"onUpdate:modelValue":o[1]||(o[1]=a=>l.ruleForm.deptName=a),placeholder:"\u8BF7\u8F93\u5165\u90E8\u95E8\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(n,{xs:24,sm:12,md:12,lg:12,xl:12},{default:u(()=>[e(d,{label:"\u8D1F\u8D23\u4EBA",prop:"leader"},{default:u(()=>[e(r,{modelValue:l.ruleForm.leader,"onUpdate:modelValue":o[2]||(o[2]=a=>l.ruleForm.leader=a),placeholder:"\u8BF7\u8F93\u5165\u8D1F\u8D23\u4EBA",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(n,{xs:24,sm:12,md:12,lg:12,xl:12},{default:u(()=>[e(d,{label:"\u624B\u673A\u53F7",prop:"phone"},{default:u(()=>[e(r,{modelValue:l.ruleForm.phone,"onUpdate:modelValue":o[3]||(o[3]=a=>l.ruleForm.phone=a),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(n,{xs:24,sm:12,md:12,lg:12,xl:12},{default:u(()=>[e(d,{label:"\u90AE\u7BB1",prop:"email"},{default:u(()=>[e(r,{modelValue:l.ruleForm.email,"onUpdate:modelValue":o[4]||(o[4]=a=>l.ruleForm.email=a),placeholder:"\u8BF7\u8F93\u5165",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(n,{xs:24,sm:12,md:12,lg:12,xl:12},{default:u(()=>[e(d,{label:"\u6392\u5E8F"},{default:u(()=>[e(m,{modelValue:l.ruleForm.orderNum,"onUpdate:modelValue":o[5]||(o[5]=a=>l.ruleForm.orderNum=a),min:0,max:999,"controls-position":"right",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F",class:"w100"},null,8,["modelValue"])]),_:1})]),_:1}),e(n,{xs:24,sm:12,md:12,lg:12,xl:12},{default:u(()=>[e(d,{label:"\u90E8\u95E8\u72B6\u6001"},{default:u(()=>[e(I,{modelValue:l.ruleForm.status,"onUpdate:modelValue":o[6]||(o[6]=a=>l.ruleForm.status=a),"active-value":1,"inactive-value":0,"inline-prompt":"","active-text":"\u542F","inactive-text":"\u7981"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var Y=y(q,[["render",M]]);export{Y as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469514.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469514.js new file mode 100644 index 0000000..f8b7024 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469514.js @@ -0,0 +1 @@ +import{_ as N,b as F,E as B}from"./index.1701184304695.js";import{p as U}from"./validator.1701184304695.js";import{L as I,h as A,a2 as $,ab as z,a as b,_ as e,T as u,e as R,ai as s,o as f,b as h,Y as C,Z as _,X as q,F as T,a8 as j,S as M}from"./vue.1701184304695.js";const v={parentId:-1,name:"",orderNum:0,leader:"",phone:"",email:"",status:1},P=I({name:"systemEditDept",setup(l,{emit:a}){const c=A(null),g=A([]),t=$({isShowDialog:!1,ruleForm:{...v},deptData:[],rules:{name:[{required:!0,message:"\u7EC4\u7EC7\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],leader:[{required:!0,message:"\u8D1F\u8D23\u4EBA\u4E0D\u80FD\u4E3A\u7A7A",trigger:"change"}],phone:[{validator:U,trigger:"blur"}],email:[{type:"email",message:"\u8BF7\u8F93\u5165\u6B63\u786E\u90AE\u7BB1",trigger:"blur"}]}});F.user.getAllList({}).then(r=>{g.value=r});const D=r=>{i(),F.org.getList({status:1}).then(p=>{t.deptData=p||[]}),r&&typeof r=="object"?t.ruleForm=r:r&&typeof r=="number"&&(t.ruleForm.parentId=r),t.isShowDialog=!0},d=()=>{t.isShowDialog=!1},n=()=>{d()},m=()=>{const r=R(c);!r||r.validate(p=>{p&&(t.ruleForm.parentId||(t.ruleForm.parentId=-1),t.ruleForm.id?F.org.edit(t.ruleForm).then(()=>{B.success("\u4FEE\u6539\u6210\u529F"),d(),a("deptList")}):F.org.add(t.ruleForm).then(()=>{B.success("\u6DFB\u52A0\u6210\u529F"),d(),a("deptList")}))})},i=()=>{t.ruleForm={...v}};return{openDialog:D,userList:g,closeDialog:d,onCancel:n,onSubmit:m,formRef:c,...z(t)}}}),W={class:"system-edit-dept-container"},X={key:0},Y={class:"dialog-footer"},Z=C("\u53D6 \u6D88");function x(l,a,c,g,t,D){const d=s("el-cascader"),n=s("el-form-item"),m=s("el-col"),i=s("el-input"),r=s("el-option"),p=s("el-select"),k=s("el-input-number"),y=s("el-switch"),S=s("el-row"),w=s("el-form"),E=s("el-button"),L=s("el-dialog");return f(),b("div",W,[e(L,{title:(l.ruleForm.id?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u533A\u57DF",modelValue:l.isShowDialog,"onUpdate:modelValue":a[7]||(a[7]=o=>l.isShowDialog=o),width:"769px"},{footer:u(()=>[h("span",Y,[e(E,{onClick:l.onCancel,size:"default"},{default:u(()=>[Z]),_:1},8,["onClick"]),e(E,{type:"primary",onClick:l.onSubmit,size:"default"},{default:u(()=>[C(_(l.ruleForm.id?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:u(()=>[e(w,{ref:"formRef",model:l.ruleForm,rules:l.rules,size:"default","label-width":"90px"},{default:u(()=>[e(S,{gutter:35},{default:u(()=>[e(m,{xs:24,sm:24,md:24,lg:24,xl:24,class:"mb20"},{default:u(()=>[e(n,{label:"\u4E0A\u7EA7\u533A\u57DF"},{default:u(()=>[e(d,{options:l.deptData,props:{checkStrictly:!0,emitPath:!1,value:"id",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u533A\u57DF",clearable:"",class:"w100",modelValue:l.ruleForm.parentId,"onUpdate:modelValue":a[0]||(a[0]=o=>l.ruleForm.parentId=o)},{default:u(({node:o,data:V})=>[h("span",null,_(V.name),1),o.isLeaf?q("",!0):(f(),b("span",X," ("+_(V.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),e(m,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(n,{label:"\u533A\u57DF\u540D\u79F0",prop:"name"},{default:u(()=>[e(i,{modelValue:l.ruleForm.name,"onUpdate:modelValue":a[1]||(a[1]=o=>l.ruleForm.name=o),placeholder:"\u8BF7\u8F93\u5165\u533A\u57DF\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(n,{label:"\u8D1F\u8D23\u4EBA",prop:"leader"},{default:u(()=>[e(p,{modelValue:l.ruleForm.leader,"onUpdate:modelValue":a[2]||(a[2]=o=>l.ruleForm.leader=o),placeholder:"\u8BF7\u8F93\u5165\u8D1F\u8D23\u4EBA",filterable:"",clearable:""},{default:u(()=>[(f(!0),b(T,null,j(l.userList,o=>(f(),M(r,{value:o.userNickname,label:o.userNickname,key:o.id},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(n,{label:"\u624B\u673A\u53F7",prop:"phone"},{default:u(()=>[e(i,{modelValue:l.ruleForm.phone,"onUpdate:modelValue":a[3]||(a[3]=o=>l.ruleForm.phone=o),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(n,{label:"\u90AE\u7BB1",prop:"email"},{default:u(()=>[e(i,{modelValue:l.ruleForm.email,"onUpdate:modelValue":a[4]||(a[4]=o=>l.ruleForm.email=o),placeholder:"\u8BF7\u8F93\u5165",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(n,{label:"\u6392\u5E8F"},{default:u(()=>[e(k,{modelValue:l.ruleForm.orderNum,"onUpdate:modelValue":a[5]||(a[5]=o=>l.ruleForm.orderNum=o),min:0,max:999,"controls-position":"right",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F",class:"w100"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(n,{label:"\u7EC4\u7EC7\u72B6\u6001"},{default:u(()=>[e(y,{modelValue:l.ruleForm.status,"onUpdate:modelValue":a[6]||(a[6]=o=>l.ruleForm.status=o),"active-value":1,"inactive-value":0,"inline-prompt":"","active-text":"\u542F","inactive-text":"\u7981"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var K=N(P,[["render",x]]);export{K as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469515.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469515.js new file mode 100644 index 0000000..ce0e362 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469515.js @@ -0,0 +1 @@ +import{L as N,h as p,a2 as O,i as P,S as k,T as t,n as R,ai as o,o as r,b as j,_ as a,a as A,F as b,a8 as $,aa as q,Y as E}from"./vue.1701184304695.js";import{b as _,E as M}from"./index.1701184304695.js";import{r as m}from"./validator.1701184304695.js";import{a as Y}from"./index.17011843046957.js";const z=E("\u63A5\u53E3"),G=E("\u5206\u7C7B"),H={class:"dialog-footer"},J=E("\u53D6\u6D88"),Q=E("\u786E\u5B9A"),ae=N({__name:"edit",emits:["getList"],setup(W,{expose:C,emit:I}){const d=p(!1),i=p(),F=p([]),v=p([]),c=p([]),B={menuIds:[],id:void 0,parentId:void 0,name:"",types:2,address:"",method:"",remark:"",status:1},e=O({...B});P(()=>e.types,()=>{e.parentId=void 0});const w={parentId:[m("\u4E0A\u7EA7\u5206\u7C7B\u4E0D\u80FD\u4E3A\u7A7A","change")],menuIds:[m("\u5173\u8054\u9875\u9762\u4E0D\u80FD\u4E3A\u7A7A","change")],method:[m("\u8BF7\u6C42\u65B9\u5F0F\u4E0D\u80FD\u4E3A\u7A7A","change")],name:[m("\u63A5\u53E3\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A")],address:[m("\u63A5\u53E3\u5730\u5740\u4E0D\u80FD\u4E3A\u7A7A")]};Y.template.getDictData({DictType:"api_methods"}).then(n=>{c.value=n.values}),_.menu.getList({status:-1}).then(n=>{F.value=n});const y=async()=>{await i.value.validate(),await(e.id?_.api.edit:_.api.add)(e),M.success("\u64CD\u4F5C\u6210\u529F"),D(),d.value=!1,I("getList")},D=async()=>{Object.assign(e,{...B}),i.value&&i.value.resetFields()};return C({open:async n=>{D(),d.value=!0,_.api.getList({types:1,status:-1}).then(u=>{v.value=u.Info}),R(()=>{Object.assign(e,{method:c.value.length?c.value[0].value:"",...n})})}}),(n,u)=>{const h=o("el-radio-button"),U=o("el-radio-group"),s=o("el-form-item"),V=o("el-cascader"),f=o("el-input"),x=o("el-option"),L=o("el-select"),S=o("el-switch"),T=o("el-form"),g=o("el-button"),K=o("el-dialog");return r(),k(K,{class:"api-edit",modelValue:d.value,"onUpdate:modelValue":u[11]||(u[11]=l=>d.value=l),title:`${e.id?"\u7F16\u8F91\u63A5\u53E3":"\u65B0\u589E\u63A5\u53E3"}`,width:"600px","close-on-click-modal":!1,"close-on-press-escape":!1},{footer:t(()=>[j("div",H,[a(g,{onClick:u[10]||(u[10]=l=>d.value=!1)},{default:t(()=>[J]),_:1}),a(g,{type:"primary",onClick:y},{default:t(()=>[Q]),_:1})])]),default:t(()=>[a(T,{ref_key:"formRef",ref:i,model:e,rules:w,"label-width":"80px",onKeyup:q(y,["enter"])},{default:t(()=>[a(s,{label:"\u9009\u62E9\u7C7B\u578B",prop:"types"},{default:t(()=>[a(U,{modelValue:e.types,"onUpdate:modelValue":u[0]||(u[0]=l=>e.types=l)},{default:t(()=>[a(h,{label:2},{default:t(()=>[z]),_:1}),a(h,{label:1},{default:t(()=>[G]),_:1})]),_:1},8,["modelValue"])]),_:1}),e.types===1?(r(),A(b,{key:0},[a(s,{label:"\u4E0A\u7EA7\u5206\u7C7B",prop:"parentId"},{default:t(()=>[a(V,{options:[{id:-1,name:"\u6839\u8282\u70B9",children:v.value}],props:{checkStrictly:!0,multiple:!1,emitPath:!1,value:"id",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u9875\u9762",clearable:"",class:"w100",modelValue:e.parentId,"onUpdate:modelValue":u[1]||(u[1]=l=>e.parentId=l)},null,8,["options","modelValue"])]),_:1}),a(s,{label:"\u5206\u7C7B\u540D\u79F0",prop:"name"},{default:t(()=>[a(f,{modelValue:e.name,"onUpdate:modelValue":u[2]||(u[2]=l=>e.name=l),placeholder:"\u8F93\u5165\u63A5\u53E3\u540D\u79F0"},null,8,["modelValue"])]),_:1})],64)):(r(),A(b,{key:1},[a(s,{label:"\u4E0A\u7EA7\u5206\u7C7B",prop:"parentId"},{default:t(()=>[a(V,{options:v.value,props:{checkStrictly:!0,multiple:!1,emitPath:!1,value:"id",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u9875\u9762",clearable:"",class:"w100",modelValue:e.parentId,"onUpdate:modelValue":u[3]||(u[3]=l=>e.parentId=l)},null,8,["options","modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u9875\u9762",prop:"menuIds"},{default:t(()=>[a(V,{options:F.value,props:{checkStrictly:!1,multiple:!0,emitPath:!1,value:"id",label:"title"},placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u9875\u9762",clearable:"",class:"w100",modelValue:e.menuIds,"onUpdate:modelValue":u[4]||(u[4]=l=>e.menuIds=l)},null,8,["options","modelValue"])]),_:1}),a(s,{label:"\u63A5\u53E3\u540D\u79F0",prop:"name"},{default:t(()=>[a(f,{modelValue:e.name,"onUpdate:modelValue":u[5]||(u[5]=l=>e.name=l),placeholder:"\u8F93\u5165\u63A5\u53E3\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(s,{label:"\u63A5\u53E3\u5730\u5740",prop:"address"},{default:t(()=>[a(f,{modelValue:e.address,"onUpdate:modelValue":u[6]||(u[6]=l=>e.address=l),placeholder:"\u63A5\u53E3\u5730\u5740"},null,8,["modelValue"])]),_:1}),a(s,{label:"\u8BBF\u95EE\u7C7B\u578B",prop:"method"},{default:t(()=>[a(L,{modelValue:e.method,"onUpdate:modelValue":u[7]||(u[7]=l=>e.method=l),placeholder:"\u8BF7\u9009\u62E9\u8BBF\u95EE\u7C7B\u578B"},{default:t(()=>[(r(!0),A(b,null,$(c.value,l=>(r(),k(x,{key:l.value,label:l.key,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u72B6\u6001",prop:"status"},{default:t(()=>[a(S,{modelValue:e.status,"onUpdate:modelValue":u[8]||(u[8]=l=>e.status=l),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})],64)),a(s,{label:"\u5907\u6CE8",prop:"remark"},{default:t(()=>[a(f,{modelValue:e.remark,"onUpdate:modelValue":u[9]||(u[9]=l=>e.remark=l),type:"textarea",rows:3},null,8,["modelValue"])]),_:1})]),_:1},8,["model","onKeyup"])]),_:1},8,["modelValue","title"])}}});export{ae as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469516.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469516.js new file mode 100644 index 0000000..6f1c9fd --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.170118430469516.js @@ -0,0 +1 @@ +import{L as y,h as D,a2 as B,S as A,T as a,n as k,ai as r,o as C,b as w,_ as o,X as T,aa as x,Y as v}from"./vue.1701184304695.js";import{b as N,E as h}from"./index.1701184304695.js";import{r as d}from"./validator.1701184304695.js";import{u as K}from"./index.170118430469522.js";const L={class:"dialog-footer"},R=v("\u53D6\u6D88"),S=v("\u786E\u5B9A"),Y=y({__name:"edit",emits:["getList"],setup(j,{expose:b,emit:U}){const s=D(!1),p=D(),i={id:"",types:"",handleType:"",name:"",title:"",description:"",version:"",author:"",icon:"",link:"",command:"",args:[],frontendUi:0,frontendUrl:"",frontendConfiguration:""},u=B({...i}),g={types:[d("\u901A\u4FE1\u65B9\u5F0F\u4E0D\u80FD\u4E3A\u7A7A")],handleType:[d("\u529F\u80FD\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A")],name:[d("\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A")],title:[d("\u6807\u9898\u4E0D\u80FD\u4E3A\u7A7A")],version:[d("\u7248\u672C\u4E0D\u80FD\u4E3A\u7A7A")],author:[d("\u4F5C\u8005\u4E0D\u80FD\u4E3A\u7A7A")],icon:[d("\u63D2\u4EF6\u56FE\u6807\u4E0D\u80FD\u4E3A\u7A7A")],command:[d("\u8FD0\u884C\u6307\u4EE4\u4E0D\u80FD\u4E3A\u7A7A")],args:[d("\u6307\u4EE4\u53C2\u6570\u4E0D\u80FD\u4E3A\u7A7A")]},m=async()=>{await p.value.validate(),await N.plugin.edit(u),h.success("\u64CD\u4F5C\u6210\u529F"),F(),s.value=!1,U("getList")},F=async()=>{Object.assign(u,{...i}),p.value&&p.value.resetFields()};return b({open:async f=>{F(),s.value=!0,k(()=>{Object.assign(u,f)})}}),(f,e)=>{const n=r("el-input"),t=r("el-form-item"),E=r("el-switch"),_=r("el-form"),V=r("el-button"),c=r("el-dialog");return C(),A(c,{class:"api-edit",modelValue:s.value,"onUpdate:modelValue":e[15]||(e[15]=l=>s.value=l),title:"\u7F16\u8F91\u63D2\u4EF6\u5185\u5BB9",width:"600px","close-on-click-modal":!1,"close-on-press-escape":!1},{footer:a(()=>[w("div",L,[o(V,{onClick:e[14]||(e[14]=l=>s.value=!1)},{default:a(()=>[R]),_:1}),o(V,{type:"primary",onClick:m},{default:a(()=>[S]),_:1})])]),default:a(()=>[o(_,{ref_key:"formRef",ref:p,model:u,rules:g,"label-width":"110px",onKeyup:x(m,["enter"])},{default:a(()=>[o(t,{label:"\u901A\u4FE1\u65B9\u5F0F",prop:"types"},{default:a(()=>[o(n,{modelValue:u.types,"onUpdate:modelValue":e[0]||(e[0]=l=>u.types=l),placeholder:"\u8F93\u5165\u63A5\u53E3\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u529F\u80FD\u7C7B\u578B",prop:"handleType"},{default:a(()=>[o(n,{modelValue:u.handleType,"onUpdate:modelValue":e[1]||(e[1]=l=>u.handleType=l),placeholder:"\u8F93\u5165\u529F\u80FD\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u540D\u79F0",prop:"name"},{default:a(()=>[o(n,{modelValue:u.name,"onUpdate:modelValue":e[2]||(e[2]=l=>u.name=l),placeholder:"\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u6807\u9898",prop:"title"},{default:a(()=>[o(n,{modelValue:u.title,"onUpdate:modelValue":e[3]||(e[3]=l=>u.title=l),placeholder:"\u8F93\u5165\u6807\u9898"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u8BF4\u660E",prop:"description"},{default:a(()=>[o(n,{modelValue:u.description,"onUpdate:modelValue":e[4]||(e[4]=l=>u.description=l),placeholder:"\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u7248\u672C",prop:"version"},{default:a(()=>[o(n,{modelValue:u.version,"onUpdate:modelValue":e[5]||(e[5]=l=>u.version=l),placeholder:"\u8F93\u5165\u7248\u672C"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u4F5C\u8005",prop:"author"},{default:a(()=>[o(n,{modelValue:u.author,"onUpdate:modelValue":e[6]||(e[6]=l=>u.author=l),placeholder:"\u8F93\u5165\u4F5C\u8005"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u63D2\u4EF6\u56FE\u6807",prop:"icon"},{default:a(()=>[o(K,{"width-host":!1,img:u.icon,onSetImg:e[7]||(e[7]=l=>u.icon=l)},null,8,["img"])]),_:1}),o(t,{label:"\u63D2\u4EF6\u7F51\u5740",prop:"link"},{default:a(()=>[o(n,{modelValue:u.link,"onUpdate:modelValue":e[8]||(e[8]=l=>u.link=l),placeholder:"\u8F93\u5165\u63D2\u4EF6\u7F51\u5740"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u8FD0\u884C\u6307\u4EE4",prop:"command"},{default:a(()=>[o(n,{modelValue:u.command,"onUpdate:modelValue":e[9]||(e[9]=l=>u.command=l),placeholder:"\u8F93\u5165\u8FD0\u884C\u6307\u4EE4"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u6307\u4EE4\u53C2\u6570",prop:"args"},{default:a(()=>[o(n,{modelValue:u.args,"onUpdate:modelValue":e[10]||(e[10]=l=>u.args=l),placeholder:"\u8F93\u5165\u6307\u4EE4\u53C2\u6570"},null,8,["modelValue"])]),_:1}),o(t,{label:"\u6709\u65E0\u63D2\u4EF6\u9875\u9762",prop:"frontendUi"},{default:a(()=>[o(E,{modelValue:u.frontendUi,"onUpdate:modelValue":e[11]||(e[11]=l=>u.frontendUi=l),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1}),u.frontendUi?(C(),A(t,{key:0,label:"\u63D2\u4EF6\u9875\u9762\u5730\u5740",prop:"frontendUrl"},{default:a(()=>[o(n,{modelValue:u.frontendUrl,"onUpdate:modelValue":e[12]||(e[12]=l=>u.frontendUrl=l),placeholder:"\u8F93\u5165\u63D2\u4EF6\u9875\u9762\u5730\u5740"},null,8,["modelValue"])]),_:1})):T("",!0),o(t,{label:"\u663E\u793A\u914D\u7F6E\u9875\u9762",prop:"frontendConfiguration"},{default:a(()=>[o(E,{modelValue:u.frontendConfiguration,"onUpdate:modelValue":e[13]||(e[13]=l=>u.frontendConfiguration=l),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model","onKeyup"])]),_:1},8,["modelValue"])}}});export{Y as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046952.css b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046952.css new file mode 100644 index 0000000..2ba772a --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046952.css @@ -0,0 +1 @@ +.tags-wrapper .tag[data-v-b0b4db42]{margin:8px 0}.tags-wrapper .tags .el-button[data-v-b0b4db42]{margin-left:10px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046952.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046952.js new file mode 100644 index 0000000..ce0e362 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046952.js @@ -0,0 +1 @@ +import{L as N,h as p,a2 as O,i as P,S as k,T as t,n as R,ai as o,o as r,b as j,_ as a,a as A,F as b,a8 as $,aa as q,Y as E}from"./vue.1701184304695.js";import{b as _,E as M}from"./index.1701184304695.js";import{r as m}from"./validator.1701184304695.js";import{a as Y}from"./index.17011843046957.js";const z=E("\u63A5\u53E3"),G=E("\u5206\u7C7B"),H={class:"dialog-footer"},J=E("\u53D6\u6D88"),Q=E("\u786E\u5B9A"),ae=N({__name:"edit",emits:["getList"],setup(W,{expose:C,emit:I}){const d=p(!1),i=p(),F=p([]),v=p([]),c=p([]),B={menuIds:[],id:void 0,parentId:void 0,name:"",types:2,address:"",method:"",remark:"",status:1},e=O({...B});P(()=>e.types,()=>{e.parentId=void 0});const w={parentId:[m("\u4E0A\u7EA7\u5206\u7C7B\u4E0D\u80FD\u4E3A\u7A7A","change")],menuIds:[m("\u5173\u8054\u9875\u9762\u4E0D\u80FD\u4E3A\u7A7A","change")],method:[m("\u8BF7\u6C42\u65B9\u5F0F\u4E0D\u80FD\u4E3A\u7A7A","change")],name:[m("\u63A5\u53E3\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A")],address:[m("\u63A5\u53E3\u5730\u5740\u4E0D\u80FD\u4E3A\u7A7A")]};Y.template.getDictData({DictType:"api_methods"}).then(n=>{c.value=n.values}),_.menu.getList({status:-1}).then(n=>{F.value=n});const y=async()=>{await i.value.validate(),await(e.id?_.api.edit:_.api.add)(e),M.success("\u64CD\u4F5C\u6210\u529F"),D(),d.value=!1,I("getList")},D=async()=>{Object.assign(e,{...B}),i.value&&i.value.resetFields()};return C({open:async n=>{D(),d.value=!0,_.api.getList({types:1,status:-1}).then(u=>{v.value=u.Info}),R(()=>{Object.assign(e,{method:c.value.length?c.value[0].value:"",...n})})}}),(n,u)=>{const h=o("el-radio-button"),U=o("el-radio-group"),s=o("el-form-item"),V=o("el-cascader"),f=o("el-input"),x=o("el-option"),L=o("el-select"),S=o("el-switch"),T=o("el-form"),g=o("el-button"),K=o("el-dialog");return r(),k(K,{class:"api-edit",modelValue:d.value,"onUpdate:modelValue":u[11]||(u[11]=l=>d.value=l),title:`${e.id?"\u7F16\u8F91\u63A5\u53E3":"\u65B0\u589E\u63A5\u53E3"}`,width:"600px","close-on-click-modal":!1,"close-on-press-escape":!1},{footer:t(()=>[j("div",H,[a(g,{onClick:u[10]||(u[10]=l=>d.value=!1)},{default:t(()=>[J]),_:1}),a(g,{type:"primary",onClick:y},{default:t(()=>[Q]),_:1})])]),default:t(()=>[a(T,{ref_key:"formRef",ref:i,model:e,rules:w,"label-width":"80px",onKeyup:q(y,["enter"])},{default:t(()=>[a(s,{label:"\u9009\u62E9\u7C7B\u578B",prop:"types"},{default:t(()=>[a(U,{modelValue:e.types,"onUpdate:modelValue":u[0]||(u[0]=l=>e.types=l)},{default:t(()=>[a(h,{label:2},{default:t(()=>[z]),_:1}),a(h,{label:1},{default:t(()=>[G]),_:1})]),_:1},8,["modelValue"])]),_:1}),e.types===1?(r(),A(b,{key:0},[a(s,{label:"\u4E0A\u7EA7\u5206\u7C7B",prop:"parentId"},{default:t(()=>[a(V,{options:[{id:-1,name:"\u6839\u8282\u70B9",children:v.value}],props:{checkStrictly:!0,multiple:!1,emitPath:!1,value:"id",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u9875\u9762",clearable:"",class:"w100",modelValue:e.parentId,"onUpdate:modelValue":u[1]||(u[1]=l=>e.parentId=l)},null,8,["options","modelValue"])]),_:1}),a(s,{label:"\u5206\u7C7B\u540D\u79F0",prop:"name"},{default:t(()=>[a(f,{modelValue:e.name,"onUpdate:modelValue":u[2]||(u[2]=l=>e.name=l),placeholder:"\u8F93\u5165\u63A5\u53E3\u540D\u79F0"},null,8,["modelValue"])]),_:1})],64)):(r(),A(b,{key:1},[a(s,{label:"\u4E0A\u7EA7\u5206\u7C7B",prop:"parentId"},{default:t(()=>[a(V,{options:v.value,props:{checkStrictly:!0,multiple:!1,emitPath:!1,value:"id",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u9875\u9762",clearable:"",class:"w100",modelValue:e.parentId,"onUpdate:modelValue":u[3]||(u[3]=l=>e.parentId=l)},null,8,["options","modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u9875\u9762",prop:"menuIds"},{default:t(()=>[a(V,{options:F.value,props:{checkStrictly:!1,multiple:!0,emitPath:!1,value:"id",label:"title"},placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u9875\u9762",clearable:"",class:"w100",modelValue:e.menuIds,"onUpdate:modelValue":u[4]||(u[4]=l=>e.menuIds=l)},null,8,["options","modelValue"])]),_:1}),a(s,{label:"\u63A5\u53E3\u540D\u79F0",prop:"name"},{default:t(()=>[a(f,{modelValue:e.name,"onUpdate:modelValue":u[5]||(u[5]=l=>e.name=l),placeholder:"\u8F93\u5165\u63A5\u53E3\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(s,{label:"\u63A5\u53E3\u5730\u5740",prop:"address"},{default:t(()=>[a(f,{modelValue:e.address,"onUpdate:modelValue":u[6]||(u[6]=l=>e.address=l),placeholder:"\u63A5\u53E3\u5730\u5740"},null,8,["modelValue"])]),_:1}),a(s,{label:"\u8BBF\u95EE\u7C7B\u578B",prop:"method"},{default:t(()=>[a(L,{modelValue:e.method,"onUpdate:modelValue":u[7]||(u[7]=l=>e.method=l),placeholder:"\u8BF7\u9009\u62E9\u8BBF\u95EE\u7C7B\u578B"},{default:t(()=>[(r(!0),A(b,null,$(c.value,l=>(r(),k(x,{key:l.value,label:l.key,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u72B6\u6001",prop:"status"},{default:t(()=>[a(S,{modelValue:e.status,"onUpdate:modelValue":u[8]||(u[8]=l=>e.status=l),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})],64)),a(s,{label:"\u5907\u6CE8",prop:"remark"},{default:t(()=>[a(f,{modelValue:e.remark,"onUpdate:modelValue":u[9]||(u[9]=l=>e.remark=l),type:"textarea",rows:3},null,8,["modelValue"])]),_:1})]),_:1},8,["model","onKeyup"])]),_:1},8,["modelValue","title"])}}});export{ae as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046953.css b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046953.css new file mode 100644 index 0000000..b4bdd01 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046953.css @@ -0,0 +1 @@ +.inline{display:inline-flex}.el-input__wrapper{width:98%}.box-content{border:1px solid #e8e8e8;margin:10px;padding:10px}.content-f{display:flex;margin-bottom:10px}.content-f .el-input__wrapper{margin-right:5px}.addbutton{width:100%;margin-top:10px;background:#fff;border:1px solid #d1d1d1;color:#8d8b8b}.conicon{width:55px;height:25px;font-size:28px;line-height:28px;cursor:pointer}.jv-node{margin-left:25px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046953.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046953.js new file mode 100644 index 0000000..4a4fb35 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046953.js @@ -0,0 +1 @@ +import{_ as D,u as C,b as E,E as g}from"./index.1701184304695.js";import{a as y}from"./index.17011843046957.js";import{L as h,h as A,a2 as L,ab as k,a as B,_ as t,T as r,e as I,ai as d,o as v,b as U,Y as p,Z as q}from"./vue.1701184304695.js";const w=h({name:"headStationLoop",setup(e,{emit:u}){const F=A(null),o=L({dialogVisible:!1,map:null,ruleForm:{id:0,parentId:"",name:"",code:"",sort:0,status:1},keyword:"",rules:{name:[{required:!0,message:"\u57CE\u5E02\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],code:[{required:!0,message:"\u57CE\u5E02\u7F16\u7801\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],status:[{required:!0,message:"\u72B6\u6001\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]},treeData:[],dataHubList:[],mapLocal:null});C();const b=(a,l)=>{f(),_(),o.treeData=l,a&&(o.ruleForm.id=a.id,m()),o.dialogVisible=!0},_=()=>{y.template.allList({}).then(a=>{o.dataHubList=a.list||[]})},f=()=>{o.ruleForm={id:0,parentId:"",name:"",code:"",sort:0}},s=()=>{o.dialogVisible=!1},n=()=>{s(),o.keyword=""},m=()=>{E.city.detail(o.ruleForm.id).then(a=>{o.ruleForm={...a,parentId:a.parentId===-1?"":a.parentId}})};return{openDialog:b,closeDialog:s,onCancel:n,onSubmit:()=>{const a=I(F);!a||a.validate(l=>{if(l){let i={...o.ruleForm};i.parentId=i.parentId||-1,o.ruleForm.id?E.city.edit(i).then(()=>{g.success("\u57CE\u5E02\u4FEE\u6539\u6210\u529F"),u("queryList"),s()}):(console.log(i),E.city.add(i).then(()=>{g.success("\u57CE\u5E02\u6DFB\u52A0\u6210\u529F"),u("queryList"),s()}))}})},formRef:F,onLocalChange:()=>{o.mapLocal.search(o.keyword)},...k(o)}}}),S={class:"system-edit-dic-container"},$=p("\u542F\u7528"),z=p("\u7981\u7528"),H={class:"dialog-footer"},N=p("\u53D6 \u6D88");function R(e,u,F,o,b,_){const f=d("el-tree-select"),s=d("el-form-item"),n=d("el-input"),m=d("el-radio"),V=d("el-form"),c=d("el-button"),a=d("el-dialog");return v(),B("div",S,[t(a,{title:(e.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u57CE\u5E02",modelValue:e.dialogVisible,"onUpdate:modelValue":u[6]||(u[6]=l=>e.dialogVisible=l),width:"769px"},{footer:r(()=>[U("span",H,[t(c,{onClick:e.onCancel,size:"default"},{default:r(()=>[N]),_:1},8,["onClick"]),t(c,{type:"primary",onClick:e.onSubmit,size:"default"},{default:r(()=>[p(q(e.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:r(()=>[t(V,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"110px"},{default:r(()=>[t(s,{label:"\u6240\u5C5E\u57CE\u5E02",prop:""},{default:r(()=>[t(f,{modelValue:e.ruleForm.parentId,"onUpdate:modelValue":u[0]||(u[0]=l=>e.ruleForm.parentId=l),data:e.treeData,props:{label:"name",children:"children"},"node-key":"id",clearable:!0,"check-strictly":"",style:{width:"100%"},"render-after-expand":!0},null,8,["modelValue","data"])]),_:1}),t(s,{label:"\u57CE\u5E02\u540D\u79F0",prop:"name"},{default:r(()=>[t(n,{modelValue:e.ruleForm.name,"onUpdate:modelValue":u[1]||(u[1]=l=>e.ruleForm.name=l),placeholder:"\u8BF7\u8F93\u5165\u57CE\u5E02\u540D\u79F0"},null,8,["modelValue"])]),_:1}),t(s,{label:"\u57CE\u5E02\u7F16\u53F7",prop:"code"},{default:r(()=>[t(n,{modelValue:e.ruleForm.code,"onUpdate:modelValue":u[2]||(u[2]=l=>e.ruleForm.code=l),placeholder:"\u8BF7\u8F93\u5165\u57CE\u5E02\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(s,{label:"\u6392\u5E8F",prop:"code"},{default:r(()=>[t(n,{modelValue:e.ruleForm.sort,"onUpdate:modelValue":u[3]||(u[3]=l=>e.ruleForm.sort=l),modelModifiers:{number:!0},placeholder:"\u8BF7\u8F93\u5165\u5E8F\u53F7"},null,8,["modelValue"])]),_:1}),t(s,{label:"\u72B6\u6001",prop:"status"},{default:r(()=>[t(m,{modelValue:e.ruleForm.status,"onUpdate:modelValue":u[4]||(u[4]=l=>e.ruleForm.status=l),label:1},{default:r(()=>[$]),_:1},8,["modelValue"]),t(m,{modelValue:e.ruleForm.status,"onUpdate:modelValue":u[5]||(u[5]=l=>e.ruleForm.status=l),label:0},{default:r(()=>[z]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var Y=D(w,[["render",R],["__scopeId","data-v-107ff06a"]]);export{Y as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046954.css b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046954.css new file mode 100644 index 0000000..3fca08d --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046954.css @@ -0,0 +1 @@ +.el-textarea__inner{min-height:420px!important}.inline{display:inline-flex}.el-input__wrapper{width:98%}.box-content{border:1px solid #e8e8e8;margin:10px;padding:10px}.content-f{display:flex;margin-bottom:10px}.content-f .el-input__wrapper{margin-right:5px}.addbutton{width:100%;margin-top:10px;background:#fff;border:1px solid #d1d1d1;color:#8d8b8b}.conicon{width:55px;height:25px;font-size:28px;line-height:28px;cursor:pointer}.jv-node{margin-left:25px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046954.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046954.js new file mode 100644 index 0000000..bccf31a --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046954.js @@ -0,0 +1 @@ +import{a as Z}from"./index.17011843046957.js";import{a as H}from"./index.170118430469519.js";import{a as A}from"./index.17011843046958.js";import{a as L}from"./index.170118430469520.js";import{_ as J,t as Q,v as x,w as ee,x as te,y as oe,z as le,A as ae,B as ue,C as ne,E as X}from"./index.1701184304695.js";import{L as re,h as Y,a2 as de,i as se,ab as ie,a as p,_ as o,T as a,j as pe,e as ce,ai as g,o as n,b as y,Y as E,Z as w,F as v,a8 as _,S as h,X as T}from"./vue.1701184304695.js";const me=re({name:"Edit",components:{Delete:Q,Plus:x,CircleClose:ee,Minus:te,Right:oe,Top:le,Bottom:ae,CirclePlus:ue,Remove:ne},setup(l,{emit:s}){const M=Y(null),R=Y(null),{proxy:j}=pe(),{notice_send_gateway:W}=j.useDict("notice_send_gateway"),e=de({id:0,isShowDialog:!1,sourceData:[],tempData:[],productData:[],typeData:[],triData:[],operData:[],levelData:[],sendGatewayData:[],noticeConfigData:[],eventList:[],action:[{sendGateway:"",noticeConfig:"",noticeTemplate:"",addressee:[{phone:""}]}],requestParams:[{andOr:"",filters:[{key:"",operator:"",value:"",andOr:0}]}],ruleForm:{id:0,name:"",triggerType:1,eventKey:"",level:"",productKey:"",deviceKey:"",action:[{sendGateway:"",noticeConfig:"",noticeTemplate:"",addressee:{}}],triggerCondition:[{andOr:"",filters:[{key:"",operator:"",value:"",andOr:0}]}]},rules:{name:[{required:!0,message:"\u544A\u8B66\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],level:[{required:!0,message:"\u544A\u8B66\u7EA7\u522B\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],productKey:[{required:!0,message:"\u8BF7\u9009\u62E9\u4EA7\u54C1",trigger:"blur"}],deviceKey:[{required:!0,message:"\u8BF7\u9009\u62E9\u8BBE\u5907",trigger:"blur"}]}}),k=r=>{U(),P(),r&&A.common.detail(r.id).then(d=>{e.requestParams=d.data.condition.triggerCondition,d.data.performAction.action.forEach(function(c,b){L.config.getList({sendGateway:c.sendGateway}).then(B=>{e.sendGatewayData[b]=B.Data}),c.noticeConfig&&L.template.configIddetail(c.noticeConfig).then(B=>{e.noticeConfigData[b]=[B]})}),e.action=d.data.performAction.action,e.action.forEach(function(c,b){e.action[b].addressee=c.addressee.map(B=>({phone:B}))}),e.ruleForm=d.data,q(!0)}),e.isShowDialog=!0},P=()=>{H.product.getLists({status:1}).then(r=>{e.productData=r.product||[]}),A.common.levelall("").then(r=>{e.levelData=r.list||[]}),A.common.operator("").then(r=>{e.operData=r.list||[]})},U=()=>{e.requestParams=[{andOr:"",filters:[{key:"",operator:"",value:"",andOr:0}]}],e.action=[{sendGateway:"",noticeConfig:"",noticeTemplate:"",addressee:[{phone:""}]}],e.ruleForm={id:0,name:"",triggerType:1,level:"",productKey:"",deviceKey:"",action:[{sendGateway:"",noticeConfig:"",noticeTemplate:"",addressee:{}}],triggerCondition:[{andOr:"",filters:[{key:"",operator:"",value:"",andOr:0}]}]}},m=()=>{e.isShowDialog=!1},F=()=>{m()},K=()=>{f()};se(()=>e.ruleForm.productKey,r=>{!r||(e.ruleForm.eventKey="")});const O=()=>{const r=ce(R);!r||r.validate(d=>{d&&(e.ruleForm.triggerCondition=e.requestParams,e.action.forEach(function(c,b){e.action[b].addressee=c.addressee.map(B=>B.phone)}),e.ruleForm.action=e.action,e.ruleForm.id!==0?A.common.edit(e.ruleForm).then(()=>{X.success("\u544A\u8B66\u4FEE\u6539\u6210\u529F"),m(),s("typeList")}):A.common.add(e.ruleForm).then(()=>{X.success("\u544A\u8B66\u6DFB\u52A0\u6210\u529F"),m(),s("dataList")}))})},C=r=>{e.action[r].addressee.push({phone:""})},G=(r,d)=>{e.action[r].addressee.splice(d,1)},$=()=>{e.action.push({sendGateway:"",noticeConfig:"",noticeTemplate:"",addressee:[{phone:""}]})},S=r=>{e.action.splice(r,1)},V=r=>{e.requestParams.splice(r,1)},z=(r,d)=>{e.requestParams[r].filters.splice(d,1)},N=()=>{e.requestParams.push({andOr:"",filters:[{key:"",operator:"",value:"",andOr:""}]})},I=r=>{e.requestParams[r].filters.push({key:"",operator:"",value:"",andOr:""})},q=r=>{!r&&(e.ruleForm.deviceKey="");let d=0;e.productData.forEach((c,b)=>{c.key==e.ruleForm.productKey&&(d=c.id)}),Z.common.getdevList({productId:d}).then(c=>{e.sourceData=c.device}),A.common.trigger_type(e.ruleForm.productKey).then(c=>{e.typeData=c.list||[]}),f()},t=()=>{f()},f=()=>{e.requestParams=[{andOr:"",filters:[{key:"",operator:"",value:"",andOr:0}]}],u()};function u(){e.triData=[];const r=e.ruleForm.triggerType,d={productKey:e.ruleForm.productKey,triggerType:r};r===4&&(d.eventKey=e.ruleForm.eventKey,!d.eventKey)||A.common.trigger_params(d).then(c=>{e.triData=c.list||[]})}return{getRadio:t,gettriData:f,getTem:(r,d)=>{e.action[d].noticeTemplate="",L.template.configIddetail(r).then(c=>{e.noticeConfigData[d]=[c]})},getNode:(r,d)=>{e.action[d].noticeConfig="",L.config.getList({sendGateway:r}).then(c=>{e.sendGatewayData[d]=c.Data})},delAction:S,addAction:$,eventTypeChange:K,AddPhone:C,DelPhone:G,setType:q,addParams:I,addParamss:N,delParamss:z,delParams:V,openDialog:k,closeDialog:m,getDevData:P,onCancel:F,onSubmit:O,formRef:R,notice_send_gateway:W,myRef:M,...ie(e)}}}),fe={class:"system-edit-dic-container"},ye={style:{float:"left"}},ge={style:{float:"right","font-size":"13px"}},ve={style:{float:"left"}},_e={style:{float:"right","font-size":"13px"}},he=E("\u89E6\u53D1\u6761\u4EF6"),Fe={class:"box-content"},Ce={key:0,style:{"text-align":"center"}},Ee={style:{padding:"10px",border:"1px solid var(--next-border-color-light)","background-color":"var(--next-border-color-light)","margin-bottom":"10px",position:"relative"}},De={class:"conicon",style:{width:"100%","text-align":"right",position:"absolute",right:"-8px",top:"-8px",color:"red"}},ke={style:{display:"flex"}},Ve=E("\u53C2\u6570\u8BBE\u7F6E"),be={key:0,style:{"text-align":"center"}},Be={class:"content-f"},Ae={class:"conicon"},we=E("\u589E\u52A0\u6761\u4EF6"),Ke=E("\u589E\u52A0\u5206\u7EC4"),Te=E("\u6267\u884C\u52A8\u4F5C"),Pe={class:"box-content"},Ue={style:{padding:"10px",border:"1px solid var(--next-border-color-light)","background-color":"var(--next-border-color-light)","margin-bottom":"10px",position:"relative"}},Oe={class:"conicon",style:{width:"100%","text-align":"right",position:"absolute",right:"-8px",top:"-8px",color:"red"}},Ge={style:{display:"flex"}},$e=E("\u6D88\u606F\u901A\u77E5"),qe={class:"content-f"},Le=E("\u589E\u52A0\u6267\u884C"),Re={class:"dialog-footer"},Se=E("\u53D6 \u6D88");function ze(l,s,M,R,j,W){const e=g("el-input"),k=g("el-form-item"),P=g("el-radio"),U=g("el-radio-group"),m=g("el-option"),F=g("el-select"),K=g("el-divider"),O=g("Top"),C=g("el-icon"),G=g("Bottom"),$=g("CircleClose"),S=g("Delete"),V=g("el-button"),z=g("CirclePlus"),N=g("Remove"),I=g("el-form"),q=g("el-dialog");return n(),p("div",fe,[o(q,{title:(l.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u544A\u8B66",modelValue:l.isShowDialog,"onUpdate:modelValue":s[8]||(s[8]=t=>l.isShowDialog=t),width:"50%"},{footer:a(()=>[y("span",Re,[o(V,{onClick:l.onCancel,size:"default"},{default:a(()=>[Se]),_:1},8,["onClick"]),o(V,{type:"primary",onClick:l.onSubmit,size:"default"},{default:a(()=>[E(w(l.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:a(()=>[o(I,{model:l.ruleForm,ref:"formRef",rules:l.rules,size:"default","label-width":"110px"},{default:a(()=>[o(k,{label:"\u540D\u79F0",prop:"name"},{default:a(()=>[o(e,{modelValue:l.ruleForm.name,"onUpdate:modelValue":s[0]||(s[0]=t=>l.ruleForm.name=t),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(k,{label:"\u544A\u8B66\u7EA7\u522B",prop:"level"},{default:a(()=>[o(U,{modelValue:l.ruleForm.level,"onUpdate:modelValue":s[1]||(s[1]=t=>l.ruleForm.level=t)},{default:a(()=>[(n(!0),p(v,null,_(l.levelData,t=>(n(),h(P,{label:t.level},{default:a(()=>[E(w(t.name),1)]),_:2},1032,["label"]))),256))]),_:1},8,["modelValue"])]),_:1}),o(k,{label:"\u9009\u62E9\u4EA7\u54C1",prop:"productKey"},{default:a(()=>[o(F,{modelValue:l.ruleForm.productKey,"onUpdate:modelValue":s[2]||(s[2]=t=>l.ruleForm.productKey=t),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u4EA7\u54C1",onChange:s[3]||(s[3]=t=>l.setType())},{default:a(()=>[(n(!0),p(v,null,_(l.productData,t=>(n(),h(m,{key:t.key,label:t.name,value:t.key},{default:a(()=>[y("span",ye,w(t.name),1),y("span",ge,w(t.key),1)]),_:2},1032,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),o(k,{label:"\u9009\u62E9\u8BBE\u5907",prop:"deviceKey"},{default:a(()=>[o(F,{modelValue:l.ruleForm.deviceKey,"onUpdate:modelValue":s[4]||(s[4]=t=>l.ruleForm.deviceKey=t),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u8BBE\u5907"},{default:a(()=>[(n(!0),p(v,null,_(l.sourceData,t=>(n(),h(m,{key:t.key,label:t.name,value:t.key},{default:a(()=>[y("span",ve,w(t.name),1),y("span",_e,w(t.key),1)]),_:2},1032,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),l.ruleForm.productKey?(n(),h(k,{key:0,label:"\u89E6\u53D1\u65B9\u5F0F",prop:"triggerType"},{default:a(()=>[o(U,{modelValue:l.ruleForm.triggerType,"onUpdate:modelValue":s[5]||(s[5]=t=>l.ruleForm.triggerType=t),onChange:s[6]||(s[6]=t=>l.getRadio())},{default:a(()=>[(n(!0),p(v,null,_(l.typeData,t=>(n(),h(P,{label:t.type},{default:a(()=>[E(w(t.title),1)]),_:2},1032,["label"]))),256))]),_:1},8,["modelValue"])]),_:1})):T("",!0),l.ruleForm.triggerType===4?(n(),h(k,{key:1,label:"\u9009\u62E9\u4E8B\u4EF6",prop:"eventKey"},{default:a(()=>[o(F,{modelValue:l.ruleForm.eventKey,"onUpdate:modelValue":s[7]||(s[7]=t=>l.ruleForm.eventKey=t),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u4E8B\u4EF6",onChange:l.eventTypeChange},{default:a(()=>[(n(!0),p(v,null,_(l.eventList,t=>(n(),h(m,{key:t.key,label:t.name,value:t.key},null,8,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1})):T("",!0),o(K,{"content-position":"left"},{default:a(()=>[he]),_:1}),y("div",Fe,[(n(!0),p(v,null,_(l.requestParams,(t,f)=>(n(),p("div",{key:f},[f>0?(n(),p("div",Ce,[o(C,null,{default:a(()=>[o(O)]),_:1}),y("div",null,[o(F,{modelValue:t.andOr,"onUpdate:modelValue":u=>t.andOr=u,placeholder:"\u9009\u62E9\u6761\u4EF6\u5173\u7CFB"},{default:a(()=>[o(m,{label:"\u65E0",value:0}),o(m,{label:"\u5E76\u4E14",value:1}),o(m,{label:"\u6216",value:2})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),o(C,null,{default:a(()=>[o(G)]),_:1})])):T("",!0),y("div",Ee,[y("div",De,[o(C,{onClick:u=>l.delParams(f)},{default:a(()=>[o($)]),_:2},1032,["onClick"])]),y("div",ke,[o(K,{"content-position":"left"},{default:a(()=>[Ve]),_:1})]),(n(!0),p(v,null,_(t.filters,(u,D)=>(n(),p("div",{key:D},[D>0?(n(),p("div",be,[o(C,null,{default:a(()=>[o(O)]),_:1}),y("div",null,[o(F,{modelValue:u.andOr,"onUpdate:modelValue":i=>u.andOr=i,placeholder:"\u9009\u62E9\u6761\u4EF6\u5173\u7CFB",style:{width:"150px"}},{default:a(()=>[o(m,{label:"\u65E0",value:0}),o(m,{label:"\u5E76\u4E14",value:1}),o(m,{label:"\u6216",value:2})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),o(C,null,{default:a(()=>[o(G)]),_:1})])):T("",!0),y("div",Be,[o(F,{modelValue:u.key,"onUpdate:modelValue":i=>u.key=i,placeholder:l.ruleForm.triggerType===4&&!l.ruleForm.eventKey?"\u8BF7\u5148\u9009\u62E9\u4E8B\u4EF6":"\u9009\u62E9\u53C2\u6570",style:{width:"320px"}},{default:a(()=>[(n(!0),p(v,null,_(l.triData,i=>(n(),h(m,{key:i.paramKey,label:i.title,value:i.paramKey},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"]),o(F,{modelValue:u.operator,"onUpdate:modelValue":i=>u.operator=i,placeholder:"\u9009\u62E9\u64CD\u4F5C\u7B26",style:{width:"320px"}},{default:a(()=>[(n(!0),p(v,null,_(l.operData,i=>(n(),h(m,{key:i.type,label:i.title,value:i.type},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"]),o(e,{modelValue:u.value,"onUpdate:modelValue":i=>u.value=i,placeholder:"\u8BF7\u8F93\u5165\u6761\u4EF6\u503C",style:{width:"320px"}},null,8,["modelValue","onUpdate:modelValue"]),y("div",Ae,[o(C,{onClick:i=>l.delParamss(f,D)},{default:a(()=>[o(S)]),_:2},1032,["onClick"])])])]))),128)),o(V,{type:"primary",class:"addbutton",onClick:u=>l.addParams(f)},{default:a(()=>[we]),_:2},1032,["onClick"])])]))),128))]),o(V,{type:"success",class:"addbutton",onClick:l.addParamss},{default:a(()=>[Ke]),_:1},8,["onClick"]),o(K,{"content-position":"left"},{default:a(()=>[Te]),_:1}),y("div",Pe,[(n(!0),p(v,null,_(l.action,(t,f)=>(n(),p("div",{key:f},[y("div",Ue,[y("div",Oe,[o(C,{onClick:u=>l.delAction(f)},{default:a(()=>[o($)]),_:2},1032,["onClick"])]),y("div",Ge,[o(K,{"content-position":"left"},{default:a(()=>[$e]),_:1})]),y("div",qe,[o(F,{modelValue:t.sendGateway,"onUpdate:modelValue":u=>t.sendGateway=u,placeholder:"\u8BF7\u9009\u62E9\u901A\u77E5\u65B9\u5F0F",style:{width:"320px"},onChange:u=>l.getNode(t.sendGateway,f)},{default:a(()=>[(n(!0),p(v,null,_(l.notice_send_gateway,u=>(n(),h(m,{key:u.value,label:u.label,value:u.value},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","onChange"]),o(F,{modelValue:t.noticeConfig,"onUpdate:modelValue":u=>t.noticeConfig=u,placeholder:"\u8BF7\u9009\u62E9\u901A\u77E5\u914D\u7F6E",style:{width:"320px"},onChange:u=>l.getTem(t.noticeConfig,f)},{default:a(()=>[(n(!0),p(v,null,_(l.sendGatewayData[f],u=>(n(),h(m,{key:u.id,label:u.title,value:u.id},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","onChange"]),o(F,{modelValue:t.noticeTemplate,"onUpdate:modelValue":u=>t.noticeTemplate=u,placeholder:"\u8BF7\u9009\u62E9\u901A\u77E5\u6A21\u677F",style:{width:"320px"}},{default:a(()=>[(n(!0),p(v,null,_(l.noticeConfigData[f],u=>(n(),h(m,{key:u.id,label:u.title,value:u.id},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),y("div",null,[(n(!0),p(v,null,_(t.addressee,(u,D)=>(n(),p("div",{style:{display:"flex","margin-bottom":"10px"},key:D},[o(e,{modelValue:u.phone,"onUpdate:modelValue":i=>u.phone=i,placeholder:"\u8BF7\u8F93\u5165\u63A5\u6536\u4EBA\u4FE1\u606F",style:{width:"320px"}},null,8,["modelValue","onUpdate:modelValue"]),D==0?(n(),h(C,{key:0,style:{width:"32px",height:"32px","font-size":"24px"},onClick:i=>l.AddPhone(f)},{default:a(()=>[o(z)]),_:2},1032,["onClick"])):T("",!0),D>0?(n(),h(C,{key:1,style:{width:"32px",height:"32px","font-size":"24px"},onClick:i=>l.DelPhone(f,D)},{default:a(()=>[o(N)]),_:2},1032,["onClick"])):T("",!0)]))),128))])])]))),128))]),o(V,{type:"success",class:"addbutton",onClick:l.addAction},{default:a(()=>[Le]),_:1},8,["onClick"])]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var Ye=J(me,[["render",ze]]);export{Ye as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046955.css b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046955.css new file mode 100644 index 0000000..717b6b3 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046955.css @@ -0,0 +1 @@ +[data-v-b3de604c] .el-collapse-item__header{position:relative;padding-left:20px}[data-v-b3de604c] .el-collapse-item__header .el-collapse-item__arrow{margin:0!important;position:absolute;left:0;right:0}[data-v-b3de604c] .el-input,[data-v-b3de604c] .el-input-number{width:500px}[data-v-b3de604c] .params{width:600px}[data-v-b3de604c] .flex-column{display:flex;flex-direction:column}[data-v-b3de604c] .flex-column .el-form-item__label{justify-content:flex-start} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046955.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046955.js new file mode 100644 index 0000000..9fba8a8 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046955.js @@ -0,0 +1 @@ +import{a as c}from"./index.170118430469519.js";import{_ as I,E as b}from"./index.1701184304695.js";import{L as S,h as v,a2 as w,ab as U,a as D,_ as l,T as u,e as L,ai as s,o as B,b as V,Y as y,Z as f,X as N}from"./vue.1701184304695.js";const E={parentId:0,name:"",key:"",desc:"",sort:0},$=S({name:"deviceEditCate",setup(e,{emit:t}){const p=v(null),o=w({isShowDialog:!1,ruleForm:{...E},deptData:[],orgData:[],rules:{name:[{required:!0,message:"\u5206\u7C7B\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],key:[{required:!0,message:"\u5206\u7C7B\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),g=a=>{m(),c.category.getList({status:1}).then(i=>{o.deptData=i.category||[]}),a&&typeof a=="object"?o.ruleForm=a:a&&typeof a=="number"&&(o.ruleForm.parentId=a),o.isShowDialog=!0},d=()=>{o.isShowDialog=!1},F=()=>{d()},n=()=>{console.log(o.ruleForm.parentId);const a=L(p);!a||a.validate(i=>{i&&(console.log(o.ruleForm),console.log(o.ruleForm.parentId),o.ruleForm.parentId||(o.ruleForm.parentId=0),console.log(o.ruleForm.parentId),o.ruleForm.id?c.category.edit(o.ruleForm).then(()=>{b.success("\u5206\u7C7B\u4FEE\u6539\u6210\u529F"),d(),t("getCateList")}):c.category.add(o.ruleForm).then(()=>{b.success("\u5206\u7C7B\u6DFB\u52A0\u6210\u529F"),d(),t("getCateList")}))})},m=()=>{o.ruleForm={...E}};return{openDialog:g,closeDialog:d,onCancel:F,onSubmit:n,formRef:p,...U(o)}}}),z={class:"system-edit-dept-container"},R={key:0},q={class:"dialog-footer"},T=y("\u53D6 \u6D88");function j(e,t,p,o,g,d){const F=s("el-cascader"),n=s("el-form-item"),m=s("el-col"),a=s("el-input"),i=s("el-input-number"),h=s("el-row"),k=s("el-form"),_=s("el-button"),A=s("el-dialog");return B(),D("div",z,[l(A,{title:(e.ruleForm.id?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u5206\u7C7B",modelValue:e.isShowDialog,"onUpdate:modelValue":t[5]||(t[5]=r=>e.isShowDialog=r),width:"769px"},{footer:u(()=>[V("span",q,[l(_,{onClick:e.onCancel,size:"default"},{default:u(()=>[T]),_:1},8,["onClick"]),l(_,{type:"primary",onClick:e.onSubmit,size:"default"},{default:u(()=>[y(f(e.ruleForm.id?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:u(()=>[l(k,{ref:"formRef",model:e.ruleForm,rules:e.rules,size:"default","label-width":"90px"},{default:u(()=>[l(h,{gutter:35},{default:u(()=>[l(m,{xs:24,sm:24,md:24,lg:24,xl:24,class:"mb20"},{default:u(()=>[l(n,{label:"\u4E0A\u7EA7\u5206\u7C7B"},{default:u(()=>[l(F,{options:e.deptData,props:{checkStrictly:!0,emitPath:!1,value:"id",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u5206\u7C7B",clearable:"",class:"w100",modelValue:e.ruleForm.parentId,"onUpdate:modelValue":t[0]||(t[0]=r=>e.ruleForm.parentId=r)},{default:u(({node:r,data:C})=>[V("span",null,f(C.name),1),r.isLeaf?N("",!0):(B(),D("span",R," ("+f(C.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),l(m,{xs:24,sm:12,md:12,lg:12,xl:12},{default:u(()=>[l(n,{label:"\u5206\u7C7B\u540D\u79F0",prop:"name"},{default:u(()=>[l(a,{modelValue:e.ruleForm.name,"onUpdate:modelValue":t[1]||(t[1]=r=>e.ruleForm.name=r),placeholder:"\u8BF7\u8F93\u5165\u5206\u7C7B\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),l(m,{xs:24,sm:12,md:12,lg:12,xl:12},{default:u(()=>[l(n,{label:"\u6392\u5E8F"},{default:u(()=>[l(i,{modelValue:e.ruleForm.sort,"onUpdate:modelValue":t[2]||(t[2]=r=>e.ruleForm.sort=r),min:0,"controls-position":"right",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F",class:"w100"},null,8,["modelValue"])]),_:1})]),_:1}),l(m,{xs:24,sm:24,md:24,lg:24,xl:24,class:"mb20"},{default:u(()=>[l(n,{label:"\u5206\u7C7B\u6807\u8BC6",prop:"key"},{default:u(()=>[l(a,{modelValue:e.ruleForm.key,"onUpdate:modelValue":t[3]||(t[3]=r=>e.ruleForm.key=r),placeholder:"\u8BF7\u8F93\u5165\u5206\u7C7B\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),l(m,{xs:24,sm:24,md:24,lg:24,xl:24,class:"mb20"},{default:u(()=>[l(n,{label:"\u63CF\u8FF0"},{default:u(()=>[l(a,{modelValue:e.ruleForm.desc,"onUpdate:modelValue":t[4]||(t[4]=r=>e.ruleForm.desc=r),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u63CF\u8FF0",maxlength:"150"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var X=I($,[["render",j]]);export{X as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046956.css b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046956.css new file mode 100644 index 0000000..3f36986 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046956.css @@ -0,0 +1 @@ +.CodeMirror{width:100%;height:600px;font-size:16px}[data-v-c7d447f8] .el-collapse-item__header{position:relative;padding-left:20px}[data-v-c7d447f8] .el-collapse-item__header .el-collapse-item__arrow{margin:0!important;position:absolute;left:0;right:0}[data-v-c7d447f8] .el-input,[data-v-c7d447f8] .el-input-number{width:500px}[data-v-c7d447f8] .params{width:600px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046956.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046956.js new file mode 100644 index 0000000..64e4058 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046956.js @@ -0,0 +1 @@ +import{a as h}from"./index.170118430469519.js";import N from"./tag.1701184304695.js";import{_ as q,E as S}from"./index.1701184304695.js";import{L as M,h as C,a2 as Z,ab as W,a as m,_ as l,T as t,e as G,n as X,ai as d,o as n,b as k,Y as p,Z as b,F as c,a8 as w,S as y,X as Y,aB as j,aC as H}from"./vue.1701184304695.js";const L={id:0,key:"",name:"",productId:"",tags:[],lng:"",lat:"",version:"",authType:0,authUser:"",authPasswd:"",accessToken:"",certificateId:"",desc:""},J=M({name:"deviceEditPro",components:{tagVue:N},setup(u,{emit:a}){const _=C(null),v=C(null),f=C(!1),I=C([]),o=Z({isShowDialog:!1,product:{},productData:[],ruleForm:{...L},rules:{name:[{required:!0,message:"\u8BBE\u5907\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],key:[{required:!0,message:"\u8BBE\u5907\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],productId:[{required:!0,message:"\u6240\u5C5E\u4EA7\u54C1\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),r=e=>{B(),h.product.getLists({status:1}).then(s=>{o.productData=s.product||[]}),e&&(o.ruleForm=e,o.ruleForm.tags=e.tags||[],V(e.productId)),o.isShowDialog=!0},B=()=>{o.ruleForm={...L}},i=()=>{o.isShowDialog=!1},F=()=>{i()},D=()=>{const e=G(_);!e||e.validate(s=>{s&&(o.ruleForm.id!==0?h.instance.edit(o.ruleForm).then(()=>{S.success("\u8BBE\u5907\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),i(),a("typeList")}):h.instance.add(o.ruleForm).then(()=>{S.success("\u8BBE\u5907\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),i(),a("typeList")}))})};function g(){v.value.addRow()}function A(e){console.log(e),o.ruleForm.tags.push(e)}function T(e){o.ruleForm.tags.splice(e,1)}function E(){f.value=!0,X(()=>{var e=new BMapGL.Map("map-container-conpany");e.centerAndZoom("\u6C88\u9633\u5E02",8),e.enableScrollWheelZoom(!0),e.addEventListener("click",s=>{console.log("\u70B9\u51FB\u4F4D\u7F6E\u7ECF\u7EAC\u5EA6\uFF1A"+s.latlng.lng+","+s.latlng.lat),o.ruleForm.lng=s.latlng.lng.toFixed(5),o.ruleForm.lat=s.latlng.lat.toFixed(5),f.value=!1})})}const V=e=>{h.product.detail(e).then(s=>{const{authType:U,authUser:P,authPasswd:R,accessToken:$,certificateId:z}=s.data;o.product=s.data,o.ruleForm.authType=U,o.ruleForm.authUser=P,o.ruleForm.authPasswd=R,o.ruleForm.accessToken=$,o.ruleForm.certificateId=z})};return{certList:I,productIdChange:V,tagRef:v,delTagRow:T,toAddTag:g,addTag:A,mapVisible:f,selectPosition:E,openDialog:r,closeDialog:i,onCancel:F,onSubmit:D,formRef:_,...W(o)}}}),K=u=>(j("data-v-b0b4db42"),u=u(),H(),u),O={class:"system-edit-dic-container"},Q={class:"tags-wrapper"},x=p("\u6DFB\u52A0\u6807\u7B7E"),ee={class:"tags"},ue={class:"tag flex"},le=p("\u5220\u9664"),oe=p("Basic"),ae=p("AccessToken"),te={class:"dialog-footer"},re=p("\u53D6 \u6D88"),se=K(()=>k("div",{class:"map",id:"map-container-conpany",style:{height:"65vh"}},null,-1));function de(u,a,_,v,f,I){const o=d("el-input"),r=d("el-form-item"),B=d("el-option"),i=d("el-select"),F=d("el-button"),D=d("el-tag"),g=d("el-radio"),A=d("el-radio-group"),T=d("el-form"),E=d("el-dialog"),V=d("tagVue");return n(),m("div",O,[l(E,{title:(u.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u8BBE\u5907",modelValue:u.isShowDialog,"onUpdate:modelValue":a[10]||(a[10]=e=>u.isShowDialog=e),width:"769px"},{footer:t(()=>[k("span",te,[l(F,{onClick:u.onCancel,size:"default"},{default:t(()=>[re]),_:1},8,["onClick"]),l(F,{type:"primary",onClick:u.onSubmit,size:"default"},{default:t(()=>[p(b(u.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:t(()=>[l(T,{model:u.ruleForm,ref:"formRef",rules:u.rules,size:"default","label-width":"110px"},{default:t(()=>[l(r,{label:"\u8BBE\u5907\u6807\u8BC6",prop:"key"},{default:t(()=>[l(o,{modelValue:u.ruleForm.key,"onUpdate:modelValue":a[0]||(a[0]=e=>u.ruleForm.key=e),placeholder:"\u8BF7\u8F93\u5165\u8BBE\u5907\u6807\u8BC6",disabled:u.ruleForm.id},null,8,["modelValue","disabled"])]),_:1}),l(r,{label:"\u8BBE\u5907\u540D\u79F0",prop:"name"},{default:t(()=>[l(o,{modelValue:u.ruleForm.name,"onUpdate:modelValue":a[1]||(a[1]=e=>u.ruleForm.name=e),placeholder:"\u8BF7\u8F93\u5165\u8BBE\u5907\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(r,{label:"\u6240\u5C5E\u4EA7\u54C1",prop:"productId"},{default:t(()=>[l(i,{modelValue:u.ruleForm.productId,"onUpdate:modelValue":a[2]||(a[2]=e=>u.ruleForm.productId=e),onChange:u.productIdChange,disabled:u.ruleForm.id,placeholder:"\u8BF7\u9009\u62E9\u6240\u5C5E\u4EA7\u54C1",class:"w100"},{default:t(()=>[(n(!0),m(c,null,w(u.productData,e=>(n(),y(B,{key:e.id,label:e.name,value:e.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","onChange","disabled"])]),_:1}),l(r,{label:"\u8BBE\u5907\u5750\u6807",prop:"lng"},{default:t(()=>[l(o,{value:u.ruleForm.lng?u.ruleForm.lng+" , "+u.ruleForm.lat:"",placeholder:"\u9009\u62E9\u8BBE\u5907\u5750\u6807",onClick:u.selectPosition,"read-only":""},null,8,["value","onClick"])]),_:1}),l(r,{label:"\u6807\u7B7E\u8BBE\u7F6E",prop:"lng"},{default:t(()=>[k("div",Q,[l(F,{type:"primary",size:"small",onClick:u.toAddTag},{default:t(()=>[x]),_:1},8,["onClick"]),k("div",ee,[(n(!0),m(c,null,w(u.ruleForm.tags,(e,s)=>(n(),m("div",ue,[l(D,null,{default:t(()=>[p(b(e.key)+" : "+b(e.name)+" : "+b(e.value),1)]),_:2},1024),l(F,{type:"danger",size:"small",onClick:U=>u.delTagRow(s)},{default:t(()=>[le]),_:2},1032,["onClick"])]))),256))])])]),_:1}),u.ruleForm.authType===1||u.ruleForm.authType===2?(n(),m(c,{key:0},[l(r,{label:"\u8BA4\u8BC1\u65B9\u5F0F",prop:""},{default:t(()=>[l(A,{modelValue:u.ruleForm.authType,"onUpdate:modelValue":a[3]||(a[3]=e=>u.ruleForm.authType=e)},{default:t(()=>[l(g,{label:1},{default:t(()=>[oe]),_:1}),l(g,{label:2},{default:t(()=>[ae]),_:1})]),_:1},8,["modelValue"])]),_:1}),u.ruleForm.authType===1?(n(),m(c,{key:0},[l(r,{label:"\u7528\u6237\u540D",prop:"authUser"},{default:t(()=>[l(o,{modelValue:u.ruleForm.authUser,"onUpdate:modelValue":a[4]||(a[4]=e=>u.ruleForm.authUser=e),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u540D"},null,8,["modelValue"])]),_:1}),l(r,{label:"\u5BC6\u7801",prop:"authPasswd"},{default:t(()=>[l(o,{type:"password",modelValue:u.ruleForm.authPasswd,"onUpdate:modelValue":a[5]||(a[5]=e=>u.ruleForm.authPasswd=e),placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801"},null,8,["modelValue"])]),_:1})],64)):(n(),y(r,{key:1,label:"Aceess Token",prop:"accessToken"},{default:t(()=>[l(o,{modelValue:u.ruleForm.accessToken,"onUpdate:modelValue":a[6]||(a[6]=e=>u.ruleForm.accessToken=e),placeholder:"\u8BF7\u8F93\u5165Aceess Token"},null,8,["modelValue"])]),_:1}))],64)):u.ruleForm.authType===3?(n(),y(r,{key:1,label:"\u8BA4\u8BC1\u8BC1\u4E66",prop:"certificateId"},{default:t(()=>[l(i,{modelValue:u.ruleForm.certificateId,"onUpdate:modelValue":a[7]||(a[7]=e=>u.ruleForm.certificateId=e),placeholder:"\u8BF7\u9009\u62E9\u8BC1\u4E66"},{default:t(()=>[(n(!0),m(c,null,w(u.certList,e=>(n(),y(B,{key:e.id,label:e.name,value:e.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})):Y("",!0),l(r,{label:"\u56FA\u4EF6\u7248\u672C\u53F7",prop:"version"},{default:t(()=>[l(o,{modelValue:u.ruleForm.version,"onUpdate:modelValue":a[8]||(a[8]=e=>u.ruleForm.version=e),placeholder:"\u8BF7\u8F93\u5165\u56FA\u4EF6\u7248\u672C\u53F7"},null,8,["modelValue"])]),_:1}),l(r,{label:"\u5907\u6CE8",prop:"desc"},{default:t(()=>[l(o,{modelValue:u.ruleForm.desc,"onUpdate:modelValue":a[9]||(a[9]=e=>u.ruleForm.desc=e),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"]),l(E,{title:"\u5730\u56FE\u9009\u70B9\uFF08\u70B9\u51FB\u5730\u56FE\u5373\u53EF\uFF09",modelValue:u.mapVisible,"onUpdate:modelValue":a[11]||(a[11]=e=>u.mapVisible=e),width:"1000px","append-to-body":""},{default:t(()=>[se]),_:1},8,["modelValue"]),l(V,{ref:"tagRef"},null,512)])}var Fe=q(J,[["render",de],["__scopeId","data-v-b0b4db42"]]);export{Fe as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046957.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046957.js new file mode 100644 index 0000000..ee0f210 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046957.js @@ -0,0 +1 @@ +import{a as D}from"./index.170118430469519.js";import{_ as L,b as $,E as U}from"./index.1701184304695.js";import{L as K,h as N,a2 as z,ab as R,a as V,_ as e,T as a,j as q,e as P,ai as n,o as i,b as I,Y as w,Z as C,F as _,a8 as h,S as v,X as T}from"./vue.1701184304695.js";function S(l,o,c=!1){for(let f=0;f{y(),m==="add"?r.ruleForm.parentId=p.infoId:m==="edit"&&(r.ruleForm.id=p.infoId,b()),$.org.getList({status:1}).then(B=>{r.orgData=B||[]}),D.tree.getList({}).then(B=>{S(B.list,p.infoId),r.treeData=[{name:"\u6839\u8282\u70B9",infoId:0,children:B.list}]}),r.isShowDialog=!0},t=()=>{r.isShowDialog=!1},s=()=>{t()},b=()=>{D.tree.detail({infoId:r.ruleForm.id}).then(m=>{r.ruleForm={...m.data}})},g=()=>{const m=P(f);!m||m.validate(p=>{p&&(r.ruleForm.id?D.tree.edit(r.ruleForm).then(()=>{U.success("\u8BBE\u5907\u6811\u4FEE\u6539\u6210\u529F"),t(),o("finish")}):D.tree.add(r.ruleForm).then(()=>{U.success("\u8BBE\u5907\u6811\u6DFB\u52A0\u6210\u529F"),t(),o("finish")}))})},y=()=>{r.ruleForm={...k}};return{openDialog:d,closeDialog:t,onCancel:s,onSubmit:g,formRef:f,tree_types:F,tree_category:E,...R(r)}}}),M={class:"system-edit-dept-container"},O={key:0},W={class:"dialog-footer"},X=w("\u53D6 \u6D88");function Y(l,o,c,f,r,F){const E=n("el-cascader"),d=n("el-form-item"),t=n("el-col"),s=n("el-input"),b=n("el-option"),g=n("el-select"),y=n("el-row"),m=n("el-form"),p=n("el-button"),B=n("el-dialog");return i(),V("div",M,[e(B,{title:(l.ruleForm.id?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u8BBE\u5907\u6811",modelValue:l.isShowDialog,"onUpdate:modelValue":o[13]||(o[13]=u=>l.isShowDialog=u),width:"769px"},{footer:a(()=>[I("span",W,[e(p,{onClick:l.onCancel,size:"default"},{default:a(()=>[X]),_:1},8,["onClick"]),e(p,{type:"primary",onClick:l.onSubmit,size:"default"},{default:a(()=>[w(C(l.ruleForm.id?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:a(()=>[e(m,{ref:"formRef",model:l.ruleForm,rules:l.rules,size:"default","label-width":"120px"},{default:a(()=>[e(y,{gutter:35},{default:a(()=>[e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u8BBE\u5907\u6811",prop:"parentId"},{default:a(()=>[e(E,{options:l.treeData,props:{checkStrictly:!0,emitPath:!1,value:"infoId",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u5206\u7C7B",clearable:"",class:"w100",modelValue:l.ruleForm.parentId,"onUpdate:modelValue":o[0]||(o[0]=u=>l.ruleForm.parentId=u)},null,8,["options","modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u540D\u79F0",prop:"name"},{default:a(()=>[e(s,{modelValue:l.ruleForm.name,"onUpdate:modelValue":o[1]||(o[1]=u=>l.ruleForm.name=u),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u5730\u5740",prop:"address"},{default:a(()=>[e(s,{modelValue:l.ruleForm.address,"onUpdate:modelValue":o[2]||(o[2]=u=>l.ruleForm.address=u),placeholder:"\u8BF7\u8F93\u5165\u5730\u5740",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u7ECF\u5EA6",prop:"lng"},{default:a(()=>[e(s,{modelValue:l.ruleForm.lng,"onUpdate:modelValue":o[3]||(o[3]=u=>l.ruleForm.lng=u),placeholder:"\u8BF7\u8F93\u5165\u7ECF\u5EA6",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u7EAC\u5EA6",prop:"lat"},{default:a(()=>[e(s,{modelValue:l.ruleForm.lat,"onUpdate:modelValue":o[4]||(o[4]=u=>l.ruleForm.lat=u),placeholder:"\u8BF7\u8F93\u5165\u7EAC\u5EA6",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u8054\u7CFB\u4EBA",prop:"contact"},{default:a(()=>[e(s,{modelValue:l.ruleForm.contact,"onUpdate:modelValue":o[5]||(o[5]=u=>l.ruleForm.contact=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u4EBA",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"phone"},{default:a(()=>[e(s,{modelValue:l.ruleForm.phone,"onUpdate:modelValue":o[6]||(o[6]=u=>l.ruleForm.phone=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u7C7B\u578B",prop:"template"},{default:a(()=>[e(g,{modelValue:l.ruleForm.template,"onUpdate:modelValue":o[7]||(o[7]=u=>l.ruleForm.template=u),filterable:"",clearable:"",placeholder:"\u8BF7\u9009\u62E9\u7C7B\u578B",style:{width:"100%"}},{default:a(()=>[(i(!0),V(_,null,h(l.tree_types,u=>(i(),v(b,{key:u.value,label:u.label,value:u.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u8BBE\u5907\u6807\u8BC6",prop:"deviceKey"},{default:a(()=>[e(s,{modelValue:l.ruleForm.deviceKey,"onUpdate:modelValue":o[8]||(o[8]=u=>l.ruleForm.deviceKey=u),placeholder:"\u8BF7\u8F93\u5165\u8BBE\u5907\u6807\u8BC6",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u5206\u7C7B",prop:"category"},{default:a(()=>[e(g,{modelValue:l.ruleForm.category,"onUpdate:modelValue":o[9]||(o[9]=u=>l.ruleForm.category=u),filterable:"",clearable:"",placeholder:"\u8BF7\u9009\u62E9\u5206\u7C7B",style:{width:"100%"}},{default:a(()=>[(i(!0),V(_,null,h(l.tree_category,u=>(i(),v(b,{key:u.value,label:u.label,value:u.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u8BBE\u5907\u6240\u5C5E\u533A\u57DF",prop:"area"},{default:a(()=>[e(E,{options:l.orgData,props:{checkStrictly:!0,emitPath:!1,value:"id",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u533A\u57DF",clearable:"",class:"w100",modelValue:l.ruleForm.area,"onUpdate:modelValue":o[10]||(o[10]=u=>l.ruleForm.area=u)},{default:a(({node:u,data:A})=>[I("span",null,C(A.name),1),u.isLeaf?T("",!0):(i(),V("span",O," ("+C(A.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u6240\u5C5E\u516C\u53F8",prop:"company"},{default:a(()=>[e(s,{modelValue:l.ruleForm.company,"onUpdate:modelValue":o[11]||(o[11]=u=>l.ruleForm.company=u),placeholder:"\u8BF7\u8F93\u5165\u6240\u5C5E\u516C\u53F8",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{xs:24,sm:12,md:12,lg:12,xl:12},{default:a(()=>[e(d,{label:"\u7C7B\u578B",prop:"types"},{default:a(()=>[e(g,{modelValue:l.ruleForm.types,"onUpdate:modelValue":o[12]||(o[12]=u=>l.ruleForm.types=u),filterable:"",clearable:"",placeholder:"\u8BF7\u9009\u62E9\u7C7B\u578B",style:{width:"100%"}},{default:a(()=>[(i(!0),V(_,null,h(l.tree_types_2,u=>(i(),v(b,{key:u.value,label:u.label,value:u.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var J=L(j,[["render",Y]]);export{J as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046958.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046958.js new file mode 100644 index 0000000..324b495 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046958.js @@ -0,0 +1 @@ +import{_ as _sfc_main$1}from"./index.170118430469524.js";import serverDetail from"./serverDetail.1701184304695.js";import{L as defineComponent,a2 as reactive,h as ref,i as watch,k as onMounted,ab as toRefs,S as createBlock,T as withCtx,j as getCurrentInstance,aD as useRoute,aF as useRouter,ai as resolveComponent,o as openBlock,_ as createVNode,b as createBaseVNode,a as createElementBlock,a8 as renderList,F as Fragment,X as createCommentVNode,Y as createTextVNode}from"./vue.1701184304695.js";import{a as api}from"./index.170118430469527.js";import{_ as _export_sfc,E as ElMessage}from"./index.1701184304695.js";var edit_vue_vue_type_style_index_0_scoped_true_lang="";const _sfc_main=defineComponent({name:"serverCreate",components:{codeEditor:_sfc_main$1,serverDetail},props:{type:{type:String,default:""}},setup(props,context){const{proxy}=getCurrentInstance(),route=useRoute(),router=useRouter(),{network_server_type,network_protocols}=proxy.useDict("network_server_type","network_protocols"),state=reactive({stickValue:"",stick:{"delimit,omitempty":"","custom,omitempty":"","fixedLen,omitempty":0,"len,omitempty":{len:0,offset:0,endian:""}},stick_type:[{label:"\u5206\u9694\u7B26",value:"\u5206\u9694\u7B26"},{label:"\u81EA\u5B9A\u4E49\u811A\u672C",value:"\u81EA\u5B9A\u4E49\u811A\u672C"},{label:"\u56FA\u5B9A\u957F\u5EA6",value:"\u56FA\u5B9A\u957F\u5EA6"},{label:"\u957F\u5EA6\u5B57\u6BB5",value:"\u957F\u5EA6\u5B57\u6BB5"}],resourceModalPro:{mode:"",content:""},certificateList:[],detail:{},activeViewName:["1","2","3"],form:{name:"\u65B0\u5EFA\u670D\u52A1\u5668",accessToken:"",authPasswd:"",authUser:"",authType:3,isTls:0,certificateId:"",types:"tcp",status:!1,addr:"",register:{regex:"^w+$"},protocol:{name:"ModbusTCP",options:{}},heartbeat:{enable:!1,hex:"",regex:"^\\w+$",text:"",timeout:30},devices:[]}}),mirrorRef=ref("mirrorRef"),activeName=ref("first"),getDetail=()=>{const e=route.params&&route.params.id;api.server.getDetail({id:e}).then(o=>{const{id:k,isTls:C,authType:y,certificateId:F,authUser:a,authPasswd:l,accessToken:r,name:s,types:m,status:p,addr:c,register:d,protocol:n,heartbeat:f,devices:V,stick:B}=o;state.form.id=k,state.form.name=s,state.form.types=m,state.form.status=p,state.form.isTls=C,state.form.addr=c,state.form.authType=y,state.form.authUser=a,state.form.authPasswd=l,state.form.accessToken=r,state.form.certificateId=F,state.form.register=JSON.parse(d),state.form.protocol=JSON.parse(n),state.form.heartbeat=JSON.parse(f),state.form.devices=JSON.parse(V);let u=JSON.parse(B);u.len&&u.len.endian?state.stick["len,omitempty"]=u.len:u.fixedLen?state.stick["fixedLen,omitempty"]=u.fixedLen:u.custom?state.stick["custom,omitempty"]=u.custom:u.delimit&&(state.stick["delimit,omitempty"]=u.delimit),m=="tcp"&&(state.stick["delimit,omitempty"]?state.stickValue="\u5206\u9694\u7B26":state.stick["custom,omitempty"]?state.stickValue="\u81EA\u5B9A\u4E49\u811A\u672C":state.stick["fixedLen,omitempty"]?state.stickValue="\u56FA\u5B9A\u957F\u5EA6":state.stick["len,omitempty"]&&(state.stickValue="\u957F\u5EA6\u5B57\u6BB5"));let i=JSON.stringify(JSON.parse(n).options);state.resourceModalPro.content=JSON.stringify(JSON.parse(i),null,4),mirrorRef.value.setValue(state.resourceModalPro.content)})},submit=()=>{let params={...state.form,stick:{...state.stick}};mirrorRef.value.getValue()&&(state.form.protocol.options=eval("("+mirrorRef.value.getValue()+")")),api.server.editItem(params).then(e=>{ElMessage.success("\u4FEE\u6539\u6210\u529F"),router.go(-1)})},initData=()=>{state.stick={"delimit,omitempty":"","custom,omitempty":"","fixedLen,omitempty":0,"len,omitempty":{len:0,offset:0,endian:""}}},handleChangeType=()=>{if(state.form.types!="mqtt_server"&&state.form.isTls==1){state.form.authType=3;return}state.form.isTls==0&&(state.form.authType="")},getCertificateList=()=>{};return watch(()=>state.form.isTls,e=>{e==0&&(state.form.authType="")}),onMounted(()=>{getDetail()}),{mirrorRef,activeName,getDetail,network_server_type,network_protocols,submit,initData,handleChangeType,getCertificateList,...toRefs(props),...toRefs(state)}}}),_hoisted_1={class:"collapse-wrap"},_hoisted_2=createTextVNode("\u662F"),_hoisted_3=createTextVNode("\u5426"),_hoisted_4={style:{position:"absolute",right:"20px",top:"20px"}},_hoisted_5=createTextVNode("\u53D6\u6D88"),_hoisted_6=createTextVNode("\u63D0\u4EA4");function _sfc_render(e,o,k,C,y,F){const a=resolveComponent("el-input"),l=resolveComponent("el-form-item"),r=resolveComponent("el-option"),s=resolveComponent("el-select"),m=resolveComponent("el-radio"),p=resolveComponent("el-radio-group"),c=resolveComponent("el-switch"),d=resolveComponent("el-form"),n=resolveComponent("el-collapse-item"),f=resolveComponent("codeEditor"),V=resolveComponent("el-collapse"),B=resolveComponent("el-tab-pane"),u=resolveComponent("el-tabs"),i=resolveComponent("el-button"),N=resolveComponent("el-card");return openBlock(),createBlock(N,{class:"system-dic-container",style:{position:"relative"}},{default:withCtx(()=>[createVNode(u,{modelValue:e.activeName,"onUpdate:modelValue":o[20]||(o[20]=t=>e.activeName=t),class:"demo-tabs"},{default:withCtx(()=>[createVNode(B,{label:"\u7F16\u8F91\u670D\u52A1\u5668",name:"first"},{default:withCtx(()=>[createVNode(V,{modelValue:e.activeViewName,"onUpdate:modelValue":o[19]||(o[19]=t=>e.activeViewName=t)},{default:withCtx(()=>[createVNode(n,{title:"\u57FA\u672C\u4FE1\u606F",name:"1"},{default:withCtx(()=>[createBaseVNode("div",_hoisted_1,[createVNode(d,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"98px"},{default:withCtx(()=>[createVNode(l,{label:"\u540D\u79F0"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.name,"onUpdate:modelValue":o[0]||(o[0]=t=>e.form.name=t),placeholder:"\u8BF7\u586B\u5199\u540D\u79F0"},null,8,["modelValue"])]),_:1}),createVNode(l,{label:"\u7C7B\u578B"},{default:withCtx(()=>[createVNode(s,{onChange:e.handleChangeType,modelValue:e.form.types,"onUpdate:modelValue":o[1]||(o[1]=t=>e.form.types=t),placeholder:"\u8BF7\u9009\u62E9\u7C7B\u578B"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.network_server_type,t=>(openBlock(),createBlock(r,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["onChange","modelValue"])]),_:1}),e.form.types=="tcp"?(openBlock(),createBlock(l,{key:0,label:"\u7C98\u62C6\u5305\u89C4\u5219"},{default:withCtx(()=>[createVNode(s,{onChange:e.initData,modelValue:e.stickValue,"onUpdate:modelValue":o[2]||(o[2]=t=>e.stickValue=t),placeholder:"\u8BF7\u9009\u62E9\u7C7B\u578B"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.stick_type,t=>(openBlock(),createBlock(r,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["onChange","modelValue"])]),_:1})):createCommentVNode("",!0),e.form.types=="tcp"&&e.stickValue?(openBlock(),createBlock(l,{key:1},{default:withCtx(()=>[e.stickValue=="\u5206\u9694\u7B26"?(openBlock(),createBlock(l,{key:0,class:"flex-column",label:"\u5206\u9694\u7B26"},{default:withCtx(()=>[createVNode(a,{modelValue:e.stick["delimit,omitempty"],"onUpdate:modelValue":o[3]||(o[3]=t=>e.stick["delimit,omitempty"]=t),placeholder:"\u8BF7\u586B\u5199\u5206\u9694\u7B26"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u81EA\u5B9A\u4E49\u811A\u672C"?(openBlock(),createBlock(l,{key:1,class:"flex-column",label:"\u81EA\u5B9A\u4E49\u811A\u672C"},{default:withCtx(()=>[createVNode(a,{modelValue:e.stick["custom,omitempty"],"onUpdate:modelValue":o[4]||(o[4]=t=>e.stick["custom,omitempty"]=t),placeholder:"\u8BF7\u586B\u5199\u81EA\u5B9A\u4E49\u811A\u672C"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u56FA\u5B9A\u957F\u5EA6"?(openBlock(),createBlock(l,{key:2,class:"flex-column",label:"\u56FA\u5B9A\u957F\u5EA6"},{default:withCtx(()=>[createVNode(a,{type:"number",modelValue:e.stick["fixedLen,omitempty"],"onUpdate:modelValue":o[5]||(o[5]=t=>e.stick["fixedLen,omitempty"]=t),placeholder:"\u8BF7\u586B\u5199\u56FA\u5B9A\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u957F\u5EA6\u5B57\u6BB5"?(openBlock(),createBlock(l,{key:3,class:"flex-column",label:"\u957F\u5EA6"},{default:withCtx(()=>[createVNode(a,{type:"number",modelValue:e.stick["len,omitempty"].len,"onUpdate:modelValue":o[6]||(o[6]=t=>e.stick["len,omitempty"].len=t),placeholder:"\u8BF7\u586B\u5199\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u957F\u5EA6\u5B57\u6BB5"?(openBlock(),createBlock(l,{key:4,class:"flex-column",label:"\u504F\u79FB\u91CF"},{default:withCtx(()=>[createVNode(a,{type:"number",modelValue:e.stick["len,omitempty"].offset,"onUpdate:modelValue":o[7]||(o[7]=t=>e.stick["len,omitempty"].offset=t),placeholder:"\u8BF7\u586B\u5199\u504F\u79FB\u91CF"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.stickValue=="\u957F\u5EA6\u5B57\u6BB5"?(openBlock(),createBlock(l,{key:5,class:"flex-column",label:"\u5927\u5C0F\u7AEF"},{default:withCtx(()=>[createVNode(s,{modelValue:e.stick["len,omitempty"].endian,"onUpdate:modelValue":o[8]||(o[8]=t=>e.stick["len,omitempty"].endian=t),placeholder:"\u8BF7\u9009\u62E9\u5927\u5C0F\u7AEF"},{default:withCtx(()=>[createVNode(r,{label:"\u5927\u7AEF",value:"\u5927\u7AEF"}),createVNode(r,{label:"\u5C0F\u7AEF",value:"\u5C0F\u7AEF"})]),_:1},8,["modelValue"])]),_:1})):createCommentVNode("",!0)]),_:1})):createCommentVNode("",!0),createVNode(l,{label:"\u5730\u5740"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.addr,"onUpdate:modelValue":o[9]||(o[9]=t=>e.form.addr=t),placeholder:"\u7AEF\u53E3\u53F7"},null,8,["modelValue"])]),_:1}),createVNode(l,{label:"\u5F00\u542FTLS"},{default:withCtx(()=>[createVNode(p,{modelValue:e.form.isTls,"onUpdate:modelValue":o[10]||(o[10]=t=>e.form.isTls=t),class:"ml-4"},{default:withCtx(()=>[createVNode(m,{label:1},{default:withCtx(()=>[_hoisted_2]),_:1}),createVNode(m,{label:0},{default:withCtx(()=>[_hoisted_3]),_:1})]),_:1},8,["modelValue"])]),_:1}),e.form.isTls==1&&e.form.types!="mqtt_server"?(openBlock(),createBlock(l,{key:2,label:"\u9009\u62E9\u8BC1\u4E66"},{default:withCtx(()=>[createVNode(s,{modelValue:e.form.certificateId,"onUpdate:modelValue":o[11]||(o[11]=t=>e.form.certificateId=t),placeholder:"\u8BF7\u9009\u62E9\u8BC1\u4E66"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.certificateList,t=>(openBlock(),createBlock(r,{key:t.id,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.form.isTls==1&&e.form.types=="mqtt_server"?(openBlock(),createBlock(l,{key:3,label:"\u63A5\u5165\u65B9\u5F0F"},{default:withCtx(()=>[createVNode(s,{modelValue:e.form.authType,"onUpdate:modelValue":o[12]||(o[12]=t=>e.form.authType=t),placeholder:"\u9009\u62E9\u63A5\u5165\u65B9\u5F0F"},{default:withCtx(()=>[createVNode(r,{label:"Basic",value:1}),createVNode(r,{label:"AccessToken",value:2})]),_:1},8,["modelValue"]),e.form.authType==1?(openBlock(),createBlock(l,{key:0,class:"flex-column",label:"\u7528\u6237\u540D"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.authUser,"onUpdate:modelValue":o[13]||(o[13]=t=>e.form.authUser=t),placeholder:"\u8BF7\u586B\u5199\u7528\u6237\u540D"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.form.authType==1?(openBlock(),createBlock(l,{key:1,class:"flex-column",label:"\u5BC6\u7801"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.authPasswd,"onUpdate:modelValue":o[14]||(o[14]=t=>e.form.authPasswd=t),placeholder:"\u8BF7\u586B\u5199\u5BC6\u7801"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0),e.form.authType==2?(openBlock(),createBlock(l,{key:2,class:"flex-column",label:"Aceess Token"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.accessToken,"onUpdate:modelValue":o[15]||(o[15]=t=>e.form.accessToken=t),placeholder:"\u8BF7\u586B\u5199Aceess Token"},null,8,["modelValue"])]),_:1})):createCommentVNode("",!0)]),_:1})):createCommentVNode("",!0),createVNode(l,{label:"\u542F\u7528"},{default:withCtx(()=>[createVNode(c,{"active-value":1,"inactive-value":0,modelValue:e.form.status,"onUpdate:modelValue":o[16]||(o[16]=t=>e.form.status=t)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1}),createVNode(n,{title:"\u6CE8\u518C\u5305",name:"2"},{default:withCtx(()=>[createVNode(d,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"98px"},{default:withCtx(()=>[createVNode(l,{label:"\u6B63\u5219\u8868\u8FBE\u5F0F"},{default:withCtx(()=>[createVNode(a,{modelValue:e.form.register.regex,"onUpdate:modelValue":o[17]||(o[17]=t=>e.form.register.regex=t),placeholder:"\u8BF7\u586B\u5199\u540D\u79F0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1}),createVNode(n,{title:"\u534F\u8BAE\u9002\u914D",name:"3"},{default:withCtx(()=>[createVNode(d,{style:{width:"600px",margin:"0 auto"},model:e.form,"label-width":"98px"},{default:withCtx(()=>[createVNode(l,{label:"\u534F\u8BAE"},{default:withCtx(()=>[createVNode(s,{modelValue:e.form.protocol.name,"onUpdate:modelValue":o[18]||(o[18]=t=>e.form.protocol.name=t),placeholder:"\u8BF7\u9009\u62E9\u534F\u8BAE\u9002\u914D"},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.network_protocols,t=>(openBlock(),createBlock(r,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),createVNode(l,{label:"\u534F\u8BAE\u53C2\u6570"},{default:withCtx(()=>[createVNode(f,{class:"params",ref:"mirrorRef",mode:e.resourceModalPro.mode,content:e.resourceModalPro.content},null,8,["mode","content"])]),_:1})]),_:1},8,["model"])]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["modelValue"]),createBaseVNode("div",_hoisted_4,[createVNode(i,{size:"medium"},{default:withCtx(()=>[_hoisted_5]),_:1}),createVNode(i,{onClick:e.submit,size:"medium",type:"primary"},{default:withCtx(()=>[_hoisted_6]),_:1},8,["onClick"])])]),_:1})}var edit=_export_sfc(_sfc_main,[["render",_sfc_render],["__scopeId","data-v-b3de604c"]]);export{edit as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046959.js b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046959.js new file mode 100644 index 0000000..e4b25b2 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/edit.17011843046959.js @@ -0,0 +1 @@ +import{L,a2 as X,h as J,k as Y,ab as O,S as i,T as o,j as q,aD as G,aF as H,ai as n,o as s,_ as a,b as h,a as _,a8 as b,F as y,U as N,V as U,X as K,Y as c}from"./vue.1701184304695.js";import{_ as Q}from"./index.170118430469524.js";import W from"./serverDetail.17011843046952.js";import{a as R}from"./index.170118430469527.js";import{_ as Z,E as x}from"./index.1701184304695.js";const ee=L({name:"tunnelCreate",components:{codeEditor:Q,serverDetail:W},props:{type:{type:String,default:""}},setup(l,t){const{proxy:A}=q(),w=G(),S=H(),{network_tunnel_type:M,tunnel_serial_baudrate:v,tunnel_serial_databits:r,tunnel_serial_stopbits:m,tunnel_serial_parity:d,network_protocols:V}=A.useDict("network_tunnel_type","tunnel_serial_baudrate","tunnel_serial_databits","tunnel_serial_stopbits","tunnel_serial_parity","network_protocols"),u=X({resourceModalPro:{mode:"",content:""},detail:{},activeViewName:["1","2","3","4","5"],form:{id:"",name:"\u65B0\u5EFA\u901A\u9053",types:"serial",status:!1,addr:"",serial:{baud_rate:"9600",data_bits:"6",stop_bits:"1",parity:"0"},retry:{enable:!0,timeout:30,maximum:0},protoccol:{name:"Modbus RTU",options:{}},heartbeat:{enable:!1,hex:"",regex:"^\\w+$",text:"",timeout:30}}}),p=J("first"),f=J("mirrorRef"),F=()=>{u.form.serial.parity==0&&(u.form.serial.rs485=!1,delete u.form.serial.port),(u.form.serial.parity==1||u.form.serial.parity==2)&&(u.form.serial.port=null,delete u.form.serial.rs485),R.tunnel.editItem({...u.form}).then(C=>{x.success("\u4FEE\u6539\u6210\u529F"),S.go(-1)})},E=()=>{const C=w.params&&w.params.id;R.tunnel.getDetail({id:C}).then(B=>{const{id:g,name:D,types:e,status:P,addr:$,serial:I,retry:T,protoccol:k,heartbeat:j}=B;u.form.name=D,u.form.types=e,u.form.addr=$,u.form.status=P,u.form.serial=JSON.parse(I),u.form.retry=JSON.parse(T),u.form.heartbeat=JSON.parse(j),u.form.protoccol=k?JSON.parse(k):{name:"Modbus RTU",options:{}},u.form.id=g;let z=JSON.stringify(JSON.parse(k).options);u.resourceModalPro.content=JSON.stringify(JSON.parse(z),null,4),f.value.setValue(u.resourceModalPro.content)})};return Y(()=>{E()}),{mirrorRef:f,activeName:p,getDetail:E,network_tunnel_type:M,tunnel_serial_baudrate:v,tunnel_serial_databits:r,tunnel_serial_stopbits:m,tunnel_serial_parity:d,network_protocols:V,submit:F,...O(l),...O(u)}}}),le={class:"collapse-wrap"},ae={class:"collapse-wrap"},oe=c("/dev/ttyS0"),te={style:{position:"absolute",right:"20px",top:"20px"}},ue=c("\u53D6\u6D88"),re=c("\u63D0\u4EA4");function ne(l,t,A,w,S,M){const v=n("el-input"),r=n("el-form-item"),m=n("el-option"),d=n("el-select"),V=n("el-switch"),u=n("el-form"),p=n("el-collapse-item"),f=n("el-button"),F=n("el-input-number"),E=n("codeEditor"),C=n("el-collapse"),B=n("el-tab-pane"),g=n("el-tabs"),D=n("el-card");return s(),i(D,{class:"system-dic-container",style:{position:"relative"}},{default:o(()=>[a(g,{modelValue:l.activeName,"onUpdate:modelValue":t[14]||(t[14]=e=>l.activeName=e),class:"demo-tabs"},{default:o(()=>[a(B,{label:"\u7F16\u8F91\u901A\u9053",name:"first"},{default:o(()=>[a(C,{modelValue:l.activeViewName,"onUpdate:modelValue":t[13]||(t[13]=e=>l.activeViewName=e)},{default:o(()=>[a(p,{title:"\u57FA\u672C\u4FE1\u606F",name:"1"},{default:o(()=>[h("div",le,[a(u,{style:{width:"600px",margin:"0 auto"},model:l.form,"label-width":"68px"},{default:o(()=>[a(r,{label:"\u540D\u79F0"},{default:o(()=>[a(v,{modelValue:l.form.name,"onUpdate:modelValue":t[0]||(t[0]=e=>l.form.name=e),placeholder:"\u8BF7\u586B\u5199\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(r,{label:"\u7C7B\u578B"},{default:o(()=>[a(d,{modelValue:l.form.types,"onUpdate:modelValue":t[1]||(t[1]=e=>l.form.types=e),placeholder:"\u8BF7\u9009\u62E9\u7C7B\u578B"},{default:o(()=>[(s(!0),_(y,null,b(l.network_tunnel_type,e=>(s(),i(m,{key:e.value,label:e.label,value:e.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),N(a(r,{label:"\u5730\u5740"},{default:o(()=>[a(v,{modelValue:l.form.addr,"onUpdate:modelValue":t[2]||(t[2]=e=>l.form.addr=e),placeholder:"\u7AEF\u53E3\u53F7\uFF0CIP:\u7AEF\u53E3"},null,8,["modelValue"])]),_:1},512),[[U,l.form.types!="serial"]]),a(r,{label:"\u542F\u7528"},{default:o(()=>[a(V,{modelValue:l.form.status,"onUpdate:modelValue":t[3]||(t[3]=e=>l.form.status=e)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1}),N(a(p,{title:"\u4E32\u53E3\u53C2\u6570",name:"2"},{default:o(()=>[h("div",ae,[a(u,{style:{width:"600px",margin:"0 auto"},model:l.form,"label-width":"68px"},{default:o(()=>[a(r,{label:"\u7AEF\u53E3"},{default:o(()=>[a(f,null,{default:o(()=>[oe]),_:1})]),_:1}),a(r,{label:"\u6CE2\u7279\u7387"},{default:o(()=>[a(d,{modelValue:l.form.serial.baud_rate,"onUpdate:modelValue":t[4]||(t[4]=e=>l.form.serial.baud_rate=e),placeholder:"\u8BF7\u9009\u62E9\u6CE2\u7279\u7387"},{default:o(()=>[(s(!0),_(y,null,b(l.tunnel_serial_baudrate,e=>(s(),i(m,{key:e.value,label:e.label,value:e.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(r,{label:"\u6570\u636E\u4F4D"},{default:o(()=>[a(d,{modelValue:l.form.serial.data_bits,"onUpdate:modelValue":t[5]||(t[5]=e=>l.form.serial.data_bits=e),placeholder:"\u8BF7\u9009\u62E9\u6570\u636E\u4F4D"},{default:o(()=>[(s(!0),_(y,null,b(l.tunnel_serial_databits,e=>(s(),i(m,{key:e.value,label:e.label,value:e.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(r,{label:"\u505C\u6B62\u4F4D"},{default:o(()=>[a(d,{modelValue:l.form.serial.stop_bits,"onUpdate:modelValue":t[6]||(t[6]=e=>l.form.serial.stop_bits=e),placeholder:"\u8BF7\u9009\u62E9\u505C\u6B62\u4F4D"},{default:o(()=>[(s(!0),_(y,null,b(l.tunnel_serial_stopbits,e=>(s(),i(m,{key:e.value,label:e.label,value:e.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(r,{label:"\u68C0\u9A8C\u4F4D"},{default:o(()=>[a(d,{modelValue:l.form.serial.parity,"onUpdate:modelValue":t[7]||(t[7]=e=>l.form.serial.parity=e),placeholder:"\u8BF7\u9009\u62E9\u68C0\u9A8C\u4F4D"},{default:o(()=>[(s(!0),_(y,null,b(l.tunnel_serial_parity,e=>(s(),i(m,{key:e.value,label:e.label,value:e.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1},512),[[U,l.form.types=="serial"]]),N(a(p,{title:"\u5FC3\u8DF3\u5305",name:"4"},{default:o(()=>[a(u,{style:{width:"600px",margin:"0 auto"},model:l.form,"label-width":"68px"},{default:o(()=>[a(r,{label:"\u542F\u7528"},{default:o(()=>[a(V,{modelValue:l.form.heartbeat.enable,"onUpdate:modelValue":t[8]||(t[8]=e=>l.form.heartbeat.enable=e)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},512),[[U,l.form.type!="serial"]]),l.form.types=="serial"||l.form.types=="tcp-client"||l.form.types=="udp-client"?(s(),i(p,{key:0,title:"\u65AD\u7EBF\u91CD\u8FDE",name:"4"},{default:o(()=>[a(u,{style:{width:"600px",margin:"0 auto"},model:l.form,"label-width":"68px"},{default:o(()=>[a(r,{label:"\u542F\u7528"},{default:o(()=>[a(V,{modelValue:l.form.retry.enable,"onUpdate:modelValue":t[9]||(t[9]=e=>l.form.retry.enable=e)},null,8,["modelValue"])]),_:1}),a(r,{label:"\u95F4\u9694"},{default:o(()=>[a(F,{modelValue:l.form.retry.timeout,"onUpdate:modelValue":t[10]||(t[10]=e=>l.form.retry.timeout=e),min:0,onChange:l.handleChange},null,8,["modelValue","onChange"])]),_:1}),a(r,{label:"\u6700\u5927\u6B21\u6570"},{default:o(()=>[a(F,{modelValue:l.form.retry.maximum,"onUpdate:modelValue":t[11]||(t[11]=e=>l.form.retry.maximum=e),min:0,onChange:l.handleChange},null,8,["modelValue","onChange"])]),_:1})]),_:1},8,["model"])]),_:1})):K("",!0),a(p,{title:"\u534F\u8BAE\u9002\u914D",name:"5"},{default:o(()=>[a(u,{style:{width:"600px",margin:"0 auto"},model:l.form,"label-width":"68px"},{default:o(()=>[a(r,{label:"\u534F\u8BAE"},{default:o(()=>[a(d,{modelValue:l.form.protoccol.name,"onUpdate:modelValue":t[12]||(t[12]=e=>l.form.protoccol.name=e),placeholder:"\u8BF7\u9009\u62E9\u534F\u8BAE\u9002\u914D"},{default:o(()=>[(s(!0),_(y,null,b(l.network_protocols,e=>(s(),i(m,{key:e.value,label:e.label,value:e.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(r,{label:"\u534F\u8BAE\u53C2\u6570"},{default:o(()=>[a(E,{class:"params",ref:"mirrorRef",mode:l.resourceModalPro.mode,content:l.resourceModalPro.content},null,8,["mode","content"])]),_:1})]),_:1},8,["model"])]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["modelValue"]),h("div",te,[a(f,{size:"medium"},{default:o(()=>[ue]),_:1}),a(f,{onClick:l.submit,size:"medium",type:"primary"},{default:o(()=>[re]),_:1},8,["onClick"])])]),_:1})}var fe=Z(ee,[["render",ne],["__scopeId","data-v-c7d447f8"]]);export{fe as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editAttr.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editAttr.1701184304695.css new file mode 100644 index 0000000..3e64869 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editAttr.1701184304695.css @@ -0,0 +1 @@ +.input-box{display:flex;flex-direction:row;justify-content:space-between;margin-top:10px}.input-option{line-height:30px;padding-top:5px;width:140px}.input-option i{margin:0 5px;border:1px solid #c3c3c3;font-size:16px}.input-options{display:flex;align-items:center;color:#409eff;cursor:pointer}.jslist{width:100%;border:1px solid #e8e8e8;padding:10px;margin-bottom:10px}.jsonlist{display:flex;flex-direction:row;justify-content:space-between}.jsonoption a{margin:0 10px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editAttr.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editAttr.1701184304695.js new file mode 100644 index 0000000..1a305d7 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editAttr.1701184304695.js @@ -0,0 +1 @@ +import{a as O}from"./index.170118430469519.js";import{_ as P,v as q,x as I,y as z,E as $}from"./index.1701184304695.js";import W from"./editOption.1701184304695.js";import{L as X,h as N,a2 as Y,ab as Z,a as f,_ as t,T as a,e as G,ai as F,o as p,b as s,Y as V,Z as R,F as E,a8 as B,S as i,X as y}from"./vue.1701184304695.js";const H=X({name:"deviceEditPro",components:{Plus:q,Minus:I,Right:z,EditOption:W},setup(e,{emit:o}){const L=N(null),M=N(),l=Y({isShowDialog:!1,typeData:[],type:"",types:"",productId:0,valueType:{type:"",maxLength:"",trueText:"\u662F",trueValue:"true",falseText:"\u5426",falseValue:"false"},elementType:{type:"",maxLength:""},enumdata:[{text:"",value:""}],jsondata:[],ruleForm:{id:0,productId:0,name:"",key:"",transportProtocol:"",accessMode:1,status:1,valueType:{type:"",maxLength:""},desc:""},rules:{name:[{required:!0,message:"\u5C5E\u6027\u5B9A\u4E49\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],key:[{required:!0,message:"\u5C5E\u6027\u5B9A\u4E49\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],accessMode:[{required:!0,message:"\u8BF7\u9009\u62E9\u662F\u5426\u53EA\u8BFB",trigger:"blur"}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u6570\u636E\u7C7B\u578B",trigger:"blur"}]}}),J=(n,h)=>{d(),O.product.getDataType({status:-1}).then(j=>{const C=Object.values(j.dataType);C.forEach((U,u)=>{u==0?(C[u].label="\u57FA\u7840\u7C7B\u578B",C[u].options=U):(C[u].label="\u6269\u5C55\u7C7B\u578B",C[u].options=U)}),console.log(n),console.log(h),l.typeData=C||[]}),l.ruleForm=n,n.valueType&&(l.ruleForm=n,l.productId=h,l.valueType=n.valueType,l.ruleForm.valueType.type=n.valueType.type,l.ruleForm.type=n.valueType.type,l.type=n.valueType.type,l.ruleForm.accessMode=n.accessMode,n.valueType.elementType&&(l.elementType=n.valueType.elementType,l.types=n.valueType.elementType.type),n.type=="enum"&&(l.enumdata=n.valueType.elements),n.type=="object"&&(l.jsondata=n.valueType.properties),n.type=="array"&&l.types=="enum"&&(l.enumdata=n.valueType.elementType.elements),n.type=="array"&&l.types=="object"&&(l.jsondata=n.valueType.elementType.properties)),l.isShowDialog=!0},d=()=>{l.ruleForm={name:"",key:"",transportProtocol:"",accessMode:1,status:1,valueType:{type:"",maxLength:""},desc:""},l.type="",l.types="",l.valueType={},l.elementType={},l.jsondata=[],l.enumdata=[{text:"",value:""}]},m=n=>{l.type=n,l.ruleForm.type=n,console.log(n)},k=n=>{console.log(n),l.types=n,console.log(n)},A=()=>{l.enumdata.push({text:"",value:""})},c=n=>{l.enumdata.splice(n,1)},D=n=>{l.jsondata.splice(n,1)},v=()=>{M.value.openDialog({product_id:0,id:0})},g=n=>{l.jsondata.push(n),console.log(l.jsondata)},b=()=>{l.isShowDialog=!1};return{editOptionRef:M,getOptionData:g,openDialog:J,deljson:D,addEnum:A,delEnum:c,addJson:v,seletChange:m,seletChanges:k,closeDialog:b,onCancel:()=>{b()},onSubmit:()=>{const n=G(L);!n||n.validate(h=>{h&&(l.ruleForm.id!==0?(l.type=="enum"&&(l.valueType.elements=l.enumdata),l.type=="object"&&(l.valueType.properties=l.jsondata),l.type=="array"&&(l.valueType.elementType=l.elementType,l.types=="enum"&&(l.valueType.elementType={elements:l.enumdata,type:"enum"}),l.types=="object"&&(l.valueType.elementType={properties:l.jsondata,type:"object"})),l.ruleForm.valueType=l.valueType,l.ruleForm.productId=l.productId,O.model.propertyedit(l.ruleForm).then(()=>{$.success("\u5C5E\u6027\u5B9A\u4E49\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),b(),o("typeList")})):(l.type=="enum"&&(l.valueType.elements=l.enumdata),l.type=="object"&&(l.valueType.properties=l.jsondata),l.type=="array"&&(l.valueType.elementType=l.elementType,l.types=="enum"&&(l.valueType.elementType={elements:l.enumdata,type:"enum"}),l.types=="object"&&(l.valueType.elementType={properties:l.jsondata,type:"object"})),l.ruleForm.valueType=l.valueType,O.model.propertyadd(l.ruleForm).then(()=>{$.success("\u5C5E\u6027\u5B9A\u4E49\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),b(),o("typeList")})))})},formRef:L,...Z(l)}}}),K={class:"system-edit-dic-container"},Q={class:"input-box"},w=s("span",{style:{margin:"0px 10px"}},"~",-1),x={class:"input-box"},ee=V(),ue=s("span",{style:{margin:"0px 10px"}},"~",-1),le={style:{margin:"0px 10px"}},te={class:"input-option"},oe={class:"jsonlist"},ae=s("div",null,"\u53C2\u6570\u540D\u79F0\uFF1A",-1),ne={style:{width:"60%"}},pe={class:"jsonoption"},se=V("\u5220\u9664"),de={style:{display:"block",width:"100%"}},re=s("div",null,"\u6DFB\u52A0\u53C2\u6570",-1),me={key:7},ie={class:"input-box"},ye=s("span",{style:{margin:"0px 10px"}},"~",-1),Fe={class:"input-box"},fe=V(),ve=s("span",{style:{margin:"0px 10px"}},"~",-1),Te={style:{margin:"0px 10px"}},Ve={class:"input-option"},Ce={class:"jsonlist"},Ee=s("div",null,"\u53C2\u6570\u540D\u79F0\uFF1A",-1),Be={style:{width:"60%"}},be={class:"jsonoption"},ge=V("\u7F16\u8F91"),he=V("\u5220\u9664"),ke={style:{display:"block",width:"100%"}},Ae=s("div",null,"\u6DFB\u52A0\u53C2\u6570",-1),ce=V("\u53EA\u8BFB"),De=V("\u8BFB\u5199"),_e={class:"dialog-footer"},je=V("\u53D6 \u6D88");function Ue(e,o,L,M,l,J){const d=F("el-input"),m=F("el-form-item"),k=F("el-option"),A=F("el-option-group"),c=F("el-select"),D=F("Right"),v=F("el-icon"),g=F("Plus"),b=F("Minus"),_=F("el-link"),S=F("el-radio"),n=F("el-radio-group"),h=F("el-form"),j=F("el-button"),C=F("el-dialog"),U=F("EditOption");return p(),f("div",K,[t(C,{title:(e.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u5C5E\u6027\u5B9A\u4E49",modelValue:e.isShowDialog,"onUpdate:modelValue":o[24]||(o[24]=u=>e.isShowDialog=u),width:"769px"},{footer:a(()=>[s("span",_e,[t(j,{onClick:e.onCancel,size:"default"},{default:a(()=>[je]),_:1},8,["onClick"]),t(j,{type:"primary",onClick:e.onSubmit,size:"default"},{default:a(()=>[V(R(e.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:a(()=>[t(h,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"120px"},{default:a(()=>[t(m,{label:"\u5C5E\u6027\u5B9A\u4E49\u6807\u8BC6",prop:"key"},{default:a(()=>[t(d,{modelValue:e.ruleForm.key,"onUpdate:modelValue":o[0]||(o[0]=u=>e.ruleForm.key=u),placeholder:"\u8BF7\u8F93\u5165\u5C5E\u6027\u5B9A\u4E49\u6807\u8BC6",disabled:e.ruleForm.id!==0},null,8,["modelValue","disabled"])]),_:1}),t(m,{label:"\u5C5E\u6027\u5B9A\u4E49\u540D\u79F0",prop:"name"},{default:a(()=>[t(d,{modelValue:e.ruleForm.name,"onUpdate:modelValue":o[1]||(o[1]=u=>e.ruleForm.name=u),placeholder:"\u8BF7\u8F93\u5165\u5C5E\u6027\u5B9A\u4E49\u540D\u79F0"},null,8,["modelValue"])]),_:1}),t(m,{label:"\u6570\u636E\u7C7B\u578B",prop:"type"},{default:a(()=>[t(c,{modelValue:e.valueType.type,"onUpdate:modelValue":o[2]||(o[2]=u=>e.valueType.type=u),placeholder:"\u8BF7\u9009\u62E9\u6570\u636E\u7C7B\u578B",onChange:e.seletChange,disabled:e.ruleForm.id!==0},{default:a(()=>[(p(!0),f(E,null,B(e.typeData,u=>(p(),i(A,{key:u.label,label:u.label},{default:a(()=>[(p(!0),f(E,null,B(u.options,r=>(p(),i(k,{key:r.type,label:r.title,value:r.type},null,8,["label","value"]))),128))]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue","onChange","disabled"])]),_:1}),e.type=="float"||e.type=="double"?(p(),i(m,{key:0,label:"\u7CBE\u5EA6",prop:"decimals"},{default:a(()=>[t(d,{modelValue:e.valueType.decimals,"onUpdate:modelValue":o[3]||(o[3]=u=>e.valueType.decimals=u),placeholder:"\u8BF7\u8F93\u5165\u7CBE\u5EA6"},null,8,["modelValue"])]),_:1})):y("",!0),e.type=="int"||e.type=="long"||e.type=="float"||e.type=="double"?(p(),i(m,{key:1,label:"\u5355\u4F4D",prop:"unit"},{default:a(()=>[t(d,{modelValue:e.valueType.unit,"onUpdate:modelValue":o[4]||(o[4]=u=>e.valueType.unit=u),placeholder:"\u8BF7\u8F93\u5165\u5355\u4F4D"},null,8,["modelValue"])]),_:1})):y("",!0),e.type=="string"?(p(),i(m,{key:2,label:"\u6700\u5927\u957F\u5EA6",prop:"maxLength"},{default:a(()=>[t(d,{modelValue:e.valueType.maxLength,"onUpdate:modelValue":o[5]||(o[5]=u=>e.valueType.maxLength=u),placeholder:"\u8BF7\u8F93\u5165\u6700\u5927\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):y("",!0),e.type=="date"?(p(),i(m,{key:3,label:"\u65F6\u95F4\u683C\u5F0F",prop:"maxLength"},{default:a(()=>[t(d,{modelValue:e.valueType.maxLength,"onUpdate:modelValue":o[6]||(o[6]=u=>e.valueType.maxLength=u),placeholder:"\u8BF7\u8F93\u5165\u65F6\u95F4\u683C\u5F0F"},null,8,["modelValue"])]),_:1})):y("",!0),e.type=="boolean"?(p(),i(m,{key:4,label:"\u5E03\u5C14\u503C",prop:"trueText"},{default:a(()=>[s("div",Q,[t(d,{modelValue:e.valueType.trueText,"onUpdate:modelValue":o[7]||(o[7]=u=>e.valueType.trueText=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u662F"},null,8,["modelValue"]),w,t(d,{modelValue:e.valueType.trueValue,"onUpdate:modelValue":o[8]||(o[8]=u=>e.valueType.trueValue=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"true"},null,8,["modelValue"])]),s("div",x,[t(d,{modelValue:e.valueType.falseText,"onUpdate:modelValue":o[9]||(o[9]=u=>e.valueType.falseText=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u5426"},null,8,["modelValue"]),ee,ue,t(d,{modelValue:e.valueType.falseValue,"onUpdate:modelValue":o[10]||(o[10]=u=>e.valueType.falseValue=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"false"},null,8,["modelValue"])])]),_:1})):y("",!0),e.type=="enum"?(p(),i(m,{key:5,label:"\u679A\u4E3E\u9879",prop:"maxLength"},{default:a(()=>[(p(!0),f(E,null,B(e.enumdata,(u,r)=>(p(),f("div",{class:"input-box",key:r},[t(d,{modelValue:u.text,"onUpdate:modelValue":T=>u.text=T,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u503C"},null,8,["modelValue","onUpdate:modelValue"]),s("span",le,[t(v,null,{default:a(()=>[t(D)]),_:1})]),t(d,{modelValue:u.value,"onUpdate:modelValue":T=>u.value=T,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u6587\u672C"},null,8,["modelValue","onUpdate:modelValue"]),s("div",te,[r==0?(p(),i(v,{key:0,onClick:e.addEnum},{default:a(()=>[t(g)]),_:1},8,["onClick"])):y("",!0),r!=0?(p(),i(v,{key:1,onClick:T=>e.delEnum(r)},{default:a(()=>[t(b)]),_:2},1032,["onClick"])):y("",!0)])]))),128))]),_:1})):y("",!0),e.type=="object"?(p(),i(m,{key:6,label:"JSON\u5BF9\u8C61",prop:"maxLength"},{default:a(()=>[(p(!0),f(E,null,B(e.jsondata,(u,r)=>(p(),f("div",{key:r,class:"jslist"},[s("div",oe,[ae,s("div",ne,R(u.name),1),s("div",pe,[t(_,{type:"primary",onClick:T=>e.deljson(r)},{default:a(()=>[se]),_:2},1032,["onClick"])])])]))),128)),s("div",de,[s("div",{class:"input-options",onClick:o[11]||(o[11]=(...u)=>e.addJson&&e.addJson(...u))},[t(v,null,{default:a(()=>[t(g)]),_:1}),re])])]),_:1})):y("",!0),e.type=="array"?(p(),f("div",me,[t(m,{label:"\u5143\u7D20\u7C7B\u578B",prop:"types"},{default:a(()=>[t(c,{modelValue:e.elementType.type,"onUpdate:modelValue":o[12]||(o[12]=u=>e.elementType.type=u),placeholder:"\u8BF7\u9009\u62E9\u5143\u7D20\u7C7B\u578B",onChange:e.seletChanges},{default:a(()=>[(p(!0),f(E,null,B(e.typeData,u=>(p(),i(A,{key:u.label,label:u.label},{default:a(()=>[(p(!0),f(E,null,B(u.options,r=>(p(),i(k,{key:r.type,label:r.title,value:r.type,disabled:r.type=="array"},null,8,["label","value","disabled"]))),128))]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),e.types=="float"||e.types=="double"?(p(),i(m,{key:0,label:"\u7CBE\u5EA6",prop:"decimals"},{default:a(()=>[t(d,{modelValue:e.elementType.decimals,"onUpdate:modelValue":o[13]||(o[13]=u=>e.elementType.decimals=u),placeholder:"\u8BF7\u8F93\u5165\u7CBE\u5EA6"},null,8,["modelValue"])]),_:1})):y("",!0),e.types=="int"||e.types=="long"||e.types=="float"||e.types=="double"?(p(),i(m,{key:1,label:"\u5355\u4F4D",prop:"unit"},{default:a(()=>[t(d,{modelValue:e.elementType.unit,"onUpdate:modelValue":o[14]||(o[14]=u=>e.elementType.unit=u),placeholder:"\u8BF7\u8F93\u5165\u5355\u4F4D"},null,8,["modelValue"])]),_:1})):y("",!0),e.types=="string"?(p(),i(m,{key:2,label:"\u6700\u5927\u957F\u5EA6",prop:"maxLength"},{default:a(()=>[t(d,{modelValue:e.elementType.maxLength,"onUpdate:modelValue":o[15]||(o[15]=u=>e.elementType.maxLength=u),placeholder:"\u8BF7\u8F93\u5165\u6700\u5927\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):y("",!0),e.types=="date"?(p(),i(m,{key:3,label:"\u65F6\u95F4\u683C\u5F0F",prop:"maxLength"},{default:a(()=>[t(d,{modelValue:e.elementType.maxLength,"onUpdate:modelValue":o[16]||(o[16]=u=>e.elementType.maxLength=u),placeholder:"\u8BF7\u8F93\u5165\u65F6\u95F4\u683C\u5F0F"},null,8,["modelValue"])]),_:1})):y("",!0),e.types=="boolean"?(p(),i(m,{key:4,label:"\u5E03\u5C14\u503C",prop:"maxLength"},{default:a(()=>[s("div",ie,[t(d,{modelValue:e.elementType.trueText,"onUpdate:modelValue":o[17]||(o[17]=u=>e.elementType.trueText=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u662F"},null,8,["modelValue"]),ye,t(d,{modelValue:e.elementType.trueValue,"onUpdate:modelValue":o[18]||(o[18]=u=>e.elementType.trueValue=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"true"},null,8,["modelValue"])]),s("div",Fe,[t(d,{modelValue:e.elementType.falseText,"onUpdate:modelValue":o[19]||(o[19]=u=>e.elementType.falseText=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u5426"},null,8,["modelValue"]),fe,ve,t(d,{modelValue:e.elementType.falseValue,"onUpdate:modelValue":o[20]||(o[20]=u=>e.elementType.falseValue=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"false"},null,8,["modelValue"])])]),_:1})):y("",!0),e.types=="enum"?(p(),i(m,{key:5,label:"\u679A\u4E3E\u9879",prop:"maxLength"},{default:a(()=>[(p(!0),f(E,null,B(e.enumdata,(u,r)=>(p(),f("div",{class:"input-box",key:r},[t(d,{modelValue:u.text,"onUpdate:modelValue":T=>u.text=T,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u503C"},null,8,["modelValue","onUpdate:modelValue"]),s("span",Te,[t(v,null,{default:a(()=>[t(D)]),_:1})]),t(d,{modelValue:u.value,"onUpdate:modelValue":T=>u.value=T,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u6587\u672C"},null,8,["modelValue","onUpdate:modelValue"]),s("div",Ve,[r==0?(p(),i(v,{key:0,onClick:e.addEnum},{default:a(()=>[t(g)]),_:1},8,["onClick"])):y("",!0),r!=0?(p(),i(v,{key:1,onClick:T=>e.delEnum(r)},{default:a(()=>[t(b)]),_:2},1032,["onClick"])):y("",!0)])]))),128))]),_:1})):y("",!0)])):y("",!0),e.types=="object"?(p(),i(m,{key:8,label:"JSON\u5BF9\u8C61",prop:"maxLength"},{default:a(()=>[(p(!0),f(E,null,B(e.jsondata,(u,r)=>(p(),f("div",{key:r,class:"jslist"},[s("div",Ce,[Ee,s("div",Be,R(u.data.name),1),s("div",be,[t(_,{type:"primary"},{default:a(()=>[ge]),_:1}),t(_,{type:"primary"},{default:a(()=>[he]),_:1})])])]))),128)),s("div",ke,[s("div",{class:"input-options",onClick:o[21]||(o[21]=(...u)=>e.addJson&&e.addJson(...u))},[t(v,null,{default:a(()=>[t(g)]),_:1}),Ae])])]),_:1})):y("",!0),t(m,{label:"\u662F\u5426\u53EA\u8BFB",prop:"accessMode"},{default:a(()=>[t(n,{modelValue:e.ruleForm.accessMode,"onUpdate:modelValue":o[22]||(o[22]=u=>e.ruleForm.accessMode=u)},{default:a(()=>[t(S,{label:1},{default:a(()=>[ce]),_:1}),t(S,{label:0},{default:a(()=>[De]),_:1})]),_:1},8,["modelValue"])]),_:1}),t(m,{label:"\u5C5E\u6027\u5B9A\u4E49\u63CF\u8FF0",prop:"desc"},{default:a(()=>[t(d,{modelValue:e.ruleForm.desc,"onUpdate:modelValue":o[23]||(o[23]=u=>e.ruleForm.desc=u),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5C5E\u6027\u5B9A\u4E49\u63CF\u8FF0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"]),t(U,{ref:"editOptionRef",onTypeList:e.getOptionData},null,8,["onTypeList"])])}var Re=P(H,[["render",Ue]]);export{Re as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editConfig.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editConfig.1701184304695.css new file mode 100644 index 0000000..184f18e --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editConfig.1701184304695.css @@ -0,0 +1 @@ +.flex[data-v-1662b554]{display:flex}.align-center[data-v-1662b554]{align-items:center} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editConfig.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editConfig.1701184304695.js new file mode 100644 index 0000000..96d4a56 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editConfig.1701184304695.js @@ -0,0 +1 @@ +import{_ as S,b as c,E as b}from"./index.1701184304695.js";import{L as v,h as T,a2 as h,ab as w,a as F,_ as u,T as a,j as I,e as U,ai as n,o as p,b as K,Y as C,Z as E,F as B,a8 as k,S as A}from"./vue.1701184304695.js";const z=v({name:"systemEditDicData",props:{sysYesNoOptions:{type:Array,default:()=>[]}},setup(e,{emit:l}){const{proxy:y}=I(),{param_class_type:V}=y.useDict("param_class_type"),g=T(null),r=h({isShowDialog:!1,ruleForm:{configId:0,configName:"",configKey:"",configValue:"",configType:"0",remark:"",moduleClassify:""},rules:{configName:[{required:!0,message:"\u53C2\u6570\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],configKey:[{required:!0,message:"\u53C2\u6570\u952E\u540D\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],configValue:[{required:!0,message:"\u53C2\u6570\u952E\u503C\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),i=s=>{t(),s&&(c.config.detail(s.configId).then(f=>{const d=f.data.data;d.configType=String(d.configType),r.ruleForm=d}),r.ruleForm=s),r.isShowDialog=!0},t=()=>{r.ruleForm={configId:0,configName:"",configKey:"",configValue:"",configType:"0",moduleClassify:"",remark:""}},m=()=>{r.isShowDialog=!1};return{openDialog:i,closeDialog:m,onCancel:()=>{m()},onSubmit:()=>{const s=U(g);!s||s.validate(f=>{f&&(r.ruleForm.configId!==0?c.config.edit(r.ruleForm).then(()=>{b.success("\u53C2\u6570\u4FEE\u6539\u6210\u529F"),m(),l("dataList")}):c.config.add(r.ruleForm).then(()=>{b.success("\u53C2\u6570\u6DFB\u52A0\u6210\u529F"),m(),l("dataList")}))})},formRef:g,...w(r),param_class_type:V}}}),L={class:"system-edit-dic-container"},$={class:"dialog-footer"},q=C("\u53D6 \u6D88");function R(e,l,y,V,g,r){const i=n("el-input"),t=n("el-form-item"),m=n("el-option"),D=n("el-select"),_=n("el-radio"),s=n("el-radio-group"),f=n("el-form"),d=n("el-button"),N=n("el-dialog");return p(),F("div",L,[u(N,{title:(e.ruleForm.configId!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u53C2\u6570",modelValue:e.isShowDialog,"onUpdate:modelValue":l[6]||(l[6]=o=>e.isShowDialog=o),width:"769px"},{footer:a(()=>[K("span",$,[u(d,{onClick:e.onCancel,size:"default"},{default:a(()=>[q]),_:1},8,["onClick"]),u(d,{type:"primary",onClick:e.onSubmit,size:"default"},{default:a(()=>[C(E(e.ruleForm.configId!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:a(()=>[u(f,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"90px"},{default:a(()=>[u(t,{label:"\u53C2\u6570\u540D\u79F0",prop:"configName"},{default:a(()=>[u(i,{modelValue:e.ruleForm.configName,"onUpdate:modelValue":l[0]||(l[0]=o=>e.ruleForm.configName=o),placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\u540D\u79F0"},null,8,["modelValue"])]),_:1}),u(t,{label:"\u53C2\u6570\u952E\u540D",prop:"configKey"},{default:a(()=>[u(i,{modelValue:e.ruleForm.configKey,"onUpdate:modelValue":l[1]||(l[1]=o=>e.ruleForm.configKey=o),placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\u952E\u540D"},null,8,["modelValue"])]),_:1}),u(t,{label:"\u5B57\u5178\u5206\u7C7B",prop:"moduleClassify"},{default:a(()=>[u(D,{modelValue:e.ruleForm.moduleClassify,"onUpdate:modelValue":l[2]||(l[2]=o=>e.ruleForm.moduleClassify=o),placeholder:"\u5B57\u5178\u5206\u7C7B",clearable:"",size:"default",style:{width:"240px"}},{default:a(()=>[(p(!0),F(B,null,k(e.param_class_type,o=>(p(),A(m,{label:o.label,value:o.value},null,8,["label","value"]))),256))]),_:1},8,["modelValue"])]),_:1}),u(t,{label:"\u53C2\u6570\u952E\u503C",prop:"configValue"},{default:a(()=>[u(i,{modelValue:e.ruleForm.configValue,"onUpdate:modelValue":l[3]||(l[3]=o=>e.ruleForm.configValue=o),placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\u952E\u503C"},null,8,["modelValue"])]),_:1}),u(t,{label:"\u7CFB\u7EDF\u5185\u7F6E",prop:"configType"},{default:a(()=>[u(s,{modelValue:e.ruleForm.configType,"onUpdate:modelValue":l[4]||(l[4]=o=>e.ruleForm.configType=o)},{default:a(()=>[(p(!0),F(B,null,k(e.sysYesNoOptions,o=>(p(),A(_,{key:o.value,label:Number(o.value)},{default:a(()=>[C(E(o.label),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1}),u(t,{label:"\u5907\u6CE8",prop:"remark"},{default:a(()=>[u(i,{modelValue:e.ruleForm.remark,"onUpdate:modelValue":l[5]||(l[5]=o=>e.ruleForm.remark=o),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var j=S(z,[["render",R]]);export{j as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editConfig.17011843046952.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editConfig.17011843046952.js new file mode 100644 index 0000000..66945cb --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editConfig.17011843046952.js @@ -0,0 +1 @@ +import{_ as v,b as C,E as A}from"./index.1701184304695.js";import{L as h,h as S,a2 as P,ab as U,a as y,_ as e,T as o,j as N,e as I,ai as s,o as b,b as i,Y as a,Z as T,F as w,a8 as G,S as L,aB as $,aC as q}from"./vue.1701184304695.js";const z=h({name:"systemEditDicData",props:{sysYesNoOptions:{type:Array,default:()=>[]}},setup(u,{emit:l}){const c=S(null),{proxy:E}=N(),n=P({isShowDialog:!1,ruleForm:{jobName:"",jobParams:"",jobGroup:"",invokeTarget:"",cronExpression:"",remark:"",misfirePolicy:1,status:0},rules:{jobName:[{required:!0,message:"\u4EFB\u52A1\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],invokeTarget:[{required:!0,message:"\u6267\u884C\u65B9\u6CD5\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],cronExpression:[{required:!0,message:"cron\u8868\u8FBE\u5F0F\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}});let{sys_job_group:g}=E.useDict("sys_job_group");const m=r=>{d(),r&&(C.task.detail(r.jobId).then(_=>{const F=_;n.ruleForm=F}),n.ruleForm=r),n.isShowDialog=!0},d=()=>{n.ruleForm={jobName:"",jobParams:"",jobGroup:"",invokeTarget:"",cronExpression:"",remark:"",misfirePolicy:1,status:0}},p=()=>{n.isShowDialog=!1};return{openDialog:m,closeDialog:p,onCancel:()=>{p()},onSubmit:()=>{const r=I(c);!r||r.validate(_=>{_&&(n.ruleForm.jobId?C.task.edit(n.ruleForm).then(()=>{A.success("\u4EFB\u52A1\u4FEE\u6539\u6210\u529F"),p(),l("dataList")}):C.task.add(n.ruleForm).then(()=>{A.success("\u4EFB\u52A1\u6DFB\u52A0\u6210\u529F"),p(),l("dataList")}))})},formRef:c,sys_job_group:g,...U(n)}}}),R=u=>($("data-v-1662b554"),u=u(),q(),u),W={class:"system-edit-dic-container"},Q={class:"flex align-center"},Y=a(" \u8C03\u7528\u65B9\u6CD5 "),M={class:"flex align-center"},O=a(" \u6267\u884C\u53C2\u6570 "),Z=a(" \u4EE5|\u5206\u9694\u591A\u4E2A\u53C2\u6570 \u793A\u4F8B\uFF1Aparam1|param1 "),H=R(()=>i("br",null,null,-1)),J=a("\u53C2\u6570\u8BF4\u660E\uFF1A\u652F\u6301\u5B57\u7B26\u4E32\uFF0C\u5E03\u5C14\u7C7B\u578B\uFF0C\u957F\u6574\u578B\uFF0C\u6D6E\u70B9\u578B\uFF0C\u6574\u578B "),K={style:{"list-style":"none"}},X=a(" */5 * * * * ? : \u6BCF\u96945\u79D2\u6267\u884C\u4E00\u6B21 "),x=a(" 20 */1 * * * ? : \u6BCF\u96941\u5206\u949F\u6267\u884C\u4E00\u6B21 "),ee=a(" 30 0 23 * * ? : \u6BCF\u592923\u70B9\u6267\u884C\u4E00\u6B21 "),ue=a(" 0 0 1 * * ? : \u6BCF\u5929\u51CC\u66681\u70B9\u6267\u884C\u4E00\u6B21 "),oe=a(" 0 0 1 1 * ? : \u6BCF\u67081\u53F7\u51CC\u66681\u70B9\u6267\u884C\u4E00\u6B21 "),le=a("\u91CD\u590D\u6267\u884C"),te=a("\u6267\u884C\u4E00\u6B21"),ae=a("\u6B63\u5E38"),re=a("\u6682\u505C"),se={class:"dialog-footer"},ne=a("\u53D6 \u6D88");function de(u,l,c,E,n,g){const m=s("el-input"),d=s("el-form-item"),p=s("el-option"),V=s("el-select"),B=s("ele-QuestionFilled"),r=s("el-icon"),_=s("el-tooltip"),F=s("ele-WarningFilled"),f=s("el-radio"),j=s("el-form"),D=s("el-button"),k=s("el-dialog");return b(),y("div",W,[e(k,{title:(u.ruleForm.jobId?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u4EFB\u52A1",modelValue:u.isShowDialog,"onUpdate:modelValue":l[10]||(l[10]=t=>u.isShowDialog=t),width:"650px"},{footer:o(()=>[i("span",se,[e(D,{onClick:u.onCancel,size:"default"},{default:o(()=>[ne]),_:1},8,["onClick"]),e(D,{type:"primary",onClick:u.onSubmit,size:"default"},{default:o(()=>[a(T(u.ruleForm.jobId?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:o(()=>[e(j,{model:u.ruleForm,ref:"formRef",rules:u.rules,size:"default","label-width":"100px"},{default:o(()=>[e(d,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"jobName"},{default:o(()=>[e(m,{modelValue:u.ruleForm.jobName,"onUpdate:modelValue":l[0]||(l[0]=t=>u.ruleForm.jobName=t),placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(d,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"remark"},{default:o(()=>[e(m,{modelValue:u.ruleForm.remark,"onUpdate:modelValue":l[1]||(l[1]=t=>u.ruleForm.remark=t),placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0",type:"textarea"},null,8,["modelValue"])]),_:1}),e(d,{label:"\u4EFB\u52A1\u5206\u7EC4",prop:"jobGroup"},{default:o(()=>[e(V,{modelValue:u.ruleForm.jobGroup,"onUpdate:modelValue":l[2]||(l[2]=t=>u.ruleForm.jobGroup=t),placeholder:"\u8BF7\u9009\u62E9"},{default:o(()=>[(b(!0),y(w,null,G(u.sys_job_group,t=>(b(),L(p,{key:t.value,label:t.label,value:t.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,{prop:"invokeTarget"},{label:o(()=>[i("div",Q,[Y,e(_,{class:"item",effect:"dark",content:"\u793A\u4F8B\uFF1Ademo1",placement:"top"},{default:o(()=>[e(r,null,{default:o(()=>[e(B)]),_:1})]),_:1})])]),default:o(()=>[e(m,{modelValue:u.ruleForm.invokeTarget,"onUpdate:modelValue":l[3]||(l[3]=t=>u.ruleForm.invokeTarget=t),placeholder:"\u8BF7\u8F93\u5165\u8C03\u7528\u65B9\u6CD5"},null,8,["modelValue"])]),_:1}),e(d,{prop:"jobParams"},{label:o(()=>[i("div",M,[O,e(_,{class:"item",effect:"dark",placement:"top"},{content:o(()=>[Z,H,J]),default:o(()=>[e(r,null,{default:o(()=>[e(B)]),_:1})]),_:1})])]),default:o(()=>[e(m,{modelValue:u.ruleForm.jobParams,"onUpdate:modelValue":l[4]||(l[4]=t=>u.ruleForm.jobParams=t),placeholder:"\u8BF7\u8F93\u5165\u6267\u884C\u53C2\u6570"},null,8,["modelValue"])]),_:1}),e(d,{label:"cron\u8868\u8FBE\u5F0F",prop:"cronExpression"},{default:o(()=>[e(m,{modelValue:u.ruleForm.cronExpression,"onUpdate:modelValue":l[5]||(l[5]=t=>u.ruleForm.cronExpression=t),placeholder:"\u8BF7\u8F93\u5165cron\u8868\u8FBE\u5F0F"},null,8,["modelValue"]),i("ul",K,[i("li",null,[e(r,null,{default:o(()=>[e(F)]),_:1}),X]),i("li",null,[e(r,null,{default:o(()=>[e(F)]),_:1}),x]),i("li",null,[e(r,null,{default:o(()=>[e(F)]),_:1}),ee]),i("li",null,[e(r,null,{default:o(()=>[e(F)]),_:1}),ue]),i("li",null,[e(r,null,{default:o(()=>[e(F)]),_:1}),oe])])]),_:1}),e(d,{label:"\u6267\u884C\u7B56\u7565",prop:"misfirePolicy"},{default:o(()=>[e(f,{modelValue:u.ruleForm.misfirePolicy,"onUpdate:modelValue":l[6]||(l[6]=t=>u.ruleForm.misfirePolicy=t),label:1},{default:o(()=>[le]),_:1},8,["modelValue"]),e(f,{modelValue:u.ruleForm.misfirePolicy,"onUpdate:modelValue":l[7]||(l[7]=t=>u.ruleForm.misfirePolicy=t),label:0},{default:o(()=>[te]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u72B6\u6001",prop:"status"},{default:o(()=>[e(f,{modelValue:u.ruleForm.status,"onUpdate:modelValue":l[8]||(l[8]=t=>u.ruleForm.status=t),label:1},{default:o(()=>[ae]),_:1},8,["modelValue"]),e(f,{modelValue:u.ruleForm.status,"onUpdate:modelValue":l[9]||(l[9]=t=>u.ruleForm.status=t),label:0},{default:o(()=>[re]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var Fe=v(z,[["render",de],["__scopeId","data-v-1662b554"]]);export{Fe as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editDic.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editDic.1701184304695.js new file mode 100644 index 0000000..f49ee39 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editDic.1701184304695.js @@ -0,0 +1 @@ +import{_ as E,b as F,E as D}from"./index.1701184304695.js";import{L as k,h as T,a2 as h,ab as S,a as b,_ as l,T as t,j as A,e as N,ai as r,o as _,b as v,Y as p,Z as w,F as I,a8 as U,S as z}from"./vue.1701184304695.js";const L=k({name:"systemEditDic",setup(e,{emit:u}){const{proxy:B}=A(),{dict_class_type:y}=B.useDict("dict_class_type"),c=T(null),a=h({isShowDialog:!1,ruleForm:{dictId:0,dictName:"",dictType:"",moduleClassify:"",status:1,remark:""},rules:{dictName:[{required:!0,message:"\u5B57\u5178\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],dictType:[{required:!0,message:"\u5B57\u5178\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),n=s=>{d(),s&&(F.dict.getType(s.dictId).then(m=>{a.ruleForm=m.data.dictType}),a.ruleForm=s),a.isShowDialog=!0},d=()=>{a.ruleForm={dictId:0,dictName:"",dictType:"",moduleClassify:"",status:1,remark:""}},i=()=>{a.isShowDialog=!1};return{openDialog:n,closeDialog:i,onCancel:()=>{i()},onSubmit:()=>{const s=N(c);!s||s.validate(m=>{m&&(a.ruleForm.dictId!==0?F.dict.editType(a.ruleForm).then(()=>{D.success("\u5B57\u5178\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),i(),u("typeList")}):F.dict.addType(a.ruleForm).then(()=>{D.success("\u5B57\u5178\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),i(),u("typeList")}))})},dict_class_type:y,formRef:c,...S(a)}}}),$={class:"system-edit-dic-container"},R=p("\u542F\u7528"),q=p("\u7981\u7528"),j={class:"dialog-footer"},M=p("\u53D6 \u6D88");function W(e,u,B,y,c,a){const n=r("el-input"),d=r("el-form-item"),i=r("el-option"),C=r("el-select"),f=r("el-radio"),s=r("el-radio-group"),m=r("el-form"),g=r("el-button"),V=r("el-dialog");return _(),b("div",$,[l(V,{title:(e.ruleForm.dictId!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u5B57\u5178",modelValue:e.isShowDialog,"onUpdate:modelValue":u[5]||(u[5]=o=>e.isShowDialog=o),width:"769px"},{footer:t(()=>[v("span",j,[l(g,{onClick:e.onCancel,size:"default"},{default:t(()=>[M]),_:1},8,["onClick"]),l(g,{type:"primary",onClick:e.onSubmit,size:"default"},{default:t(()=>[p(w(e.ruleForm.dictId!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:t(()=>[l(m,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"90px"},{default:t(()=>[l(d,{label:"\u5B57\u5178\u540D\u79F0",prop:"dictName"},{default:t(()=>[l(n,{modelValue:e.ruleForm.dictName,"onUpdate:modelValue":u[0]||(u[0]=o=>e.ruleForm.dictName=o),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u5B57\u5178\u7C7B\u578B",prop:"dictType"},{default:t(()=>[l(n,{modelValue:e.ruleForm.dictType,"onUpdate:modelValue":u[1]||(u[1]=o=>e.ruleForm.dictType=o),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u5B57\u5178\u5206\u7C7B",prop:"moduleClassify"},{default:t(()=>[l(C,{modelValue:e.ruleForm.moduleClassify,"onUpdate:modelValue":u[2]||(u[2]=o=>e.ruleForm.moduleClassify=o),placeholder:"\u5B57\u5178\u5206\u7C7B",clearable:"",size:"default",style:{width:"240px"}},{default:t(()=>[(_(!0),b(I,null,U(e.dict_class_type,o=>(_(),z(i,{label:o.label,value:o.value},null,8,["label","value"]))),256))]),_:1},8,["modelValue"])]),_:1}),l(d,{label:"\u72B6\u6001",prop:"status"},{default:t(()=>[l(s,{modelValue:e.ruleForm.status,"onUpdate:modelValue":u[3]||(u[3]=o=>e.ruleForm.status=o)},{default:t(()=>[l(f,{label:1},{default:t(()=>[R]),_:1}),l(f,{label:0},{default:t(()=>[q]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(d,{label:"\u5907\u6CE8",prop:"remark"},{default:t(()=>[l(n,{modelValue:e.ruleForm.remark,"onUpdate:modelValue":u[4]||(u[4]=o=>e.ruleForm.remark=o),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var G=E(L,[["render",W]]);export{G as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editDicData.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editDicData.1701184304695.js new file mode 100644 index 0000000..240c573 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editDicData.1701184304695.js @@ -0,0 +1 @@ +import{_ as B,b as c,E as D}from"./index.1701184304695.js";import{L as C,h as S,a2 as A,ab as y,a as k,_ as u,T as t,e as v,ai as d,o as L,b as T,Y as m,Z as h}from"./vue.1701184304695.js";const w=C({name:"systemEditDicData",props:{dictType:{type:String,default:()=>""}},setup(e,{emit:l}){const p=S(null),a=A({isShowDialog:!1,ruleForm:{dictCode:0,dictLabel:"",dictValue:"",dictSort:0,isDefault:0,status:1,remark:"",dictType:e.dictType},rules:{dictLabel:[{required:!0,message:"\u6570\u636E\u6807\u7B7E\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],dictValue:[{required:!0,message:"\u6570\u636E\u952E\u503C\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],dictSort:[{required:!0,message:"\u6570\u636E\u987A\u5E8F\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),f=s=>{F(),s&&(c.dict.getData(s.dictCode).then(n=>{a.ruleForm=n.data.dict}),a.ruleForm=s),a.isShowDialog=!0},F=()=>{a.ruleForm={dictCode:0,dictLabel:"",dictValue:"",dictSort:0,isDefault:0,status:1,remark:"",dictType:e.dictType}},r=()=>{a.isShowDialog=!1};return{openDialog:f,closeDialog:r,onCancel:()=>{r()},onSubmit:()=>{const s=v(p);!s||s.validate(n=>{n&&(a.ruleForm.dictCode!==0?c.dict.editData(a.ruleForm).then(()=>{D.success("\u5B57\u5178\u6570\u636E\u4FEE\u6539\u6210\u529F"),r(),l("dataList")}):c.dict.addData(a.ruleForm).then(()=>{D.success("\u5B57\u5178\u6570\u636E\u6DFB\u52A0\u6210\u529F"),r(),l("dataList")}))})},formRef:p,...y(a)}}}),U={class:"system-edit-dic-container"},$=m("\u542F\u7528"),q=m("\u7981\u7528"),z={class:"dialog-footer"},N=m("\u53D6 \u6D88");function R(e,l,p,a,f,F){const r=d("el-input"),i=d("el-form-item"),E=d("el-input-number"),s=d("el-switch"),n=d("el-radio"),b=d("el-radio-group"),g=d("el-form"),V=d("el-button"),_=d("el-dialog");return L(),k("div",U,[u(_,{title:(e.ruleForm.dictCode!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u5B57\u5178",modelValue:e.isShowDialog,"onUpdate:modelValue":l[7]||(l[7]=o=>e.isShowDialog=o),width:"769px"},{footer:t(()=>[T("span",z,[u(V,{onClick:e.onCancel,size:"default"},{default:t(()=>[N]),_:1},8,["onClick"]),u(V,{type:"primary",onClick:e.onSubmit,size:"default"},{default:t(()=>[m(h(e.ruleForm.dictCode!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:t(()=>[u(g,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"90px"},{default:t(()=>[u(i,{label:"\u5B57\u5178\u7C7B\u578B"},{default:t(()=>[u(r,{modelValue:e.ruleForm.dictType,"onUpdate:modelValue":l[0]||(l[0]=o=>e.ruleForm.dictType=o),disabled:!0},null,8,["modelValue"])]),_:1}),u(i,{label:"\u6570\u636E\u6807\u7B7E",prop:"dictLabel"},{default:t(()=>[u(r,{modelValue:e.ruleForm.dictLabel,"onUpdate:modelValue":l[1]||(l[1]=o=>e.ruleForm.dictLabel=o),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u6807\u7B7E"},null,8,["modelValue"])]),_:1}),u(i,{label:"\u6570\u636E\u952E\u503C",prop:"dictValue"},{default:t(()=>[u(r,{modelValue:e.ruleForm.dictValue,"onUpdate:modelValue":l[2]||(l[2]=o=>e.ruleForm.dictValue=o),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u952E\u503C"},null,8,["modelValue"])]),_:1}),u(i,{label:"\u663E\u793A\u6392\u5E8F",prop:"dictSort"},{default:t(()=>[u(E,{modelValue:e.ruleForm.dictSort,"onUpdate:modelValue":l[3]||(l[3]=o=>e.ruleForm.dictSort=o),"controls-position":"right",min:0},null,8,["modelValue"])]),_:1}),u(i,{label:"\u7CFB\u7EDF\u9ED8\u8BA4"},{default:t(()=>[u(s,{modelValue:e.ruleForm.isDefault,"onUpdate:modelValue":l[4]||(l[4]=o=>e.ruleForm.isDefault=o),"active-text":"\u662F","inactive-text":"\u5426","active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1}),u(i,{label:"\u72B6\u6001",prop:"status"},{default:t(()=>[u(b,{modelValue:e.ruleForm.status,"onUpdate:modelValue":l[5]||(l[5]=o=>e.ruleForm.status=o)},{default:t(()=>[u(n,{label:1},{default:t(()=>[$]),_:1}),u(n,{label:0},{default:t(()=>[q]),_:1})]),_:1},8,["modelValue"])]),_:1}),u(i,{label:"\u5907\u6CE8",prop:"remark"},{default:t(()=>[u(r,{modelValue:e.ruleForm.remark,"onUpdate:modelValue":l[6]||(l[6]=o=>e.ruleForm.remark=o),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var Y=B(w,[["render",R]]);export{Y as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editEvent.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editEvent.1701184304695.js new file mode 100644 index 0000000..2347441 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editEvent.1701184304695.js @@ -0,0 +1 @@ +import{a as D}from"./index.170118430469519.js";import{_ as w,v as L,x as R,y as $,E as I}from"./index.1701184304695.js";import N from"./editOption.1701184304695.js";import{L as U,h as j,a2 as J,ab as P,a as A,_ as o,T as l,e as q,ai as a,o as b,b as d,Y as m,Z as T,F as z,a8 as M}from"./vue.1701184304695.js";const W=U({name:"deviceEditPro",components:{Plus:L,Minus:R,Right:$,EditOption:N},setup(t,{emit:s}){const E=j(null),B=j(),u=J({isShowDialog:!1,typeData:[],type:"",types:"",productId:0,elementType:{type:"",maxLength:""},enumdata:[{text:"",value:""}],jsondata:[],outputsdata:[],ruleForm:{productId:0,name:"",key:"",outputs:[],desc:""},rules:{name:[{required:!0,message:"\u4E8B\u4EF6\u5B9A\u4E49\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],key:[{required:!0,message:"\u4E8B\u4EF6\u5B9A\u4E49\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u6570\u636E\u7C7B\u578B",trigger:"blur"}]}}),k=(e,n)=>{c(),D.product.getDataType({status:-1}).then(_=>{const p=Object.values(_.dataType);p.forEach((O,f)=>{f==0?(p[f].label="\u57FA\u7840\u7C7B\u578B",p[f].options=O):(p[f].label="\u6269\u5C55\u7C7B\u578B",p[f].options=O)}),u.typeData=p||[]}),u.ruleForm=e,e.outputs&&(u.ruleForm=e,u.productId=n,u.outputsdata=e.outputs),u.isShowDialog=!0},c=()=>{u.ruleForm={name:"",key:"",status:1,desc:""},u.type="",u.types="",u.outputsdata=[],u.elementType=[]},r=e=>{u.type=e,u.ruleForm.type=e},F=e=>{u.types=e},y=()=>{u.enumdata.push({text:"",value:""})},g=e=>{u.enumdata.splice(e,1)},v=(e,n)=>{n=="fun"?u.outputsdata.splice(e,1):u.jsondata.splice(e,1)},C=e=>{B.value.openDialog({product_id:0,id:0,type_data:e})},h=(e,n)=>{n=="fun"?u.outputsdata.push(e):u.jsondata.push(e)},i=()=>{u.isShowDialog=!1};return{editOptionRef:B,getOptionData:h,openDialog:k,deljson:v,addEnum:y,delEnum:g,addJson:C,seletChange:r,seletChanges:F,closeDialog:i,onCancel:()=>{i()},onSubmit:()=>{const e=q(E);!e||e.validate(n=>{if(n){u.ruleForm.outputs=u.outputsdata;const _=u.ruleForm.id!==0?D.model.eventedit:D.model.eventadd;u.ruleForm.id!==0&&(u.ruleForm.productId=u.productId),console.log(JSON.parse(JSON.stringify(u.ruleForm))),_(u.ruleForm).then(()=>{I.success("\u4E8B\u4EF6\u5B9A\u4E49\u7C7B\u578B\u64CD\u4F5C\u6210\u529F"),i(),s("typeList")})}})},formRef:E,...P(u)}}}),Y={class:"system-edit-dic-container"},Z=m("\u666E\u901A"),G=m("\u8B66\u544A"),H=m("\u7D27\u6025"),K={class:"jsonlist"},Q=d("div",null,"\u53C2\u6570\u540D\u79F0\uFF1A",-1),X={style:{width:"60%"}},x={class:"jsonoption"},ee=m("\u5220\u9664"),ue={style:{display:"block",width:"100%"}},te=d("div",null,"\u6DFB\u52A0\u53C2\u6570",-1),oe={class:"dialog-footer"},le=m("\u53D6 \u6D88");function se(t,s,E,B,u,k){const c=a("el-input"),r=a("el-form-item"),F=a("el-radio"),y=a("el-radio-group"),g=a("el-link"),v=a("Plus"),C=a("el-icon"),h=a("el-form"),i=a("el-button"),V=a("el-dialog"),S=a("EditOption");return b(),A("div",Y,[o(V,{title:(t.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u4E8B\u4EF6\u5B9A\u4E49",modelValue:t.isShowDialog,"onUpdate:modelValue":s[5]||(s[5]=e=>t.isShowDialog=e),width:"769px"},{footer:l(()=>[d("span",oe,[o(i,{onClick:t.onCancel,size:"default"},{default:l(()=>[le]),_:1},8,["onClick"]),o(i,{type:"primary",onClick:t.onSubmit,size:"default"},{default:l(()=>[m(T(t.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:l(()=>[o(h,{model:t.ruleForm,ref:"formRef",rules:t.rules,size:"default","label-width":"120px"},{default:l(()=>[o(r,{label:"\u4E8B\u4EF6\u5B9A\u4E49\u6807\u8BC6",prop:"key"},{default:l(()=>[o(c,{modelValue:t.ruleForm.key,"onUpdate:modelValue":s[0]||(s[0]=e=>t.ruleForm.key=e),placeholder:"\u8BF7\u8F93\u5165\u4E8B\u4EF6\u5B9A\u4E49\u6807\u8BC6",disabled:t.ruleForm.id!==0},null,8,["modelValue","disabled"])]),_:1}),o(r,{label:"\u4E8B\u4EF6\u5B9A\u4E49\u540D\u79F0",prop:"name"},{default:l(()=>[o(c,{modelValue:t.ruleForm.name,"onUpdate:modelValue":s[1]||(s[1]=e=>t.ruleForm.name=e),placeholder:"\u8BF7\u8F93\u5165\u4E8B\u4EF6\u5B9A\u4E49\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(r,{label:"\u4E8B\u4EF6\u7EA7\u522B",prop:"level"},{default:l(()=>[o(y,{modelValue:t.ruleForm.level,"onUpdate:modelValue":s[2]||(s[2]=e=>t.ruleForm.level=e)},{default:l(()=>[o(F,{label:0},{default:l(()=>[Z]),_:1}),o(F,{label:1},{default:l(()=>[G]),_:1}),o(F,{label:2},{default:l(()=>[H]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(r,{label:"\u8F93\u51FA\u53C2\u6570",prop:"maxLength"},{default:l(()=>[(b(!0),A(z,null,M(t.outputsdata,(e,n)=>(b(),A("div",{key:n,class:"jslist"},[d("div",K,[Q,d("div",X,T(e.name),1),d("div",x,[o(g,{type:"primary",onClick:_=>t.deljson(n,"fun")},{default:l(()=>[ee]),_:2},1032,["onClick"])])])]))),128)),d("div",ue,[d("div",{class:"input-options",onClick:s[3]||(s[3]=e=>t.addJson("fun"))},[o(C,null,{default:l(()=>[o(v)]),_:1}),te])])]),_:1}),o(r,{label:"\u4E8B\u4EF6\u5B9A\u4E49\u63CF\u8FF0 ",prop:"desc"},{default:l(()=>[o(c,{modelValue:t.ruleForm.desc,"onUpdate:modelValue":s[4]||(s[4]=e=>t.ruleForm.desc=e),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u4E8B\u4EF6\u5B9A\u4E49\u63CF\u8FF0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"]),o(S,{ref:"editOptionRef",onTypeList:t.getOptionData},null,8,["onTypeList"])])}var ie=w(W,[["render",se]]);export{ie as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editFun.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editFun.1701184304695.js new file mode 100644 index 0000000..37dec32 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editFun.1701184304695.js @@ -0,0 +1 @@ +import{a as T}from"./index.170118430469519.js";import{_ as R,v as S,x as $,y as I,E as j}from"./index.1701184304695.js";import J from"./editOption.1701184304695.js";import{L as P,h as V,a2 as U,ab as q,a as F,_ as o,T as a,e as z,ai as d,o as c,b as n,Y as E,Z as f,F as L,a8 as w}from"./vue.1701184304695.js";const N=P({name:"deviceEditPro",components:{Plus:S,Minus:$,Right:I,EditOption:J},setup(t,{emit:l}){const B=V(null),C=V(),k=V(),e=U({isShowDialog:!1,typeData:[],type:"",types:"",productId:0,valueType:{type:"",maxLength:"",trueText:"\u662F",trueValue:"true",falseText:"\u5426",falseValue:"false"},elementType:{type:"",maxLength:""},enumdata:[{text:"",value:""}],jsondata:[],inputsdata:[],outputsdata:[],ruleForm:{productId:0,name:"",key:"",inputs:[],outputs:[],valueType:{type:"",maxLength:""},desc:""},rules:{name:[{required:!0,message:"\u529F\u80FD\u5B9A\u4E49\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],key:[{required:!0,message:"\u529F\u80FD\u5B9A\u4E49\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u6570\u636E\u7C7B\u578B",trigger:"blur"}]}}),m=(u,i)=>{p(),e.ruleForm=u,e.productId=i,e.inputsdata=u.inputs||[],e.outputsdata=u.outputs||[],e.isShowDialog=!0},p=()=>{e.ruleForm={name:"",key:"",status:1,valueType:{type:"",maxLength:""},desc:""},e.type="",e.types="",e.inputsdata=[],e.outputsdata=[],e.elementType=[],e.valueType={}},_=u=>{e.type=u,e.ruleForm.type=u,console.log(u)},y=u=>{console.log(u),e.types=u,console.log(u)},D=()=>{e.enumdata.push({text:"",value:""})},A=u=>{e.enumdata.splice(u,1)},g=(u,i)=>{i=="fun"?e.inputsdata.splice(u,1):e.jsondata.splice(u,1)},O=(u,i)=>{i=="fun",e.outputsdata.splice(u,1)},h=u=>{C.value.openDialog({product_id:0,id:0,type_data:u})},s=u=>{k.value.openDialog({product_id:0,id:0,type_data:u})},r=(u,i)=>{i=="fun"?e.inputsdata.push(u):e.jsondata.push(u)},b=(u,i)=>{i=="fun",e.outputsdata.push(u)},v=()=>{e.isShowDialog=!1};return{editOptionRef:C,editOptionOutRef:k,getOptionData:r,getOptionDataOut:b,openDialog:m,deljson:g,deljsonOut:O,addEnum:D,delEnum:A,addJson:h,addJsonOut:s,seletChange:_,seletChanges:y,closeDialog:v,onCancel:()=>{v()},onSubmit:()=>{const u=z(B);!u||u.validate(i=>{i&&(e.ruleForm.inputs=e.inputsdata,e.ruleForm.outputs=e.outputsdata,e.ruleForm.id!==0?(e.ruleForm.productId=e.productId,T.model.functionedit(e.ruleForm).then(()=>{j.success("\u529F\u80FD\u5B9A\u4E49\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),v(),l("typeList")})):T.model.functionadd(e.ruleForm).then(()=>{j.success("\u529F\u80FD\u5B9A\u4E49\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),v(),l("typeList")}))})},formRef:B,...q(e)}}}),M={class:"system-edit-dic-container"},W={class:"jsonlist"},Y=n("div",null,"\u53C2\u6570\u540D\u79F0\uFF1A",-1),Z={style:{width:"60%"}},G={class:"jsonoption"},H=E("\u5220\u9664"),K={style:{display:"block",width:"100%"}},Q=n("div",null,"\u6DFB\u52A0\u53C2\u6570",-1),X={class:"jsonlist"},x=n("div",null,"\u53C2\u6570\u540D\u79F0\uFF1A",-1),ee={style:{width:"60%"}},ue={class:"jsonoption"},te=E("\u5220\u9664"),oe={style:{display:"block",width:"100%"}},se=n("div",null,"\u6DFB\u52A0\u53C2\u6570",-1),le={class:"dialog-footer"},ne=E("\u53D6 \u6D88");function ae(t,l,B,C,k,e){const m=d("el-input"),p=d("el-form-item"),_=d("el-link"),y=d("Plus"),D=d("el-icon"),A=d("el-form"),g=d("el-button"),O=d("el-dialog"),h=d("EditOption");return c(),F("div",M,[o(O,{title:(t.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u529F\u80FD\u5B9A\u4E49",modelValue:t.isShowDialog,"onUpdate:modelValue":l[5]||(l[5]=s=>t.isShowDialog=s),width:"769px"},{footer:a(()=>[n("span",le,[o(g,{onClick:t.onCancel,size:"default"},{default:a(()=>[ne]),_:1},8,["onClick"]),o(g,{type:"primary",onClick:t.onSubmit,size:"default"},{default:a(()=>[E(f(t.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:a(()=>[o(A,{model:t.ruleForm,ref:"formRef",rules:t.rules,size:"default","label-width":"120px"},{default:a(()=>[o(p,{label:"\u529F\u80FD\u5B9A\u4E49\u6807\u8BC6",prop:"key"},{default:a(()=>[o(m,{modelValue:t.ruleForm.key,"onUpdate:modelValue":l[0]||(l[0]=s=>t.ruleForm.key=s),placeholder:"\u8BF7\u8F93\u5165\u529F\u80FD\u5B9A\u4E49\u6807\u8BC6",disabled:t.ruleForm.id!==0},null,8,["modelValue","disabled"])]),_:1}),o(p,{label:"\u529F\u80FD\u5B9A\u4E49\u540D\u79F0",prop:"name"},{default:a(()=>[o(m,{modelValue:t.ruleForm.name,"onUpdate:modelValue":l[1]||(l[1]=s=>t.ruleForm.name=s),placeholder:"\u8BF7\u8F93\u5165\u529F\u80FD\u5B9A\u4E49\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(p,{label:"\u8F93\u5165\u53C2\u6570",prop:"maxLength"},{default:a(()=>[(c(!0),F(L,null,w(t.inputsdata,(s,r)=>(c(),F("div",{key:r,class:"jslist"},[n("div",W,[Y,n("div",Z,f(s.name)+" ("+f(s.key)+")",1),n("div",G,[o(_,{type:"primary",onClick:b=>t.deljson(r,"fun")},{default:a(()=>[H]),_:2},1032,["onClick"])])])]))),128)),n("div",K,[n("div",{class:"input-options",onClick:l[2]||(l[2]=s=>t.addJson("fun"))},[o(D,null,{default:a(()=>[o(y)]),_:1}),Q])])]),_:1}),o(p,{label:"\u8F93\u51FA\u53C2\u6570",prop:""},{default:a(()=>[(c(!0),F(L,null,w(t.outputsdata,(s,r)=>(c(),F("div",{key:r,class:"jslist"},[n("div",X,[x,n("div",ee,f(s.name)+" ("+f(s.key)+")",1),n("div",ue,[o(_,{type:"primary",onClick:b=>t.deljsonOut(r,"fun")},{default:a(()=>[te]),_:2},1032,["onClick"])])])]))),128)),n("div",oe,[n("div",{class:"input-options",onClick:l[3]||(l[3]=s=>t.addJsonOut("fun"))},[o(D,null,{default:a(()=>[o(y)]),_:1}),se])])]),_:1}),o(p,{label:"\u529F\u80FD\u5B9A\u4E49\u63CF\u8FF0 ",prop:"desc"},{default:a(()=>[o(m,{modelValue:t.ruleForm.desc,"onUpdate:modelValue":l[4]||(l[4]=s=>t.ruleForm.desc=s),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u529F\u80FD\u5B9A\u4E49\u63CF\u8FF0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"]),o(h,{ref:"editOptionRef",key:"editOptionRef",onTypeList:t.getOptionData},null,8,["onTypeList"]),o(h,{ref:"editOptionOutRef",key:"editOptionOutRef",onTypeList:t.getOptionDataOut},null,8,["onTypeList"])])}var ce=R(N,[["render",ae]]);export{ce as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editMenu.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editMenu.1701184304695.js new file mode 100644 index 0000000..bb4df49 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editMenu.1701184304695.js @@ -0,0 +1 @@ +import{n as A,L as U,h as L,a2 as O,l as q,k as x,i as M,ab as z,ai as c,o as V,a as _,_ as l,T as o,S as w,O as S,$ as N,U as H,V as j,b,Z as v,X as B,F as X,a8 as Y,e as Z,Y as C}from"./vue.1701184304695.js";import{q as G,_ as W,b as k,E as P,r as J}from"./index.1701184304695.js";const K=()=>new Promise((e,n)=>{A(()=>{const i=document.styleSheets;let t=[],u=[];for(let s=0;s-1&&t.push(i[s]);for(let s=0;s-1&&u.push(`${t[s].cssRules[r].selectorText.substring(1,t[s].cssRules[r].selectorText.length).replace(/\:\:before/gi,"")}`);u.length>0?e(u):n("\u672A\u83B7\u53D6\u5230\u503C\uFF0C\u8BF7\u5237\u65B0\u91CD\u8BD5")})}),Q=()=>new Promise((e,n)=>{A(()=>{const i=G,t=[];for(const u in i)t.push(`ele-${i[u].name}`);t.length>0?e(t):n("\u672A\u83B7\u53D6\u5230\u503C\uFF0C\u8BF7\u5237\u65B0\u91CD\u8BD5")})}),ee=()=>new Promise((e,n)=>{A(()=>{const i=document.styleSheets;let t=[],u=[];for(let s=0;s-1&&t.push(i[s]);for(let s=0;s0?e(u.reverse()):n("\u672A\u83B7\u53D6\u5230\u503C\uFF0C\u8BF7\u5237\u65B0\u91CD\u8BD5")})}),T={ali:()=>K(),ele:()=>Q(),awe:()=>ee()},le=U({name:"iconSelector",emits:["update:modelValue","get","clear"],props:{prepend:{type:String,default:()=>"ele-Pointer"},placeholder:{type:String,default:()=>"\u8BF7\u8F93\u5165\u5185\u5BB9\u641C\u7D22\u56FE\u6807\u6216\u8005\u9009\u62E9\u56FE\u6807"},size:{type:String,default:()=>"default"},title:{type:String,default:()=>"\u8BF7\u9009\u62E9\u56FE\u6807"},type:{type:String,default:()=>"ele"},disabled:{type:Boolean,default:()=>!1},clearable:{type:Boolean,default:()=>!0},emptyDescription:{type:String,default:()=>"\u65E0\u76F8\u5173\u56FE\u6807"},modelValue:String},setup(e,{emit:n}){const i=L(),t=L(),u=O({fontIconPrefix:"",fontIconVisible:!1,fontIconWidth:0,fontIconSearch:"",fontIconTabsIndex:0,fontIconSheetsList:[],fontIconPlaceholder:"",fontIconType:"ali",fontIconShow:!0}),s=()=>{if(u.fontIconVisible=!0,!e.modelValue)return!1;u.fontIconSearch="",u.fontIconPlaceholder=e.modelValue},r=()=>{setTimeout(()=>{u.fontIconSheetsList.filter(h=>h===u.fontIconSearch).length<=0&&(u.fontIconSearch="")},300)},d=()=>{if(e.modelValue==="")return!1;u.fontIconPlaceholder=e.modelValue,u.fontIconPrefix=e.modelValue},f=q(()=>{if(!u.fontIconSearch)return u.fontIconSheetsList;let p=u.fontIconSearch.trim().toLowerCase();return u.fontIconSheetsList.filter(h=>{if(h.toLowerCase().indexOf(p)!==-1)return h})}),m=()=>{A(()=>{u.fontIconWidth=i.value.$el.offsetWidth})},E=()=>{window.addEventListener("resize",()=>{m()})},g=async p=>{u.fontIconSheetsList=[],p==="ali"?await T.ali().then(h=>{u.fontIconSheetsList=h.map(y=>`iconfont ${y}`)}):p==="ele"?await T.ele().then(h=>{u.fontIconSheetsList=h}):p==="awe"&&await T.awe().then(h=>{u.fontIconSheetsList=h.map(y=>`fa ${y}`)}),u.fontIconPlaceholder=e.placeholder,d(),t.value.wrap$.scrollTop=0},I=p=>{u.fontIconType=p,g(p)},F=p=>{u.fontIconPlaceholder=p,u.fontIconVisible=!1,u.fontIconPrefix=p,n("get",u.fontIconPrefix),n("update:modelValue",u.fontIconPrefix)},D=()=>{u.fontIconPrefix="",n("clear",u.fontIconPrefix),n("update:modelValue",u.fontIconPrefix)};return x(()=>{var p,h,y;e.type==="all"?((p=e.modelValue)==null?void 0:p.indexOf("iconfont"))>-1?I("ali"):((h=e.modelValue)==null?void 0:h.indexOf("ele-"))>-1?I("ele"):((y=e.modelValue)==null?void 0:y.indexOf("fa"))>-1?I("awe"):I("ali"):I(e.type),E(),m()}),M(()=>e.modelValue,()=>{d()}),{inputWidthRef:i,selectorScrollbarRef:t,fontIconSheetsFilterList:f,onColClick:F,onIconChange:I,onClearFontIcon:D,onIconFocus:s,onIconBlur:r,...z(u)}}}),oe={class:"icon-selector"},ne={class:"icon-selector-warp"},te={class:"icon-selector-warp-title flex"},ue={class:"flex-auto"},se={key:0,class:"icon-selector-warp-title-tab"},ae={class:"icon-selector-warp-row"},re={class:"flex-margin"},ie={class:"icon-selector-warp-item-value"};function de(e,n,i,t,u,s){const r=c("SvgIcon"),d=c("el-input"),f=c("el-col"),m=c("el-row"),E=c("el-empty"),g=c("el-scrollbar"),I=c("el-popover");return V(),_("div",oe,[l(I,{placement:"bottom",width:e.fontIconWidth,visible:e.fontIconVisible,"onUpdate:visible":n[4]||(n[4]=F=>e.fontIconVisible=F),"popper-class":"icon-selector-popper"},{reference:o(()=>[l(d,{modelValue:e.fontIconSearch,"onUpdate:modelValue":n[0]||(n[0]=F=>e.fontIconSearch=F),placeholder:e.fontIconPlaceholder,clearable:e.clearable,disabled:e.disabled,size:e.size,ref:"inputWidthRef",onClear:e.onClearFontIcon,onFocus:e.onIconFocus,onBlur:e.onIconBlur},{prepend:o(()=>{var F,D;return[(e.fontIconPrefix===""?((F=e.prepend)==null?void 0:F.indexOf("ele-"))>-1:((D=e.fontIconPrefix)==null?void 0:D.indexOf("ele-"))>-1)?(V(),w(r,{key:0,name:e.fontIconPrefix===""?e.prepend:e.fontIconPrefix,class:"font14"},null,8,["name"])):(V(),_("i",{key:1,class:S([e.fontIconPrefix===""?e.prepend:e.fontIconPrefix,"font14"])},null,2))]}),_:1},8,["modelValue","placeholder","clearable","disabled","size","onClear","onFocus","onBlur"])]),default:o(()=>[l(N,{name:"el-zoom-in-top"},{default:o(()=>[H(b("div",ne,[b("div",te,[b("div",ue,v(e.title),1),e.type==="all"?(V(),_("div",se,[b("span",{class:S([{"span-active":e.fontIconType==="ali"},"ml10"]),onClick:n[1]||(n[1]=F=>e.onIconChange("ali")),title:"iconfont \u56FE\u6807"},"ali",2),b("span",{class:S([{"span-active":e.fontIconType==="ele"},"ml10"]),onClick:n[2]||(n[2]=F=>e.onIconChange("ele")),title:"elementPlus \u56FE\u6807"},"ele",2),b("span",{class:S([{"span-active":e.fontIconType==="awe"},"ml10"]),onClick:n[3]||(n[3]=F=>e.onIconChange("awe")),title:"fontawesome \u56FE\u6807"},"awe",2)])):B("",!0)]),b("div",ae,[l(g,{ref:"selectorScrollbarRef"},{default:o(()=>[e.fontIconSheetsFilterList.length>0?(V(),w(m,{key:0,gutter:10},{default:o(()=>[(V(!0),_(X,null,Y(e.fontIconSheetsFilterList,(F,D)=>(V(),w(f,{xs:6,sm:4,md:4,lg:4,xl:4,onClick:p=>e.onColClick(F),key:D},{default:o(()=>[b("div",{class:S(["icon-selector-warp-item",{"icon-selector-active":e.fontIconPrefix===F}])},[b("div",re,[b("div",ie,[l(r,{name:F},null,8,["name"])])])],2)]),_:2},1032,["onClick"]))),128))]),_:1})):B("",!0),e.fontIconSheetsFilterList.length<=0?(V(),w(E,{key:1,"image-size":100,description:e.emptyDescription},null,8,["description"])):B("",!0)]),_:1},512)])],512),[[j,e.fontIconVisible]])]),_:1})]),_:1},8,["width","visible"])])}var fe=W(le,[["render",de]]);const R={id:void 0,parentId:-1,menuType:0,title:"",name:"",component:"",isLink:0,weigh:0,path:"",redirect:"",icon:"",isHide:0,isAffix:0,linkUrl:"",isIframe:0,status:1},me=U({name:"systemEditMenu",components:{IconSelector:fe},props:{visibleOptions:{type:Array,default:()=>[]},menu:{type:Array,default:()=>[]},acType:{type:String,default:()=>"add"}},setup(e,{emit:n}){const i=L(null),t=O({loading:!1,isShowDialog:!1,roles:[],ruleForm:{...R},rules:{parentId:[{required:!0,message:"\u7236\u83DC\u5355\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],component:[{required:!0,message:"\u7EC4\u4EF6\u5730\u5740\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],path:[{required:!0,message:"\u8DEF\u7531\u5730\u5740\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],title:[{required:!0,message:"\u83DC\u5355\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],name:[{required:!0,message:"\u83DC\u5355\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],menuType:[{required:!0,message:"\u83DC\u5355\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),u=g=>{E(),A(()=>{g&&(e.acType==="add"?t.ruleForm.parentId=g.id:e.acType==="edit"&&k.menu.detail(g.id).then(I=>{t.ruleForm=I})),t.isShowDialog=!0,t.loading=!1})},s=()=>{t.isShowDialog=!1},r=()=>{t.ruleForm.isIframe===1?t.ruleForm.isLink=1:t.ruleForm.isLink=0},d=()=>{s()},f=()=>{const g=Z(i);!g||g.validate(I=>{I&&(t.loading=!0,t.ruleForm.parentId||(t.ruleForm.parentId=-1),e.acType==="add"?k.menu.add(t.ruleForm).then(()=>{P.success("\u83DC\u5355\u6DFB\u52A0\u6210\u529F"),s(),m(),n("menuList")}).finally(()=>{t.loading=!1}):k.menu.edit(t.ruleForm).then(()=>{P.success("\u83DC\u5355\u4FEE\u6539\u6210\u529F"),s(),m(),n("menuList")}).finally(()=>{t.loading=!1}))})},m=()=>{J()},E=()=>{t.ruleForm={...R}};return{ruleFormRef:i,openDialog:u,closeDialog:s,onSelectIframeChange:r,onCancel:d,onSubmit:f,resetMenuSession:m,...z(t)}}}),ce={class:"system-edit-menu-container"},pe={key:0},Fe=C("\u76EE\u5F55"),ge=C("\u83DC\u5355"),he=C("\u663E\u793A"),Ie=C("\u9690\u85CF"),be=C("\u662F"),Ce=C("\u5426"),Ee=C("\u662F"),Ve=C("\u5426"),De=C("\u56FA\u5B9A"),ye=C("\u4E0D\u56FA\u5B9A"),_e={class:"dialog-footer"},Se=C("\u53D6 \u6D88");function we(e,n,i,t,u,s){const r=c("el-cascader"),d=c("el-form-item"),f=c("el-col"),m=c("el-radio"),E=c("el-radio-group"),g=c("el-input"),I=c("IconSelector"),F=c("el-input-number"),D=c("el-row"),p=c("el-form"),h=c("el-button"),y=c("el-dialog");return V(),_("div",ce,[l(y,{title:(e.acType==="add"?"\u65B0\u589E":"\u4FEE\u6539")+"\u83DC\u5355",modelValue:e.isShowDialog,"onUpdate:modelValue":n[13]||(n[13]=a=>e.isShowDialog=a),width:"769px","close-on-click-modal":!1},{footer:o(()=>[b("span",_e,[l(h,{onClick:e.onCancel,size:"default"},{default:o(()=>[Se]),_:1},8,["onClick"]),l(h,{type:"primary",onClick:e.onSubmit,size:"default",loading:e.loading},{default:o(()=>[C(v(e.acType==="add"?"\u65B0 \u589E":"\u4FEE \u6539"),1)]),_:1},8,["onClick","loading"])])]),default:o(()=>[l(p,{model:e.ruleForm,rules:e.rules,ref:"ruleFormRef",size:"default","label-width":"80px"},{default:o(()=>[l(D,{gutter:35},{default:o(()=>[l(f,{xs:24,sm:24,md:24,lg:24,xl:24,class:"mb20"},{default:o(()=>[l(d,{label:"\u4E0A\u7EA7\u83DC\u5355",prop:"parentId"},{default:o(()=>[l(r,{options:[{id:-1,title:"\u4E3B\u7C7B\u76EE",children:e.menu}],props:{label:"title",value:"id",checkStrictly:!0,emitPath:!1},placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u83DC\u5355",clearable:!1,class:"w100",modelValue:e.ruleForm.parentId,"onUpdate:modelValue":n[0]||(n[0]=a=>e.ruleForm.parentId=a)},{default:o(({node:a,data:$})=>[b("span",null,v($.title),1),a.isLeaf?B("",!0):(V(),_("span",pe," ("+v($.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),l(f,{xs:24,sm:24,md:24,lg:24,xl:24,class:"mb20"},{default:o(()=>[l(d,{label:"\u83DC\u5355\u7C7B\u578B",prop:"menuType"},{default:o(()=>[l(E,{modelValue:e.ruleForm.menuType,"onUpdate:modelValue":n[1]||(n[1]=a=>e.ruleForm.menuType=a)},{default:o(()=>[l(m,{label:0},{default:o(()=>[Fe]),_:1}),l(m,{label:1},{default:o(()=>[ge]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u83DC\u5355\u540D\u79F0",prop:"title"},{default:o(()=>[l(g,{modelValue:e.ruleForm.title,"onUpdate:modelValue":n[2]||(n[2]=a=>e.ruleForm.title=a),placeholder:"\u8BF7\u586B\u5199\u83DC\u5355\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u89C4\u5219\u540D\u79F0",prop:"name"},{default:o(()=>[l(g,{modelValue:e.ruleForm.name,"onUpdate:modelValue":n[3]||(n[3]=a=>e.ruleForm.name=a),placeholder:"\u8BF7\u586B\u5199\u89C4\u5219\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u8DEF\u7531\u8DEF\u5F84",prop:"path"},{default:o(()=>[l(g,{modelValue:e.ruleForm.path,"onUpdate:modelValue":n[4]||(n[4]=a=>e.ruleForm.path=a),placeholder:"\u8DEF\u7531\u4E2D\u7684 path \u503C",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u7EC4\u4EF6\u8DEF\u5F84",prop:"component"},{default:o(()=>[l(g,{modelValue:e.ruleForm.component,"onUpdate:modelValue":n[5]||(n[5]=a=>e.ruleForm.component=a),placeholder:"\u7EC4\u4EF6\u8DEF\u5F84",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u83DC\u5355\u56FE\u6807"},{default:o(()=>[l(I,{placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u56FE\u6807",modelValue:e.ruleForm.icon,"onUpdate:modelValue":n[6]||(n[6]=a=>e.ruleForm.icon=a),type:"all"},null,8,["modelValue"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u94FE\u63A5\u5730\u5740"},{default:o(()=>[l(g,{modelValue:e.ruleForm.linkUrl,"onUpdate:modelValue":n[7]||(n[7]=a=>e.ruleForm.linkUrl=a),placeholder:"\u5916\u94FE/\u5185\u5D4C\u65F6\u94FE\u63A5\u5730\u5740\uFF08http:xxx.com\uFF09",clearable:"",disabled:e.ruleForm.isLink===0},null,8,["modelValue","disabled"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u83DC\u5355\u6392\u5E8F"},{default:o(()=>[l(F,{modelValue:e.ruleForm.weigh,"onUpdate:modelValue":n[8]||(n[8]=a=>e.ruleForm.weigh=a),"controls-position":"right",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F",class:"w100"},null,8,["modelValue"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u662F\u5426\u9690\u85CF"},{default:o(()=>[l(E,{modelValue:e.ruleForm.isHide,"onUpdate:modelValue":n[9]||(n[9]=a=>e.ruleForm.isHide=a)},{default:o(()=>[l(m,{label:0},{default:o(()=>[he]),_:1}),l(m,{label:1},{default:o(()=>[Ie]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u662F\u5426\u5916\u94FE"},{default:o(()=>[l(E,{modelValue:e.ruleForm.isLink,"onUpdate:modelValue":n[10]||(n[10]=a=>e.ruleForm.isLink=a),disabled:e.ruleForm.isIframe===1},{default:o(()=>[l(m,{label:1},{default:o(()=>[be]),_:1}),l(m,{label:0},{default:o(()=>[Ce]),_:1})]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1}),l(f,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u662F\u5426\u5185\u5D4C"},{default:o(()=>[l(E,{modelValue:e.ruleForm.isIframe,"onUpdate:modelValue":n[11]||(n[11]=a=>e.ruleForm.isIframe=a),onChange:e.onSelectIframeChange},{default:o(()=>[l(m,{label:1},{default:o(()=>[Ee]),_:1}),l(m,{label:0},{default:o(()=>[Ve]),_:1})]),_:1},8,["modelValue","onChange"])]),_:1})]),_:1}),e.ruleForm.menuType===1?(V(),w(f,{key:0,xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:o(()=>[l(d,{label:"\u662F\u5426\u56FA\u5B9A"},{default:o(()=>[l(E,{modelValue:e.ruleForm.isAffix,"onUpdate:modelValue":n[12]||(n[12]=a=>e.ruleForm.isAffix=a)},{default:o(()=>[l(m,{label:1},{default:o(()=>[De]),_:1}),l(m,{label:0},{default:o(()=>[ye]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})):B("",!0)]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var ve=W(me,[["render",we]]);export{ve as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editNode.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editNode.1701184304695.css new file mode 100644 index 0000000..a328245 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editNode.1701184304695.css @@ -0,0 +1 @@ +.json-tree .json-tree-item[data-v-0809debf]{margin:20px 0}.json-tree .json-tree-item .json-tree-line .path-btn[data-v-0809debf]{background:#37f;color:#fff;padding:2px 6px;font-size:12px;cursor:pointer;border-radius:3px;margin-left:20px}.json-tree .json-tree-item .children-tree[data-v-0809debf]{margin-left:20px}.el-input__wrapper{width:98%}.box-content{border:1px solid #e8e8e8;margin:10px;padding:10px}.content-f{display:flex;margin-bottom:10px}.content-f .el-input__wrapper{margin-right:5px}.addbutton{width:100%;margin-top:10px}.conicon{width:55px;height:25px;font-size:28px;line-height:28px;cursor:pointer}.jv-key{cursor:pointer;color:#0034f1} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editNode.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editNode.1701184304695.js new file mode 100644 index 0000000..a679fe0 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editNode.1701184304695.js @@ -0,0 +1 @@ +import{a as _}from"./index.17011843046957.js";import{_ as U,t as N,x as L,y as T,E as A}from"./index.1701184304695.js";import{L as q,h as I,a2 as z,ab as P,a as g,_ as l,T as o,e as R,ai as m,o as p,b,Y as i,Z as E,F as k,a8 as C,S as V,X as S}from"./vue.1701184304695.js";const $=q({name:"Edit",components:{Delete:N,Minus:L,Right:T},setup(u,{emit:a}){I();const y=I(null),r=z({isShowDialog:!1,methodData:[{label:"max",value:"max"},{label:"min",value:"min"},{label:"avg",value:"avg"}],tabData:[{label:"int",value:"int"},{label:"long",value:"long"},{label:"float",value:"float"},{label:"double",value:"double"},{label:"string",value:"string"},{label:"boolean",value:"boolean"},{label:"date",value:"date"}],sourceData:[],nodeData:[],ruleForm:{id:0,sourceId:0,nodeId:0,name:"",key:"",from:1,isSorting:0,isDesc:0,isPk:0,default:"",desc:""},rules:{key:[{required:!0,message:"\u5B57\u6BB5\u8282\u70B9\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],name:[{required:!0,message:"\u5B57\u6BB5\u8282\u70B9\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],dataType:[{required:!0,message:"\u5B57\u6BB5\u8282\u70B9\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],value:[{required:!0,message:"\u5B57\u6BB5\u8282\u70B9\u53D6\u503C\u9879\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],method:[{required:!0,message:"\u8BF7\u9009\u62E9\u53D6\u503C\u65B9\u5F0F",trigger:"blur"}],isSorting:[{required:!0,message:"\u8BF7\u9009\u62E9\u662F\u5426\u53C2\u4E0E\u6392\u5E8F",trigger:"blur"}],isDesc:[{required:!0,message:"\u8BF7\u9009\u62E9\u6392\u5E8F\u65B9\u5F0F",trigger:"blur"}]}}),v=t=>{d(),t!=null&&t.id&&(r.ruleForm=t,console.log(r.ruleForm)),t.sourceId&&s(t.sourceId),r.ruleForm=t,r.isShowDialog=!0,c()},c=()=>{_.common.getLists({}).then(t=>{r.sourceData=t.list})},s=t=>{_.node.getList({pageNum:1,pageSize:50,sourceId:t}).then(n=>{r.nodeData=n.list})},F=t=>{r.nodeData.forEach((n,h)=>{n.nodeId==t&&(r.ruleForm.name=n.name,r.ruleForm.key=n.key,r.ruleForm.dataType=n.dataType)})},d=()=>{r.ruleForm={id:0,name:"",sourceId:0,nodeId:0,key:"",from:1,isSorting:0,isDesc:0,isPk:0,default:"",desc:""}},f=()=>{r.isShowDialog=!1};return{getSouData:c,getNodeList:s,setNode:F,openDialog:v,closeDialog:f,onCancel:()=>{f()},onSubmit:()=>{const t=R(y);!t||t.validate(n=>{n&&(r.ruleForm.id!==0?_.tnode.edit(r.ruleForm).then(()=>{A.success("\u5B57\u6BB5\u8282\u70B9\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),f(),a("typeList")}):_.tnode.add(r.ruleForm).then(()=>{A.success("\u5B57\u6BB5\u8282\u70B9\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),f(),a("typeList")}))})},formRef:y,...P(r)}}}),M={class:"system-edit-dic-container"},W=i("\u81EA\u5B9A\u4E49"),X=i("\u6570\u636E\u6E90"),Y={key:0},Z={style:{float:"left"}},j={style:{float:"right","font-size":"13px"}},w={style:{float:"left"}},G={style:{float:"right","font-size":"13px"}},H=i("\u5426"),J=i("\u662F"),K=i("\u5426"),O=i("\u662F"),Q=i("\u5012\u5E8F"),x=i("\u6B63\u5E8F"),ee={class:"dialog-footer"},ue=i("\u53D6 \u6D88");function le(u,a,y,r,v,c){const s=m("el-radio"),F=m("el-radio-group"),d=m("el-form-item"),f=m("el-option"),D=m("el-select"),B=m("el-input"),t=m("el-form"),n=m("el-button"),h=m("el-dialog");return p(),g("div",M,[l(h,{title:(u.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u5B57\u6BB5\u8282\u70B9",modelValue:u.isShowDialog,"onUpdate:modelValue":a[11]||(a[11]=e=>u.isShowDialog=e),width:"769px"},{footer:o(()=>[b("span",ee,[l(n,{onClick:u.onCancel,size:"default"},{default:o(()=>[ue]),_:1},8,["onClick"]),l(n,{type:"primary",onClick:u.onSubmit,size:"default"},{default:o(()=>[i(E(u.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:o(()=>[l(t,{model:u.ruleForm,ref:"formRef",rules:u.rules,size:"default","label-width":"110px"},{default:o(()=>[l(d,{label:"\u7C7B\u578B",prop:"from"},{default:o(()=>[l(F,{modelValue:u.ruleForm.from,"onUpdate:modelValue":a[0]||(a[0]=e=>u.ruleForm.from=e)},{default:o(()=>[l(s,{label:1},{default:o(()=>[W]),_:1}),l(s,{label:2},{default:o(()=>[X]),_:1})]),_:1},8,["modelValue"])]),_:1}),u.ruleForm.from==2?(p(),g("div",Y,[l(d,{label:"\u6570\u636E\u6E90",prop:"sourceId"},{default:o(()=>[l(D,{modelValue:u.ruleForm.sourceId,"onUpdate:modelValue":a[1]||(a[1]=e=>u.ruleForm.sourceId=e),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u6570\u636E\u6E90",onChange:u.getNodeList},{default:o(()=>[(p(!0),g(k,null,C(u.sourceData,e=>(p(),V(f,{key:e.sourceId,label:e.key,value:e.sourceId},{default:o(()=>[b("span",Z,E(e.name),1),b("span",j,E(e.key),1)]),_:2},1032,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),l(d,{label:"\u6570\u636E\u6E90\u8282\u70B9",prop:"nodeId"},{default:o(()=>[l(D,{modelValue:u.ruleForm.nodeId,"onUpdate:modelValue":a[2]||(a[2]=e=>u.ruleForm.nodeId=e),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u6570\u636E\u6E90",onChange:u.setNode},{default:o(()=>[(p(!0),g(k,null,C(u.nodeData,e=>(p(),V(f,{key:e.nodeId,label:e.key,value:e.nodeId},{default:o(()=>[b("span",w,E(e.key),1),b("span",G,E(e.name),1)]),_:2},1032,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1})])):S("",!0),l(d,{label:"\u5B57\u6BB5\u8282\u70B9\u6807\u8BC6",prop:"key"},{default:o(()=>[l(B,{modelValue:u.ruleForm.key,"onUpdate:modelValue":a[3]||(a[3]=e=>u.ruleForm.key=e),placeholder:"\u8BF7\u8F93\u5165\u5B57\u6BB5\u8282\u70B9\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u5B57\u6BB5\u8282\u70B9\u540D\u79F0",prop:"name"},{default:o(()=>[l(B,{modelValue:u.ruleForm.name,"onUpdate:modelValue":a[4]||(a[4]=e=>u.ruleForm.name=e),placeholder:"\u8BF7\u8F93\u5165\u5B57\u6BB5\u8282\u70B9\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u6570\u636E\u7C7B\u578B",prop:"dataType"},{default:o(()=>[l(D,{modelValue:u.ruleForm.dataType,"onUpdate:modelValue":a[5]||(a[5]=e=>u.ruleForm.dataType=e),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u6570\u636E\u7C7B\u578B"},{default:o(()=>[(p(!0),g(k,null,C(u.tabData,e=>(p(),V(f,{key:e.value,label:e.label,value:e.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),u.ruleForm.from==1?(p(),V(d,{key:1,label:"\u9ED8\u8BA4\u503C",prop:"default"},{default:o(()=>[l(B,{modelValue:u.ruleForm.default,"onUpdate:modelValue":a[6]||(a[6]=e=>u.ruleForm.default=e),placeholder:"\u8BF7\u8F93\u5165\u53D6\u503C\u9879"},null,8,["modelValue"])]),_:1})):S("",!0),l(d,{label:"\u662F\u5426\u4E3B\u952E",prop:"isPk"},{default:o(()=>[l(F,{modelValue:u.ruleForm.isPk,"onUpdate:modelValue":a[7]||(a[7]=e=>u.ruleForm.isPk=e)},{default:o(()=>[l(s,{label:0},{default:o(()=>[H]),_:1}),l(s,{label:1},{default:o(()=>[J]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(d,{label:"\u662F\u5426\u6392\u5E8F",prop:"isSorting"},{default:o(()=>[l(F,{modelValue:u.ruleForm.isSorting,"onUpdate:modelValue":a[8]||(a[8]=e=>u.ruleForm.isSorting=e)},{default:o(()=>[l(s,{label:0},{default:o(()=>[K]),_:1}),l(s,{label:1},{default:o(()=>[O]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(d,{label:"\u6392\u5E8F\u65B9\u5F0F",prop:"isDesc"},{default:o(()=>[l(F,{modelValue:u.ruleForm.isDesc,"onUpdate:modelValue":a[9]||(a[9]=e=>u.ruleForm.isDesc=e)},{default:o(()=>[l(s,{label:0},{default:o(()=>[Q]),_:1}),l(s,{label:1},{default:o(()=>[x]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(d,{label:"\u63CF\u8FF0",prop:"desc"},{default:o(()=>[l(B,{modelValue:u.ruleForm.desc,"onUpdate:modelValue":a[10]||(a[10]=e=>u.ruleForm.desc=e),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var re=U($,[["render",le]]);export{re as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editNode.17011843046952.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editNode.17011843046952.js new file mode 100644 index 0000000..bf0c276 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editNode.17011843046952.js @@ -0,0 +1 @@ +import{a as P}from"./index.17011843046957.js";/* empty css */import{_ as H,t as K,x as M,y as W,E as O}from"./index.1701184304695.js";import{L as J,ai as f,o as s,a as i,F as I,a8 as S,b as p,Y as v,Z as A,X as h,_ as t,T as u,aB as X,aC as Y,h as w,a2 as Z,ab as G,e as Q,S as k}from"./vue.1701184304695.js";const x={data:{type:Array,default:[]}},ee=J({name:"jsonTree",props:x,emits:["handlePath"],setup(l,{emit:n}){const B=E=>{n("handlePath",E)};return{handlePath:E=>{B(E)},getPath:B}}}),U=l=>(X("data-v-0809debf"),l=l(),Y(),l),le={class:"json-tree"},ae={class:"json-tree-line"},oe={key:0},ue=U(()=>p("span",{textContent:": {"},null,-1)),te=[ue],ne={key:1},se=U(()=>p("span",{textContent:": ["},null,-1)),re=[se],de={key:2},ie=U(()=>p("span",null,":",-1)),pe={style:{"margin-left":"15px"}},ce={key:0},fe=["onClick"],me={key:0,class:"children-tree"},_e={key:1},he=U(()=>p("span",{textContent:"}"},null,-1)),ye={key:0},Fe={key:2},be=U(()=>p("span",{textContent:"]"},null,-1)),ge={key:0};function ve(l,n,B,a,E,L){const y=f("el-tooltip"),m=f("json-tree");return s(),i("div",le,[(s(!0),i(I,null,S(l.data,(d,D)=>(s(),i("div",{key:`${d.key}-${D}`,class:"json-tree-item"},[p("p",ae,[v(A(d.key)+" ",1),d.type==="object"?(s(),i("span",oe,te)):d.type==="array"?(s(),i("span",ne,re)):(s(),i("span",de,[ie,p("span",pe,A(d.type==="string"?`"${d.value}"`:`${d.value}`),1),D[p("span",{class:"path-btn",onClick:F=>l.getPath(d.path)},"\u9009\u62E9",8,fe)]),_:2},1032,["content"])]),d.leaf?(s(),i("div",me,[t(m,{data:d.children,onHandlePath:l.handlePath},null,8,["data","onHandlePath"])])):h("",!0),d.type==="object"?(s(),i("span",_e,[he,D{a.detail.from==1?P.common.api(a.detail.sourceId).then(e=>{a.jsonData=JSON.parse(e.data);var o=V([],a.jsonData,"");a.jsonPathData=o,a.dialogVisible=!0}):a.detail.from==4&&P.common.devapi(a.detail.sourceId).then(e=>{a.jsonData=JSON.parse(e.data);var o=V([],a.jsonData,"");a.jsonPathData=o,a.dialogVisible=!0})},L=e=>{let o=e.slice(1);a.ruleForm.value=o,a.dialogVisible=!1},y=e=>{a.rule.splice(e,1)},m=()=>{a.rule.push({expression:"",replace:""})},d=e=>{if(D(),e!=null&&e.nodeId){a.ruleForm=e;var o=JSON.parse(e.rule);console.log(o),o.forEach((r,c)=>{a.rule[c].expression=r.expression,a.rule[c].replace=r.replace})}P.common.detail(e.sourceId).then(r=>{a.detail=r.data,r.data.from==4&&P.node.getpropertyList({key:r.data.deviceConfig.productKey}).then(c=>{a.propertyData=c}),r.data.from==2&&P.common.getfields(e.sourceId).then(c=>{a.dbData=c.data})}),a.ruleForm=e,a.isShowDialog=!0},D=()=>{a.ruleForm={nodeId:0,name:"",isPk:0,from:1,key:"",rule:[],description:""}},F=()=>{a.isShowDialog=!1},T=()=>{F()},C=()=>{const e=Q(B);!e||e.validate(o=>{o&&(a.ruleForm.rule=a.rule,a.ruleForm.nodeId!==0?P.node.edit(a.ruleForm).then(()=>{O.success("\u6570\u636E\u8282\u70B9\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),F(),n("typeList")}):P.node.add(a.ruleForm).then(()=>{O.success("\u6570\u636E\u8282\u70B9\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),F(),n("typeList")}))})},R=e=>{a.propertyData.forEach((o,r)=>{o.key===e&&(a.ruleForm.dataType=o.valueType.type)})},q=e=>{a.ruleForm.dataType=a.dbData[e].Type},z=e=>{},V=(e,o,r)=>{const c=$(o);if(c==="object")for(let b in o){const _={key:b,path:`${r}.${b}`},j=$(o[b]);_.type=j,j==="object"||j==="array"?(_.leaf=!0,_.children=[],V(_.children,o[b],_.path)):(_.leaf=!1,_.value=o[b]),e.push(_)}else c==="array"&&o.forEach((b,_)=>{const j=$(b),g={key:_};g.type=j,g.path=`${r}.${_}`,j==="object"||j==="array"?(g.leaf=!0,g.children=[],V(g.children,b,g.path)):(g.value=b,g.leaf=!1),e.push(g)});return e},$=e=>{let o=typeof e;if(o==="object")return Array.isArray(e)?"array":e===null?"null":"object";switch(o){case"boolean":return"boolean";case"string":return"string";case"number":return"number";default:return"error"}},N=(e,o,r)=>{for(var c in r)if(c===o){e.push(c);break}else r[c]instanceof Object&&(e.push(c),N(e,o,r[c]));return e};return{jsonPath:V,handlePath:L,validateType:$,getNodeList:R,getDbList:q,onKeyclick:z,getOrgIdArr:N,addRule:m,onTest:E,delRule:y,openDialog:d,closeDialog:F,onCancel:T,onSubmit:C,formRef:B,...G(a)}}}),Be={class:"system-edit-dic-container"},Ee=v("\u5426"),Ce=v("\u662F"),Ve=v("\u9009\u62E9\u503C"),$e={style:{float:"left"}},je={style:{float:"right","font-size":"13px"}},Pe={style:{float:"left"}},Ae={style:{float:"right","font-size":"13px"}},Te=v("\u89C4\u5219\u8868\u8FBE\u5F0F"),Ie={class:"conicon"},Se={style:{padding:"10px"}},Ue=v("\u589E\u52A0"),Ne={class:"dialog-footer"},Le=v("\u53D6 \u6D88"),Re={class:"dialog-footer"},qe=v("\u5173\u95ED");function ze(l,n,B,a,E,L){const y=f("el-input"),m=f("el-form-item"),d=f("el-radio"),D=f("el-radio-group"),F=f("el-option"),T=f("el-select"),C=f("el-button"),R=f("el-divider"),q=f("Delete"),z=f("el-icon"),V=f("el-form"),$=f("el-dialog"),N=f("jsontree");return s(),i("div",Be,[t($,{title:(l.ruleForm.nodeId!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u6570\u636E\u8282\u70B9",modelValue:l.isShowDialog,"onUpdate:modelValue":n[7]||(n[7]=e=>l.isShowDialog=e),width:"769px"},{footer:u(()=>[p("span",Ne,[t(C,{onClick:l.onCancel,size:"default"},{default:u(()=>[Le]),_:1},8,["onClick"]),t(C,{type:"primary",onClick:l.onSubmit,size:"default"},{default:u(()=>[v(A(l.ruleForm.nodeId!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:u(()=>[t(V,{model:l.ruleForm,ref:"formRef",rules:l.rules,size:"default","label-width":"110px"},{default:u(()=>[t(m,{label:"\u6570\u636E\u8282\u70B9\u6807\u8BC6",prop:"key"},{default:u(()=>[t(y,{modelValue:l.ruleForm.key,"onUpdate:modelValue":n[0]||(n[0]=e=>l.ruleForm.key=e),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u8282\u70B9\u540D\u79F0",disabled:l.detail.lockKey==1&&l.ruleForm.nodeId!==0},null,8,["modelValue","disabled"])]),_:1}),t(m,{label:"\u6570\u636E\u8282\u70B9\u540D\u79F0",prop:"name"},{default:u(()=>[t(y,{modelValue:l.ruleForm.name,"onUpdate:modelValue":n[1]||(n[1]=e=>l.ruleForm.name=e),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u8282\u70B9\u540D\u79F0"},null,8,["modelValue"])]),_:1}),t(m,{label:"\u662F\u5426\u4E3B\u952E",prop:"isPk"},{default:u(()=>[t(D,{modelValue:l.ruleForm.isPk,"onUpdate:modelValue":n[2]||(n[2]=e=>l.ruleForm.isPk=e)},{default:u(()=>[t(d,{label:0},{default:u(()=>[Ee]),_:1}),t(d,{label:1},{default:u(()=>[Ce]),_:1})]),_:1},8,["modelValue"])]),_:1}),l.detail.from==1||l.detail.from==2?(s(),k(m,{key:0,label:"\u6570\u636E\u7C7B\u578B",prop:"dataType"},{default:u(()=>[t(T,{modelValue:l.ruleForm.dataType,"onUpdate:modelValue":n[3]||(n[3]=e=>l.ruleForm.dataType=e),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u6570\u636E\u7C7B\u578B"},{default:u(()=>[(s(!0),i(I,null,S(l.tabData,e=>(s(),k(F,{key:e.value,label:e.label,value:e.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})):h("",!0),l.detail.from==1?(s(),k(m,{key:1,label:"\u53D6\u503C\u9879",prop:"value"},{default:u(()=>[t(y,{modelValue:l.ruleForm.value,"onUpdate:modelValue":n[4]||(n[4]=e=>l.ruleForm.value=e),placeholder:"\u8BF7\u8F93\u5165\u53D6\u503C\u9879",class:"w-35"},null,8,["modelValue"]),t(C,{type:"success",onClick:l.onTest},{default:u(()=>[Ve]),_:1},8,["onClick"])]),_:1})):h("",!0),l.detail.from==4?(s(),k(m,{key:2,label:"\u53D6\u503C\u9879",prop:"value"},{default:u(()=>[t(T,{modelValue:l.ruleForm.value,"onUpdate:modelValue":n[5]||(n[5]=e=>l.ruleForm.value=e),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u6570\u53D6\u503C\u9879",onChange:l.getNodeList},{default:u(()=>[(s(!0),i(I,null,S(l.propertyData,e=>(s(),k(F,{key:e.key,label:e.name,value:e.key},{default:u(()=>[p("span",$e,A(e.key),1),p("span",je,A(e.name),1)]),_:2},1032,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1})):h("",!0),l.detail.from==2?(s(),k(m,{key:3,label:"\u53D6\u503C\u9879",prop:"value"},{default:u(()=>[t(T,{modelValue:l.ruleForm.value,"onUpdate:modelValue":n[6]||(n[6]=e=>l.ruleForm.value=e),filterable:"",placeholder:"\u8BF7\u9009\u62E9\u6570\u53D6\u503C\u9879",onChange:l.getDbList},{default:u(()=>[(s(!0),i(I,null,S(l.dbData,e=>(s(),k(F,{key:e.Name,label:e.Comment,value:e.Name},{default:u(()=>[p("span",Pe,A(e.Name),1),p("span",Ae,A(e.Comment),1)]),_:2},1032,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1})):h("",!0),t(R,{"content-position":"left"},{default:u(()=>[Te]),_:1}),(s(!0),i(I,null,S(l.rule,(e,o)=>(s(),i("div",{key:o},[t(m,{label:"\u6B63\u5219\u8868\u8FBE\u5F0F"},{default:u(()=>[t(y,{modelValue:e.expression,"onUpdate:modelValue":r=>e.expression=r,placeholder:"\u8BF7\u8F93\u5165\u89C4\u5219\u8868\u8FBE\u5F0F"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),t(m,{label:"\u66FF\u6362\u5185\u5BB9"},{default:u(()=>[t(y,{modelValue:e.replace,"onUpdate:modelValue":r=>e.replace=r,placeholder:"\u8BF7\u8F93\u5165\u66FF\u6362\u5185\u5BB9",class:"w-35"},null,8,["modelValue","onUpdate:modelValue"]),p("div",Ie,[o>0?(s(),k(z,{key:0,onClick:r=>l.delRule(o)},{default:u(()=>[t(q)]),_:2},1032,["onClick"])):h("",!0)])]),_:2},1024)]))),128)),p("div",Se,[t(C,{type:"primary",class:"addbutton",onClick:l.addRule},{default:u(()=>[Ue]),_:1},8,["onClick"])])]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"]),t($,{modelValue:l.dialogVisible,"onUpdate:modelValue":n[9]||(n[9]=e=>l.dialogVisible=e),title:"\u70B9\u51FB\u84DD\u8272key\u503C\u8FDB\u884C\u9009\u62E9",width:"40%"},{footer:u(()=>[p("span",Re,[t(C,{onClick:n[8]||(n[8]=e=>l.dialogVisible=!1)},{default:u(()=>[qe]),_:1})])]),default:u(()=>[t(N,{data:l.jsonPathData,onHandlePath:l.handlePath},null,8,["data","onHandlePath"])]),_:1},8,["modelValue"])])}var Ke=H(ke,[["render",ze]]);export{Ke as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editOption.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editOption.1701184304695.css new file mode 100644 index 0000000..29c0851 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editOption.1701184304695.css @@ -0,0 +1 @@ +.input-box{display:flex;flex-direction:row;justify-content:space-between;margin-top:10px}.input-option{line-height:30px;padding-top:5px;width:140px}.input-option i{margin:0 5px;border:1px solid #c3c3c3;font-size:16px}.input-options{display:flex;align-items:center;color:#409eff;cursor:pointer} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editOption.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editOption.1701184304695.js new file mode 100644 index 0000000..85ae5ef --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editOption.1701184304695.js @@ -0,0 +1 @@ +import{a as M}from"./index.170118430469519.js";import{_ as $,v as N,x as P,y as J,E as R}from"./index.1701184304695.js";import{L as O,h as j,a2 as q,ab as z,a as f,_ as a,T as o,e as W,ai as F,o as t,b as y,Y as A,Z as X,F as v,a8 as E,S as p,X as i}from"./vue.1701184304695.js";const Y=O({name:"deviceEditPro",components:{Plus:N,Minus:P,Right:J},setup(e,{emit:u}){const L=j(null),d=q({isShowDialog:!1,typeData:[],type:"",types:"",valueType:{type:"",maxLength:""},elementType:{type:"",maxLength:""},enumdata:[{text:"",value:""}],ruleForm:{id:0,name:"",key:"",transportProtocol:"",accessMode:"0",status:1,valueType:{type:"",maxLength:""},desc:""},rules:{name:[{required:!0,message:"\u53C2\u6570\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],key:[{required:!0,message:"\u53C2\u6570\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],accessMode:[{required:!0,message:"\u8BF7\u9009\u62E9\u662F\u5426\u53EA\u8BFB",trigger:"blur"}]}}),S=m=>{w(),M.product.getDataType({status:-1}).then(B=>{const V=Object.values(B.dataType);V.forEach((U,l)=>{l==0?(V[l].label="\u57FA\u7840\u7C7B\u578B",V[l].options=U):(V[l].label="\u6269\u5C55\u7C7B\u578B",V[l].options=U)}),console.log(V),d.typeData=V||[]}),m&&(console.log(m),d.ruleForm=m),d.isShowDialog=!0},w=()=>{d.ruleForm={name:"",desc:""},d.valueType={},d.enumdata=[{text:"",value:""}],d.elementType={}},n=m=>{d.type=m,console.log(m)},s=m=>{console.log(m),d.types=m,console.log(m)},T=()=>{d.enumdata.push({text:"",value:""})},k=m=>{d.enumdata.splice(m,1)},h=()=>{},b=()=>{d.isShowDialog=!1};return{openDialog:S,addEnum:T,delEnum:k,addJson:h,seletChange:n,seletChanges:s,closeDialog:b,onCancel:()=>{b()},onSubmit:()=>{const m=W(L);!m||m.validate(B=>{B&&(d.ruleForm.id!==0?M.product.edit(d.ruleForm).then(()=>{R.success("\u53C2\u6570\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),b(),u("typeList")}):(d.type=="enum"&&(d.valueType.elements=d.enumdata),d.ruleForm.valueType=d.valueType,R.success("\u53C2\u6570\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),b(),u("typeList",d.ruleForm,d.ruleForm.type_data)))})},formRef:L,...z(d)}}}),Z={class:"system-edit-dic-container"},G={class:"input-box"},H=y("span",{style:{margin:"0px 10px"}},"~",-1),I={class:"input-box"},K=A(),Q=y("span",{style:{margin:"0px 10px"}},"~",-1),_={style:{margin:"0px 10px"}},c={class:"input-option"},x=y("div",null,"\u6DFB\u52A0\u53C2\u6570",-1),ee={key:7},le={class:"input-box"},ue=y("span",{style:{margin:"0px 10px"}},"~",-1),ae={class:"input-box"},oe=A(),te=y("span",{style:{margin:"0px 10px"}},"~",-1),ne={style:{margin:"0px 10px"}},de={class:"input-option"},pe={class:"dialog-footer"},se=A("\u53D6 \u6D88");function re(e,u,L,d,S,w){const n=F("el-input"),s=F("el-form-item"),T=F("el-option"),k=F("el-option-group"),h=F("el-select"),b=F("Right"),g=F("el-icon"),D=F("Plus"),m=F("Minus"),B=F("el-form"),V=F("el-button"),U=F("el-dialog");return t(),f("div",Z,[a(U,{title:(e.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u53C2\u6570",modelValue:e.isShowDialog,"onUpdate:modelValue":u[22]||(u[22]=l=>e.isShowDialog=l),width:"769px"},{footer:o(()=>[y("span",pe,[a(V,{onClick:e.onCancel,size:"default"},{default:o(()=>[se]),_:1},8,["onClick"]),a(V,{type:"primary",onClick:e.onSubmit,size:"default"},{default:o(()=>[A(X(e.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:o(()=>[a(B,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"120px"},{default:o(()=>[a(s,{label:"\u53C2\u6570\u6807\u8BC6",prop:"key"},{default:o(()=>[a(n,{modelValue:e.ruleForm.key,"onUpdate:modelValue":u[0]||(u[0]=l=>e.ruleForm.key=l),placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\u6807\u8BC6",disabled:e.ruleForm.id!==0},null,8,["modelValue","disabled"])]),_:1}),a(s,{label:"\u53C2\u6570\u540D\u79F0",prop:"name"},{default:o(()=>[a(n,{modelValue:e.ruleForm.name,"onUpdate:modelValue":u[1]||(u[1]=l=>e.ruleForm.name=l),placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(s,{label:"\u6570\u636E\u7C7B\u578B",prop:"type"},{default:o(()=>[a(h,{modelValue:e.valueType.type,"onUpdate:modelValue":u[2]||(u[2]=l=>e.valueType.type=l),placeholder:"\u8BF7\u9009\u62E9\u6570\u636E\u7C7B\u578B",onChange:e.seletChange},{default:o(()=>[(t(!0),f(v,null,E(e.typeData,l=>(t(),p(k,{key:l.label,label:l.label},{default:o(()=>[(t(!0),f(v,null,E(l.options,r=>(t(),p(T,{key:r.type,label:r.title,value:r.type,disabled:r.type=="object"},null,8,["label","value","disabled"]))),128))]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),e.type=="float"||e.type=="double"?(t(),p(s,{key:0,label:"\u7CBE\u5EA6",prop:"decimals"},{default:o(()=>[a(n,{modelValue:e.valueType.decimals,"onUpdate:modelValue":u[3]||(u[3]=l=>e.valueType.decimals=l),placeholder:"\u8BF7\u8F93\u5165\u7CBE\u5EA6"},null,8,["modelValue"])]),_:1})):i("",!0),e.type=="int"||e.type=="long"||e.type=="float"||e.type=="double"?(t(),p(s,{key:1,label:"\u5355\u4F4D",prop:"unit"},{default:o(()=>[a(n,{modelValue:e.valueType.unit,"onUpdate:modelValue":u[4]||(u[4]=l=>e.valueType.unit=l),placeholder:"\u8BF7\u8F93\u5165\u5355\u4F4D"},null,8,["modelValue"])]),_:1})):i("",!0),e.type=="string"?(t(),p(s,{key:2,label:"\u6700\u5927\u957F\u5EA6",prop:"maxLength"},{default:o(()=>[a(n,{modelValue:e.valueType.maxLength,"onUpdate:modelValue":u[5]||(u[5]=l=>e.valueType.maxLength=l),placeholder:"\u8BF7\u8F93\u5165\u6700\u5927\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):i("",!0),e.type=="date"?(t(),p(s,{key:3,label:"\u65F6\u95F4\u683C\u5F0F",prop:"maxLength"},{default:o(()=>[a(n,{modelValue:e.valueType.maxLength,"onUpdate:modelValue":u[6]||(u[6]=l=>e.valueType.maxLength=l),placeholder:"\u8BF7\u8F93\u5165\u65F6\u95F4\u683C\u5F0F"},null,8,["modelValue"])]),_:1})):i("",!0),e.type=="boolean"?(t(),p(s,{key:4,label:"\u5E03\u5C14\u503C",prop:"maxLength"},{default:o(()=>[y("div",G,[a(n,{modelValue:e.valueType.trueText,"onUpdate:modelValue":u[7]||(u[7]=l=>e.valueType.trueText=l),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u662F"},null,8,["modelValue"]),H,a(n,{modelValue:e.valueType.trueValue,"onUpdate:modelValue":u[8]||(u[8]=l=>e.valueType.trueValue=l),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"true"},null,8,["modelValue"])]),y("div",I,[a(n,{modelValue:e.valueType.falseText,"onUpdate:modelValue":u[9]||(u[9]=l=>e.valueType.falseText=l),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u5426"},null,8,["modelValue"]),K,Q,a(n,{modelValue:e.valueType.falseValue,"onUpdate:modelValue":u[10]||(u[10]=l=>e.valueType.falseValue=l),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"false"},null,8,["modelValue"])])]),_:1})):i("",!0),e.type=="enum"?(t(),p(s,{key:5,label:"\u679A\u4E3E\u9879",prop:"maxLength"},{default:o(()=>[(t(!0),f(v,null,E(e.enumdata,(l,r)=>(t(),f("div",{class:"input-box",key:r},[a(n,{modelValue:l.text,"onUpdate:modelValue":C=>l.text=C,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u6587\u672C"},null,8,["modelValue","onUpdate:modelValue"]),y("span",_,[a(g,null,{default:o(()=>[a(b)]),_:1})]),a(n,{modelValue:l.value,"onUpdate:modelValue":C=>l.value=C,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u503C"},null,8,["modelValue","onUpdate:modelValue"]),y("div",c,[r==0?(t(),p(g,{key:0,onClick:e.addEnum},{default:o(()=>[a(D)]),_:1},8,["onClick"])):i("",!0),r!=0?(t(),p(g,{key:1,onClick:C=>e.delEnum(r)},{default:o(()=>[a(m)]),_:2},1032,["onClick"])):i("",!0)])]))),128))]),_:1})):i("",!0),e.type=="object"?(t(),p(s,{key:6,label:"JSON\u5BF9\u8C61",prop:"maxLength"},{default:o(()=>[y("div",{class:"input-options",onClick:u[11]||(u[11]=(...l)=>e.addJson&&e.addJson(...l))},[a(g,null,{default:o(()=>[a(D)]),_:1}),x])]),_:1})):i("",!0),e.type=="array"?(t(),f("div",ee,[a(s,{label:"\u5143\u7D20\u7C7B\u578B",prop:"type"},{default:o(()=>[a(h,{modelValue:e.elementType.type,"onUpdate:modelValue":u[12]||(u[12]=l=>e.elementType.type=l),placeholder:"\u8BF7\u9009\u62E9\u5143\u7D20\u7C7B\u578B",onChange:e.seletChanges},{default:o(()=>[(t(!0),f(v,null,E(e.typeData,l=>(t(),p(k,{key:l.label,label:l.label},{default:o(()=>[(t(!0),f(v,null,E(l.options,r=>(t(),p(T,{key:r.type,label:r.title,value:r.type,disabled:r.type=="array"},null,8,["label","value","disabled"]))),128))]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),e.types=="float"||e.types=="double"?(t(),p(s,{key:0,label:"\u7CBE\u5EA6",prop:"decimals"},{default:o(()=>[a(n,{modelValue:e.elementType.decimals,"onUpdate:modelValue":u[13]||(u[13]=l=>e.elementType.decimals=l),placeholder:"\u8BF7\u8F93\u5165\u7CBE\u5EA6"},null,8,["modelValue"])]),_:1})):i("",!0),e.types=="int"||e.types=="long"||e.types=="float"||e.types=="double"?(t(),p(s,{key:1,label:"\u5355\u4F4D",prop:"unit"},{default:o(()=>[a(n,{modelValue:e.elementType.unit,"onUpdate:modelValue":u[14]||(u[14]=l=>e.elementType.unit=l),placeholder:"\u8BF7\u8F93\u5165\u5355\u4F4D"},null,8,["modelValue"])]),_:1})):i("",!0),e.types=="string"?(t(),p(s,{key:2,label:"\u6700\u5927\u957F\u5EA6",prop:"maxLength"},{default:o(()=>[a(n,{modelValue:e.elementType.maxLength,"onUpdate:modelValue":u[15]||(u[15]=l=>e.elementType.maxLength=l),placeholder:"\u8BF7\u8F93\u5165\u6700\u5927\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):i("",!0),e.types=="date"?(t(),p(s,{key:3,label:"\u65F6\u95F4\u683C\u5F0F",prop:"maxLength"},{default:o(()=>[a(n,{modelValue:e.elementType.maxLength,"onUpdate:modelValue":u[16]||(u[16]=l=>e.elementType.maxLength=l),placeholder:"\u8BF7\u8F93\u5165\u65F6\u95F4\u683C\u5F0F"},null,8,["modelValue"])]),_:1})):i("",!0),e.types=="boolean"?(t(),p(s,{key:4,label:"\u5E03\u5C14\u503C",prop:"maxLength"},{default:o(()=>[y("div",le,[a(n,{modelValue:e.elementType.trueText,"onUpdate:modelValue":u[17]||(u[17]=l=>e.elementType.trueText=l),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u662F"},null,8,["modelValue"]),ue,a(n,{modelValue:e.elementType.trueValue,"onUpdate:modelValue":u[18]||(u[18]=l=>e.elementType.trueValue=l),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"true"},null,8,["modelValue"])]),y("div",ae,[a(n,{modelValue:e.elementType.falseText,"onUpdate:modelValue":u[19]||(u[19]=l=>e.elementType.falseText=l),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u5426"},null,8,["modelValue"]),oe,te,a(n,{modelValue:e.elementType.falseValue,"onUpdate:modelValue":u[20]||(u[20]=l=>e.elementType.falseValue=l),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"false"},null,8,["modelValue"])])]),_:1})):i("",!0),e.types=="enum"?(t(),p(s,{key:5,label:"\u679A\u4E3E\u9879",prop:"maxLength"},{default:o(()=>[(t(!0),f(v,null,E(e.enumdata,(l,r)=>(t(),f("div",{class:"input-box",key:r},[a(n,{modelValue:l.text,"onUpdate:modelValue":C=>l.text=C,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u503C"},null,8,["modelValue","onUpdate:modelValue"]),y("span",ne,[a(g,null,{default:o(()=>[a(b)]),_:1})]),a(n,{modelValue:l.value,"onUpdate:modelValue":C=>l.value=C,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u6587\u672C"},null,8,["modelValue","onUpdate:modelValue"]),y("div",de,[r==0?(t(),p(g,{key:0,onClick:e.addEnum},{default:o(()=>[a(D)]),_:1},8,["onClick"])):i("",!0),r!=0?(t(),p(g,{key:1,onClick:C=>e.delEnum(r)},{default:o(()=>[a(m)]),_:2},1032,["onClick"])):i("",!0)])]))),128))]),_:1})):i("",!0)])):i("",!0),a(s,{label:"\u53C2\u6570\u63CF\u8FF0 ",prop:"desc"},{default:o(()=>[a(n,{modelValue:e.ruleForm.desc,"onUpdate:modelValue":u[21]||(u[21]=l=>e.ruleForm.desc=l),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\u63CF\u8FF0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var Fe=$(Y,[["render",re]]);export{Fe as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editParams.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editParams.1701184304695.css new file mode 100644 index 0000000..1879a6f --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editParams.1701184304695.css @@ -0,0 +1 @@ +[data-v-0e0befa0] .el-dialog__body{max-height:calc(90vh - 111px)!important;overflow-y:auto;overflow-x:hidden}[data-v-0e0befa0] .el-upload-list{display:none} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editParams.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editParams.1701184304695.js new file mode 100644 index 0000000..1d23fe0 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editParams.1701184304695.js @@ -0,0 +1,3 @@ +import{j as A,p as V,k as K,l as x,g as w,E as y,_ as Q}from"./index.1701184304695.js";import{L as D,h,ai as n,o as b,S as T,T as a,_ as t,e as P,Y as F,a2 as j,j as z,b as R,a as S,a8 as M,F as O,X as $}from"./vue.1701184304695.js";var L={certificateManagement:{getList:o=>A("/system/certificate/list",o),getAll:()=>A("/system/certificate/getAll"),add:o=>V("/system/certificate/add",o),edit:o=>K("/system/certificate/edit",o),del:o=>x("/system/certificate/delete",{id:o}),editStatus:o=>V("/system/certificate/editStatus",o)}};const X=F(" \u6570\u636E\u5BFC\u5165 "),Y=D({__name:"uploadFile",props:{accept:{type:String,default:""},url:{type:String,default:"/common/singleFile"}},emits:["update"],setup(o,{emit:C}){const g=o,f={Authorization:"Bearer "+localStorage.token},e=h([]),E=w("/base-api/api/v1"+g.url),k=m=>{console.log(m),m.code===0?y.success("\u6587\u4EF6\u4E0A\u4F20\u6210\u529F"):y.error(m.message),e.value=[],C("update",m.data.path)},I=m=>m.size/1024/1024>2?(y.error("\u6587\u4EF6\u4E0D\u80FD\u8D85\u8FC72MB!"),!1):!0;return(m,_)=>{const v=n("ele-Upload"),N=n("el-icon"),i=n("el-button"),l=n("el-upload");return b(),T(l,{accept:o.accept,"show-file-list":!1,"file-list":e.value,"onUpdate:file-list":_[0]||(_[0]=p=>e.value=p),limit:1,headers:f,"before-upload":I,action:P(E),"on-success":k},{default:a(()=>[t(i,null,{default:a(()=>[t(N,null,{default:a(()=>[t(v)]),_:1}),X]),_:1})]),_:1},8,["accept","file-list","action"])}}});const G=F("\u4E0A\u4F20"),H=F("\u4E0A\u4F20"),J={class:"dialog-footer"},W=F("\u53D6 \u6D88"),Z=F("\u63D0 \u4EA4"),ee=D({__name:"editParams",emits:["update"],setup(o,{expose:C,emit:g}){const f=h(),e=j({dialogVisible:!1,activeName:"1",id:0,ruleForm:{},rules:{name:[{required:!0,message:"\u8BC1\u4E66\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],standard:[{required:!0,message:"\u8BC1\u4E66\u6807\u51C6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],fileContent:[{required:!0,message:"\u8BC1\u4E66\u6587\u4EF6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],publicKeyContent:[{required:!0,message:"\u8BC1\u4E66\u516C\u94A5\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],privateKeyContent:[{required:!0,message:"\u8BC1\u4E66\u79C1\u94A5\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]},columns:[{columnId:29,tableId:3,TableName:"",columnName:"business_type",columnComment:"0\u5176\u5B83 1\u65B0\u589E 2\u4FEE\u6539 3\u5220\u9664",columnType:"varchar(1)",columnKey:"",goType:"string",goField:"BusinessType",jsonField:"businessType",htmlField:"",isPk:"0",isIncrement:"",isRequired:"0",isInsert:"1",isEdit:"1",isList:"1",isQuery:"1",queryType:"EQ",htmlType:"datetime",dictType:"",sort:3,linkTableName:"",linkTableClass:"",linkTablePackage:"",linkLabelId:"",linkLabelName:""},{columnId:31,tableId:3,TableName:"",columnName:"method",columnComment:"\u8BF7\u6C42\u65B9\u6CD5",columnType:"varchar(255)",columnKey:"",goType:"string",goField:"Method",jsonField:"method",htmlField:"",isPk:"0",isIncrement:"",isRequired:"0",isInsert:"1",isEdit:"1",isList:"1",isQuery:"1",queryType:"EQ",htmlType:"input",dictType:"",sort:4,linkTableName:"",linkTableClass:"",linkTablePackage:"",linkLabelId:"",linkLabelName:""},{columnId:33,tableId:3,TableName:"",columnName:"oper_name",columnComment:"\u64CD\u4F5C\u4EBA\u5458",columnType:"varchar(255)",columnKey:"",goType:"string",goField:"OperName",jsonField:"operName",htmlField:"",isPk:"0",isIncrement:"",isRequired:"1",isInsert:"1",isEdit:"1",isList:"1",isQuery:"1",queryType:"LIKE",htmlType:"input",dictType:"",sort:5,linkTableName:"",linkTableClass:"",linkTablePackage:"",linkLabelId:"",linkLabelName:""},{columnId:35,tableId:3,TableName:"",columnName:"oper_url",columnComment:"\u64CD\u4F5Curl",columnType:"varchar(255)",columnKey:"",goType:"string",goField:"OperUrl",jsonField:"operUrl",htmlField:"",isPk:"0",isIncrement:"",isRequired:"0",isInsert:"1",isEdit:"1",isList:"1",isQuery:"1",queryType:"EQ",htmlType:"input",dictType:"",sort:6,linkTableName:"",linkTableClass:"",linkTablePackage:"",linkLabelId:"",linkLabelName:""},{columnId:37,tableId:3,TableName:"",columnName:"oper_ip",columnComment:"\u64CD\u4F5CIP",columnType:"varchar(255)",columnKey:"",goType:"string",goField:"OperIp",jsonField:"operIp",htmlField:"",isPk:"0",isIncrement:"",isRequired:"0",isInsert:"1",isEdit:"1",isList:"1",isQuery:"1",queryType:"EQ",htmlType:"input",dictType:"",sort:7,linkTableName:"",linkTableClass:"",linkTablePackage:"",linkLabelId:"",linkLabelName:""},{columnId:41,tableId:3,TableName:"",columnName:"status",columnComment:"0=\u6B63\u5E38,1=\u5F02\u5E38",columnType:"varchar(1)",columnKey:"",goType:"string",goField:"Status",jsonField:"status",htmlField:"",isPk:"0",isIncrement:"",isRequired:"1",isInsert:"1",isEdit:"1",isList:"1",isQuery:"1",queryType:"EQ",htmlType:"radio",dictType:"",sort:10,linkTableName:"",linkTableClass:"",linkTablePackage:"",linkLabelId:"",linkLabelName:""},{columnId:42,tableId:3,TableName:"",columnName:"oper_id",columnComment:"",columnType:"bigint(20)",columnKey:"",goType:"int64",goField:"OperId",jsonField:"operId",htmlField:"",isPk:"1",isIncrement:"",isRequired:"0",isInsert:"1",isEdit:"0",isList:"1",isQuery:"1",queryType:"EQ",htmlType:"input",dictType:"",sort:1,linkTableName:"",linkTableClass:"",linkTablePackage:"",linkLabelId:"",linkLabelName:""}]}),{proxy:E}=z(),{network_certificate:k}=E.useDict("network_certificate"),I=i=>{i&&(e.ruleForm=i),e.dialogVisible=!0},m=async i=>{!i||await i.validate((l,p)=>{l?(console.log("submit!"),e.ruleForm.id?L.certificateManagement.edit(e.ruleForm).then(s=>{y.success("\u8BC1\u4E66\u7F16\u8F91\u6210\u529F"),console.log(s),e.dialogVisible=!1,g("update"),e.ruleForm={}}):L.certificateManagement.add(e.ruleForm).then(s=>{y.success("\u8BC1\u4E66\u6DFB\u52A0\u6210\u529F"),console.log(s),e.dialogVisible=!1,g("update"),e.ruleForm={}})):console.log("error submit!",p)})},_=(i,l,p)=>{let s=new FileReader;s.readAsText(l[l.length-1].raw,"UTF-8"),s.onload=function(r){let d=r.target.result.split(`\r +`);console.log("rtulist:>> ",d),e.ruleForm.publicKeyContent=d[0]}},v=(i,l,p)=>{let s=new FileReader;s.readAsText(l[l.length-1].raw,"UTF-8"),s.onload=function(r){let d=r.target.result.split(`\r +`);console.log("rtulist:>> ",d),e.ruleForm.privateKeyContent=d[0]}},N=i=>{console.log("\u6587\u4EF6\u4E0A\u4F20\u6210\u529F"),e.ruleForm.fileContent=i};return C({openDialog:I}),(i,l)=>{const p=n("el-option"),s=n("el-select"),r=n("el-form-item"),c=n("el-input"),d=n("el-button"),B=n("el-upload"),q=n("el-form"),U=n("el-dialog");return b(),T(U,{onClose:l[8]||(l[8]=u=>e.ruleForm={}),title:e.ruleForm.id?"\u7F16\u8F91\u8BC1\u4E66":"\u65B0\u589E\u8BC1\u4E66",modelValue:e.dialogVisible,"onUpdate:modelValue":l[9]||(l[9]=u=>e.dialogVisible=u),width:"60%"},{footer:a(()=>[R("div",J,[t(d,{type:"default",onClick:l[6]||(l[6]=u=>e.dialogVisible=!1)},{default:a(()=>[W]),_:1}),t(d,{type:"primary",onClick:l[7]||(l[7]=u=>m(f.value))},{default:a(()=>[Z]),_:1})])]),default:a(()=>[t(q,{rules:e.rules,ref_key:"ruleForm",ref:f,model:e.ruleForm,"label-width":"120px"},{default:a(()=>[t(r,{label:"\u8BC1\u4E66\u6807\u51C6",prop:"standard"},{default:a(()=>[t(s,{modelValue:e.ruleForm.standard,"onUpdate:modelValue":l[0]||(l[0]=u=>e.ruleForm.standard=u),placeholder:"\u8BF7\u9009\u62E9\u8BC1\u4E66\u6807\u51C6"},{default:a(()=>[(b(!0),S(O,null,M(P(k),u=>(b(),T(p,{key:u.value,label:u.label,value:u.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(r,{label:"\u8BC1\u4E66\u540D\u79F0",prop:"name"},{default:a(()=>[t(c,{size:"default",modelValue:e.ruleForm.name,"onUpdate:modelValue":l[1]||(l[1]=u=>e.ruleForm.name=u)},null,8,["modelValue"])]),_:1}),t(r,{label:"\u8BC1\u4E66\u6587\u4EF6",prop:"fileContent"},{default:a(()=>[e.ruleForm.fileContent?(b(),T(c,{key:0,disabled:"",size:"default",modelValue:e.ruleForm.fileContent,"onUpdate:modelValue":l[2]||(l[2]=u=>e.ruleForm.fileContent=u)},null,8,["modelValue"])):$("",!0),t(Y,{onUpdate:N,url:"/common/singleFile"})]),_:1}),t(r,{label:"\u8BC1\u4E66\u516C\u94A5",prop:"publicKeyContent"},{default:a(()=>[t(c,{size:"default",disabled:"",type:"textarea",rows:6,modelValue:e.ruleForm.publicKeyContent,"onUpdate:modelValue":l[3]||(l[3]=u=>e.ruleForm.publicKeyContent=u)},null,8,["modelValue"]),t(B,{class:"upload-demo",action:"",accept:".txt","on-change":_,"auto-upload":!1},{default:a(()=>[t(d,{size:"small",type:"primary"},{default:a(()=>[G]),_:1})]),_:1})]),_:1}),t(r,{label:"\u8BC1\u4E66\u79C1\u94A5",prop:"privateKeyContent"},{default:a(()=>[t(c,{size:"default",disabled:"",type:"textarea",rows:6,modelValue:e.ruleForm.privateKeyContent,"onUpdate:modelValue":l[4]||(l[4]=u=>e.ruleForm.privateKeyContent=u)},null,8,["modelValue"]),t(B,{class:"upload-demo",action:"",accept:".txt","on-change":v,"auto-upload":!1},{default:a(()=>[t(d,{size:"small",type:"primary"},{default:a(()=>[H]),_:1})]),_:1})]),_:1}),t(r,{label:"\u8BF4\u660E"},{default:a(()=>[t(c,{size:"default",type:"textarea",rows:6,modelValue:e.ruleForm.description,"onUpdate:modelValue":l[5]||(l[5]=u=>e.ruleForm.description=u)},null,8,["modelValue"])]),_:1})]),_:1},8,["rules","model"])]),_:1},8,["title","modelValue"])}}});var le=Q(ee,[["__scopeId","data-v-0e0befa0"]]),ae=Object.freeze(Object.defineProperty({__proto__:null,default:le},Symbol.toStringTag,{value:"Module"}));export{le as E,L as a,ae as e}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editPer.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editPer.1701184304695.css new file mode 100644 index 0000000..d58dd40 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editPer.1701184304695.css @@ -0,0 +1 @@ +.tree[data-v-5678cfab]{width:100%;max-height:50vh;overflow:auto;padding-bottom:5px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editPer.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editPer.1701184304695.js new file mode 100644 index 0000000..7fc31f8 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editPer.1701184304695.js @@ -0,0 +1 @@ +import{_ as C,b as h,E as V}from"./index.1701184304695.js";import{L as w,h as E,a2 as y,ab as B,S as g,T as t,n as I,ai as s,o as D,b as S,_ as o,X as R,Y as v}from"./vue.1701184304695.js";const k={id:void 0,name:"",dataScope:1,deptIds:[]},A=w({props:{deptData:{type:Array,default:()=>[]}},setup(){const e=E([]),u=E(null),F={children:"children",label:"deptName"},p=E(),l=y({isShowDialog:!1,ruleForm:{...k}}),b=async m=>{i();const{id:f,name:c,dataScope:_,deptIds:a}=await h.role.getRole(m.id);l.ruleForm={id:f,name:c,dataScope:_,deptIds:a||[]},l.isShowDialog=!0,I(()=>{a&&a.length&&p.value.setCheckedKeys(a)})},d=()=>{l.isShowDialog=!1},r=()=>{d()},n=()=>{l.ruleForm.dataScope===2?l.ruleForm.deptIds=p.value.getCheckedKeys(!0):l.ruleForm.deptIds=[],h.role.dataScope(l.ruleForm).then(()=>{V.success("\u8BBE\u7F6E\u6570\u636E\u6743\u9650\u6210\u529F"),d()})},i=()=>{l.ruleForm={...k}};return{openDialog:b,closeDialog:d,defaultProps:F,treeRef:p,onCancel:r,onSubmit:n,postList:e,formRef:u,...B(l)}}}),N={class:"tree"},P={class:"dialog-footer"},$=v("\u53D6 \u6D88"),T=v("\u786E\u5B9A");function U(e,u,F,p,l,b){const d=s("el-input"),r=s("el-form-item"),n=s("el-option"),i=s("el-select"),m=s("el-tree"),f=s("el-form"),c=s("el-button"),_=s("el-dialog");return D(),g(_,{"custom-class":"custom-dialog",title:"\u5206\u914D\u6570\u636E\u6743\u9650",modelValue:e.isShowDialog,"onUpdate:modelValue":u[2]||(u[2]=a=>e.isShowDialog=a),width:"500px"},{footer:t(()=>[S("span",P,[o(c,{onClick:e.onCancel,size:"default"},{default:t(()=>[$]),_:1},8,["onClick"]),o(c,{type:"primary",onClick:e.onSubmit,size:"default"},{default:t(()=>[T]),_:1},8,["onClick"])])]),default:t(()=>[o(f,{ref:"formRef",model:e.ruleForm,"label-width":"90px"},{default:t(()=>[o(r,{label:"\u89D2\u8272\u540D\u79F0",prop:"name"},{default:t(()=>[o(d,{modelValue:e.ruleForm.name,"onUpdate:modelValue":u[0]||(u[0]=a=>e.ruleForm.name=a),disabled:"",placeholder:"\u8BF7\u8F93\u5165\u8D26\u6237\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u6743\u9650\u8303\u56F4",prop:"dataScope"},{default:t(()=>[o(i,{modelValue:e.ruleForm.dataScope,"onUpdate:modelValue":u[1]||(u[1]=a=>e.ruleForm.dataScope=a),placeholder:"\u8BF7\u9009\u62E9",clearable:"",class:"w100"},{default:t(()=>[o(n,{label:"\u5168\u90E8\u6570\u636E\u6743\u9650",value:1}),o(n,{label:"\u81EA\u5B9A\u6570\u636E\u6743\u9650",value:2}),o(n,{label:"\u672C\u90E8\u95E8\u6570\u636E\u6743\u9650",value:3}),o(n,{label:"\u672C\u90E8\u95E8\u53CA\u4EE5\u4E0B\u6570\u636E\u6743\u9650",value:4})]),_:1},8,["modelValue"])]),_:1}),e.ruleForm.dataScope===2?(D(),g(r,{key:0,label:"\u6570\u636E\u6743\u9650",prop:"deptIds"},{default:t(()=>[S("div",N,[o(m,{ref:"treeRef",data:e.deptData,"show-checkbox":"","default-expand-all":"","node-key":"deptId","highlight-current":"",props:e.defaultProps,"check-on-click-node":"","expand-on-click-node":!1},null,8,["data","props"])])]),_:1})):R("",!0)]),_:1},8,["model"])]),_:1},8,["modelValue"])}var L=C(A,[["render",U],["__scopeId","data-v-5678cfab"]]);export{L as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editPost.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editPost.1701184304695.css new file mode 100644 index 0000000..9193aa9 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editPost.1701184304695.css @@ -0,0 +1 @@ +.tree-border[data-v-a667b844]{margin-top:5px;border:1px solid #e5e6e7!important;background:#fff none!important;border-radius:4px}.system-edit-post-container .menu-data-tree[data-v-a667b844]{border:var(--el-input-border, var(--el-border-base));border-radius:var(--el-input-border-radius, var(--el-border-radius-base));padding:5px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editPost.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editPost.1701184304695.js new file mode 100644 index 0000000..cabbeee --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editPost.1701184304695.js @@ -0,0 +1 @@ +import{_ as N,b as D,E}from"./index.1701184304695.js";import{L as B,h as b,a2 as w,ab as I,a as V,_ as a,T as s,e as P,ai as u,o as h,b as v,Y as k,Z as c,X as U}from"./vue.1701184304695.js";const S={parentId:-1,postName:"",postSort:0,status:1,remark:""},L=B({name:"systemEditPost",setup(e,{emit:t}){const p=b(null),_=b(),o=w({loading:!1,isShowDialog:!1,postData:[],formData:{...S},rules:{postName:[{required:!0,message:"\u5C97\u4F4D\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],postSort:[{required:!0,message:"\u5C97\u4F4D\u987A\u5E8F\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]},menuExpand:!1,menuNodeAll:!1,menuCheckStrictly:!1,menuProps:{children:"children",label:"title"}}),F=r=>{d(),D.post.getList({status:1}).then(m=>{o.postData=m||[]}),r&&(o.formData=r),o.isShowDialog=!0},i=()=>{o.isShowDialog=!1},n=()=>{i()},f=()=>{const r=P(p);!r||r.validate(m=>{m&&(o.loading=!0,o.formData.parentId||(o.formData.parentId=-1),o.formData.postId?D.post.edit(o.formData).then(()=>{E.success("\u5C97\u4F4D\u4FEE\u6539\u6210\u529F"),i(),t("getPostList")}).finally(()=>{o.loading=!1}):D.post.add(o.formData).then(()=>{E.success("\u5C97\u4F4D\u6DFB\u52A0\u6210\u529F"),i(),t("getPostList")}).finally(()=>{o.loading=!1}))})},d=()=>{o.menuCheckStrictly=!1,o.menuExpand=!1,o.menuNodeAll=!1,o.formData={...S}};return{openDialog:F,closeDialog:i,onCancel:n,onSubmit:f,menuRef:_,formRef:p,...I(o)}}}),R={class:"system-edit-post-container"},$={key:0},z={class:"dialog-footer"},q=k("\u53D6 \u6D88");function T(e,t,p,_,o,F){const i=u("el-cascader"),n=u("el-form-item"),f=u("el-col"),d=u("el-input"),r=u("el-input-number"),m=u("el-switch"),y=u("el-form"),g=u("el-button"),A=u("el-dialog");return h(),V("div",R,[a(A,{modelValue:e.isShowDialog,"onUpdate:modelValue":t[5]||(t[5]=l=>e.isShowDialog=l),title:(e.formData.postId?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u5C97\u4F4D",width:"769px"},{footer:s(()=>[v("span",z,[a(g,{onClick:e.onCancel,size:"default"},{default:s(()=>[q]),_:1},8,["onClick"]),a(g,{type:"primary",onClick:e.onSubmit,size:"default",loading:e.loading},{default:s(()=>[k(c(e.formData.postId===0?"\u65B0 \u589E":"\u4FEE \u6539"),1)]),_:1},8,["onClick","loading"])])]),default:s(()=>[a(y,{ref:"formRef",model:e.formData,rules:e.rules,size:"default","label-width":"90px"},{default:s(()=>[a(f,{xs:24,sm:24,md:24,lg:24,xl:24,class:"mb20"},{default:s(()=>[a(n,{label:"\u4E0A\u7EA7\u5C97\u4F4D"},{default:s(()=>[a(i,{options:e.postData,props:{checkStrictly:!0,emitPath:!1,value:"postId",label:"postName"},placeholder:"\u8BF7\u9009\u62E9\u5C97\u4F4D",clearable:"",class:"w100",modelValue:e.formData.parentId,"onUpdate:modelValue":t[0]||(t[0]=l=>e.formData.parentId=l)},{default:s(({node:l,data:C})=>[v("span",null,c(C.postName),1),l.isLeaf?U("",!0):(h(),V("span",$," ("+c(C.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),a(n,{label:"\u5C97\u4F4D\u540D\u79F0",prop:"postName"},{default:s(()=>[a(d,{modelValue:e.formData.postName,"onUpdate:modelValue":t[1]||(t[1]=l=>e.formData.postName=l),placeholder:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u5C97\u4F4D\u987A\u5E8F",prop:"postSort"},{default:s(()=>[a(r,{modelValue:e.formData.postSort,"onUpdate:modelValue":t[2]||(t[2]=l=>e.formData.postSort=l),"controls-position":"right",min:0},null,8,["modelValue"])]),_:1}),a(n,{label:"\u5C97\u4F4D\u72B6\u6001",prop:"status"},{default:s(()=>[a(m,{modelValue:e.formData.status,"onUpdate:modelValue":t[3]||(t[3]=l=>e.formData.status=l),"active-value":1,"inactive-value":0,"inline-prompt":"","active-text":"\u542F","inactive-text":"\u7981"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u5907\u6CE8",prop:"remark"},{default:s(()=>[a(d,{modelValue:e.formData.remark,"onUpdate:modelValue":t[4]||(t[4]=l=>e.formData.remark=l),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["modelValue","title"])])}var X=N(L,[["render",T],["__scopeId","data-v-a667b844"]]);export{X as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.1701184304695.css new file mode 100644 index 0000000..20da22d --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.1701184304695.css @@ -0,0 +1 @@ +.avatar-uploader .avatar[data-v-58f3bcb8]{width:178px;height:178px;display:block}.avatar-uploader .el-upload{border:1px dashed var(--el-border-color);border-radius:6px;cursor:pointer;position:relative;overflow:hidden;transition:var(--el-transition-duration-fast)}.avatar-uploader .el-upload:hover{border-color:var(--el-color-primary)}.el-icon.avatar-uploader-icon{font-size:28px;color:#8c939d;width:178px;height:178px;text-align:center} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.1701184304695.js new file mode 100644 index 0000000..7d74deb --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.1701184304695.js @@ -0,0 +1 @@ +import{a as c}from"./index.170118430469519.js";import{u as L}from"./index.170118430469522.js";import{_ as q,E as U,g as N}from"./index.1701184304695.js";import{L as R,h as C,a2 as $,ab as z,a as F,_ as l,T as a,j as M,e as j,ai as n,o as m,b as P,Y as i,Z as D,X as S,F as y,a8 as w,S as V}from"./vue.1701184304695.js";const I={id:0,name:"",categoryId:"",messageProtocol:"",transportProtocol:"",deviceType:"\u8BBE\u5907",status:1,desc:"",authType:"",authUser:"",authPasswd:"",accessToken:"",certificateId:""},O=R({name:"deviceEditPro",components:{uploadVue:L},setup(e,{emit:o}){const _=C(null),h=N("/base-api/api/v1"),{proxy:v}=M(),{network_server_type:k}=v.useDict("network_server_type"),p=C([]),t=C(!1),r=$({isShowDialog:!1,cateData:[],deptData:[],messageData:[],network_protocols:[],tranData:[],imageUrl:"",singleImg:h+"/product/icon/upload",ruleForm:{...I},rules:{name:[{required:!0,message:"\u4EA7\u54C1\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],key:[{required:!0,message:"\u4EA7\u54C1\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],parentId:[{required:!0,message:"\u4EA7\u54C1\u5206\u7C7B\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],messageProtocol:[{required:!0,message:"\u6D88\u606F\u534F\u8BAE\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],transportProtocol:[{required:!0,message:"\u4F20\u8F93\u534F\u8BAE\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],deviceType:[{required:!0,message:"\u8BBE\u5907\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),A=s=>{r.imageUrl=s,r.ruleForm.icon=s},g=s=>{f(),c.category.getList({status:1}).then(u=>{r.cateData=u.category||[]}),c.dept.getList({status:-1}).then(u=>{r.deptData=u||[]}),c.product.getTypesAll({types:"protocol"}).then(u=>{r.messageData=u||[]}),s?(r.imageUrl=s.icon,r.ruleForm=s,s.authType===0&&E(s.transportProtocol)):r.imageUrl="",r.isShowDialog=!0},f=()=>{r.ruleForm={...I}},d=()=>{r.isShowDialog=!1},B=()=>{d()},E=s=>{s==="mqtt_server"?r.ruleForm.authType=1:r.ruleForm.authType=3};return{transportProtocolChange:E,submitLoading:t,certList:p,openDialog:g,handleAvatarSuccess:A,closeDialog:d,onCancel:B,onSubmit:()=>{const s=j(_);!s||s.validate(u=>{u&&(t.value=!0,r.ruleForm.id!==0?c.product.edit(r.ruleForm).then(()=>{U.success("\u4EA7\u54C1\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),d(),o("typeList")}).finally(()=>t.value=!1):c.product.add(r.ruleForm).then(()=>{U.success("\u4EA7\u54C1\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),d(),o("typeList")}).finally(()=>t.value=!1))})},network_server_type:k,formRef:_,...z(r)}}}),W={class:"system-edit-dic-container"},X={key:0},Y=i("Basic"),Z=i("AccessToken"),G=i("\u8BBE\u5907"),H=i("\u7F51\u5173"),J=i("\u5B50\u8BBE\u5907"),K={class:"dialog-footer"},Q=i("\u53D6 \u6D88");function x(e,o,_,h,v,k){const p=n("el-input"),t=n("el-form-item"),r=n("uploadVue"),A=n("el-cascader"),g=n("el-option"),f=n("el-select"),d=n("el-radio"),B=n("el-radio-group"),E=n("el-form"),b=n("el-button"),s=n("el-dialog");return m(),F("div",W,[l(s,{title:(e.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u4EA7\u54C1",modelValue:e.isShowDialog,"onUpdate:modelValue":o[11]||(o[11]=u=>e.isShowDialog=u),width:"769px"},{footer:a(()=>[P("span",K,[l(b,{onClick:e.onCancel,size:"default"},{default:a(()=>[Q]),_:1},8,["onClick"]),l(b,{type:"primary",onClick:e.onSubmit,loading:e.submitLoading,size:"default"},{default:a(()=>[i(D(e.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick","loading"])])]),default:a(()=>[l(E,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"100px"},{default:a(()=>[l(t,{label:"\u4EA7\u54C1\u6807\u8BC6",prop:"key"},{default:a(()=>[l(p,{modelValue:e.ruleForm.key,"onUpdate:modelValue":o[0]||(o[0]=u=>e.ruleForm.key=u),placeholder:"\u8BF7\u8F93\u5165\u4EA7\u54C1\u6807\u8BC6",disabled:e.ruleForm.id},null,8,["modelValue","disabled"])]),_:1}),l(t,{label:"\u4EA7\u54C1\u540D\u79F0",prop:"name"},{default:a(()=>[l(p,{modelValue:e.ruleForm.name,"onUpdate:modelValue":o[1]||(o[1]=u=>e.ruleForm.name=u),placeholder:"\u8BF7\u8F93\u5165\u4EA7\u54C1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(t,{label:"\u4EA7\u54C1\u56FE\u7247",prop:"imageUrl"},{default:a(()=>[l(r,{img:e.imageUrl,onSetImg:e.handleAvatarSuccess},null,8,["img","onSetImg"])]),_:1}),l(t,{label:"\u4EA7\u54C1\u5206\u7C7B",prop:"categoryId"},{default:a(()=>[l(A,{options:e.cateData,props:{checkStrictly:!0,emitPath:!1,value:"id",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u5206\u7C7B",clearable:"",class:"w100",modelValue:e.ruleForm.categoryId,"onUpdate:modelValue":o[2]||(o[2]=u=>e.ruleForm.categoryId=u)},{default:a(({node:u,data:T})=>[P("span",null,D(T.name),1),u.isLeaf?S("",!0):(m(),F("span",X," ("+D(T.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1}),l(t,{label:"\u6D88\u606F\u534F\u8BAE",prop:"messageProtocol"},{default:a(()=>[l(f,{modelValue:e.ruleForm.messageProtocol,"onUpdate:modelValue":o[3]||(o[3]=u=>e.ruleForm.messageProtocol=u),placeholder:"\u8BF7\u9009\u62E9\u6D88\u606F\u534F\u8BAE"},{default:a(()=>[(m(!0),F(y,null,w(e.messageData,u=>(m(),V(g,{key:u.types,label:u.title,value:u.types},null,8,["label","value"]))),128)),l(g,{label:"Sagoo Mqtt",value:"SagooMqtt"})]),_:1},8,["modelValue"])]),_:1}),l(t,{label:"\u4F20\u8F93\u534F\u8BAE",prop:"transportProtocol"},{default:a(()=>[l(f,{modelValue:e.ruleForm.transportProtocol,"onUpdate:modelValue":o[4]||(o[4]=u=>e.ruleForm.transportProtocol=u),placeholder:"\u8BF7\u9009\u62E9\u4F20\u8F93\u534F\u8BAE",onChange:e.transportProtocolChange},{default:a(()=>[(m(!0),F(y,null,w(e.network_server_type,u=>(m(),V(g,{key:u.value,label:u.label,value:u.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),e.ruleForm.authType===1||e.ruleForm.authType===2?(m(),F(y,{key:0},[l(t,{label:"\u8BA4\u8BC1\u65B9\u5F0F",prop:""},{default:a(()=>[l(B,{modelValue:e.ruleForm.authType,"onUpdate:modelValue":o[5]||(o[5]=u=>e.ruleForm.authType=u)},{default:a(()=>[l(d,{label:1},{default:a(()=>[Y]),_:1}),l(d,{label:2},{default:a(()=>[Z]),_:1})]),_:1},8,["modelValue"])]),_:1}),e.ruleForm.authType===1?(m(),F(y,{key:0},[l(t,{label:"\u7528\u6237\u540D",prop:"authUser"},{default:a(()=>[l(p,{modelValue:e.ruleForm.authUser,"onUpdate:modelValue":o[6]||(o[6]=u=>e.ruleForm.authUser=u),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u540D"},null,8,["modelValue"])]),_:1}),l(t,{label:"\u5BC6\u7801",prop:"authPasswd"},{default:a(()=>[l(p,{type:"password",modelValue:e.ruleForm.authPasswd,"onUpdate:modelValue":o[7]||(o[7]=u=>e.ruleForm.authPasswd=u),placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801"},null,8,["modelValue"])]),_:1})],64)):(m(),V(t,{key:1,label:"Aceess Token",prop:"accessToken"},{default:a(()=>[l(p,{modelValue:e.ruleForm.accessToken,"onUpdate:modelValue":o[8]||(o[8]=u=>e.ruleForm.accessToken=u),placeholder:"\u8BF7\u8F93\u5165Aceess Token"},null,8,["modelValue"])]),_:1}))],64)):S("",!0),l(t,{label:"\u8BBE\u5907\u7C7B\u578B",prop:"deviceType"},{default:a(()=>[l(B,{modelValue:e.ruleForm.deviceType,"onUpdate:modelValue":o[9]||(o[9]=u=>e.ruleForm.deviceType=u)},{default:a(()=>[l(d,{label:"\u8BBE\u5907"},{default:a(()=>[G]),_:1}),l(d,{label:"\u7F51\u5173"},{default:a(()=>[H]),_:1}),l(d,{label:"\u5B50\u8BBE\u5907"},{default:a(()=>[J]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(t,{label:"\u4EA7\u54C1\u63CF\u8FF0 ",prop:"desc"},{default:a(()=>[l(p,{modelValue:e.ruleForm.desc,"onUpdate:modelValue":o[10]||(o[10]=u=>e.ruleForm.desc=u),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u4EA7\u54C1\u63CF\u8FF0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var ae=q(O,[["render",x],["__scopeId","data-v-58f3bcb8"]]);export{ae as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.17011843046952.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.17011843046952.css new file mode 100644 index 0000000..6e14c73 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.17011843046952.css @@ -0,0 +1 @@ +.avatar-uploader .avatar[data-v-15c2be9b]{width:178px;height:178px;display:block}.avatar-uploader .el-upload{border:1px dashed var(--el-border-color);border-radius:6px;cursor:pointer;position:relative;overflow:hidden;transition:var(--el-transition-duration-fast)}.avatar-uploader .el-upload:hover{border-color:var(--el-color-primary)}.el-icon.avatar-uploader-icon{font-size:28px;color:#8c939d;width:178px;height:178px;text-align:center} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.17011843046952.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.17011843046952.js new file mode 100644 index 0000000..ef8d422 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editPro.17011843046952.js @@ -0,0 +1 @@ +import{_ as k,b as E,E as b,g as B}from"./index.1701184304695.js";import{u as y}from"./index.170118430469522.js";import{L as V,h as I,a2 as w,ab as S,a as C,_ as t,T as l,j as P,e as L,ai as r,o as v,b as d,Y as m,Z as U,X as N,aB as R,aC as $}from"./vue.1701184304695.js";const q=V({name:"deviceEditPro",components:{uploadVue:y},setup(e,{emit:a}){const p=I(null),F=B("/base-api/api/v1"),{proxy:f}=P(),{network_server_type:g,network_protocols:i}=f.useDict("network_server_type","network_protocols"),o=w({isShowDialog:!1,cateData:[],deptData:[],messageData:[],tranData:[],imageUrl:"",singleImg:F+"/product/icon/upload",ruleForm:{id:0,status:"1",remark:""},rules:{ip:[{required:!0,message:"IP\u5730\u5740\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],status:[{required:!0,message:"\u5907\u6CE8\u4E0D\u80FD\u4E3A\u7A7A",trigger:"change"}],remark:[{required:!0,message:"\u5907\u6CE8\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]}}),n=u=>{_(),u&&(o.ruleForm=u),o.isShowDialog=!0},_=()=>{o.ruleForm={id:0,status:"1",remark:""}},s=()=>{o.isShowDialog=!1};return{openDialog:n,closeDialog:s,onCancel:()=>{s()},onSubmit:()=>{const u=L(p);!u||u.validate(A=>{A&&(o.ruleForm.id!==0?E.blackList.edit(o.ruleForm).then(()=>{b.success("\u9ED1\u540D\u5355\u4FEE\u6539\u6210\u529F"),s(),a("typeList")}):(delete o.ruleForm.id,console.log(o.ruleForm),E.blackList.add(o.ruleForm).then(()=>{b.success("\u9ED1\u540D\u5355\u6DFB\u52A0\u6210\u529F"),s(),a("typeList")})))})},network_server_type:g,network_protocols:i,formRef:p,...S(o)}}}),h=e=>(R("data-v-15c2be9b"),e=e(),$(),e),z={class:"system-edit-dic-container"},x={style:{color:"#a4a4a4","line-height":"20px"}},T=h(()=>d("div",null,"\u652F\u6301\u6DFB\u52A0IP\uFF1A\u5982\u679C\u6DFB\u52A0\u591A\u4E2AIP\u8BF7\u7528\u201C,\u201D\u9694\u5F00",-1)),j={key:0},M=h(()=>d("div",null,"\u652F\u6301\u6DFB\u52A0IP\u8303\u56F4\uFF0C\u683C\u5F0F\u5982\uFF1A192.168.1.xx-192.168.1.xx",-1)),O=m("\u6B63\u5E38"),W=m("\u5DF2\u7981\u7528"),X={class:"dialog-footer"},Y=m("\u53D6 \u6D88");function Z(e,a,p,F,f,g){const i=r("el-input"),o=r("el-form-item"),n=r("el-radio"),_=r("el-radio-group"),s=r("el-form"),c=r("el-button"),D=r("el-dialog");return v(),C("div",z,[t(D,{title:e.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0",modelValue:e.isShowDialog,"onUpdate:modelValue":a[3]||(a[3]=u=>e.isShowDialog=u),width:"769px"},{footer:l(()=>[d("span",X,[t(c,{onClick:e.onCancel,size:"default"},{default:l(()=>[Y]),_:1},8,["onClick"]),t(c,{type:"primary",onClick:e.onSubmit,size:"default"},{default:l(()=>[m(U(e.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:l(()=>[t(s,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"90px"},{default:l(()=>[t(o,{label:"IP\u5730\u5740",prop:"ip"},{default:l(()=>[t(i,{type:"textarea",modelValue:e.ruleForm.ip,"onUpdate:modelValue":a[0]||(a[0]=u=>e.ruleForm.ip=u),placeholder:"\u8BF7\u8F93\u5165IP\u5730\u5740"},null,8,["modelValue"]),d("div",x,[T,e.ruleForm.id==0?(v(),C("div",j,"\u652F\u6301\u6DFB\u52A0IP\u6BB5\uFF0C\u5982192.168.0.0/24")):N("",!0),M])]),_:1}),t(o,{label:"\u72B6\u6001",prop:"status"},{default:l(()=>[t(_,{modelValue:e.ruleForm.status,"onUpdate:modelValue":a[1]||(a[1]=u=>e.ruleForm.status=u)},{default:l(()=>[t(n,{label:"1"},{default:l(()=>[O]),_:1}),t(n,{label:"0"},{default:l(()=>[W]),_:1})]),_:1},8,["modelValue"])]),_:1}),t(o,{label:"\u5907\u6CE8 ",prop:"remark"},{default:l(()=>[t(i,{modelValue:e.ruleForm.remark,"onUpdate:modelValue":a[2]||(a[2]=u=>e.ruleForm.remark=u),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var K=k(q,[["render",Z],["__scopeId","data-v-15c2be9b"]]);export{K as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editRole.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/editRole.1701184304695.css new file mode 100644 index 0000000..fbb76e5 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editRole.1701184304695.css @@ -0,0 +1 @@ +.tree-border[data-v-01df4c93]{margin-top:5px;border:1px solid #e5e6e7!important;background:#fff none!important;border-radius:4px}.system-edit-role-container .menu-data-tree[data-v-01df4c93]{border:var(--el-input-border, var(--el-border-base));border-radius:var(--el-input-border-radius, var(--el-border-radius-base));padding:5px} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editRole.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editRole.1701184304695.js new file mode 100644 index 0000000..8c3d71a --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editRole.1701184304695.js @@ -0,0 +1 @@ +import{_ as R,b as D,E as V,r as N}from"./index.1701184304695.js";import{L as x,h as b,a2 as I,ab as L,a as v,_ as t,T as o,e as U,ai as s,o as A,b as w,Y as B,Z as k,X as K}from"./vue.1701184304695.js";const S={id:0,parentId:-1,name:"",status:1,listOrder:0,remark:""},M=x({name:"systemEditRole",props:{list:Array},setup(l,{emit:u}){const _=b(null),i=b(),a=I({loading:!1,isShowDialog:!1,formData:{...S},rules:{name:[{required:!0,message:"\u89D2\u8272\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}]},menuData:[],menuExpand:!1,menuNodeAll:!1,menuCheckStrictly:!1,menuProps:{children:"children",label:"title"}}),y=e=>{g(),p(),e&&D.role.getRole(e.id).then(n=>{a.formData=n}),a.isShowDialog=!0},m=()=>{a.isShowDialog=!1},r=()=>{m()},d=()=>{const e=U(_);!e||e.validate(n=>{n&&(a.loading=!0,a.formData.parentId||(a.formData.parentId=-1),a.formData.id===0?D.role.addRole(a.formData).then(()=>{V.success("\u6DFB\u52A0\u6210\u529F"),m(),f(),u("getList")}).finally(()=>{a.loading=!1}):D.role.editRole(a.formData).then(()=>{V.success("\u4FEE\u6539\u6210\u529F"),m(),f(),u("getList")}).finally(()=>{a.loading=!1}))})},p=()=>{D.menu.getList({status:-1}).then(e=>{a.menuData=e})},g=()=>{a.menuCheckStrictly=!1,a.menuExpand=!1,a.menuNodeAll=!1,a.formData={...S}},h=e=>{let n=a.menuData;for(let E=0;E{i.value.setCheckedNodes(e?a.menuData:[])},C=e=>{a.menuCheckStrictly=!!e};function c(){let e=i.value.getCheckedKeys(),n=i.value.getHalfCheckedKeys();return e.unshift.apply(e,n),e}const f=()=>{N()};return{openDialog:y,closeDialog:m,onCancel:r,onSubmit:d,menuRef:i,formRef:_,handleCheckedTreeExpand:h,getMenuAllCheckedKeys:c,handleCheckedTreeNodeAll:F,handleCheckedTreeConnect:C,resetMenuSession:f,...L(a)}}}),T={class:"system-edit-role-container"},$={key:0},z={class:"dialog-footer"},O=B("\u53D6 \u6D88");function P(l,u,_,i,a,y){const m=s("el-cascader"),r=s("el-form-item"),d=s("el-col"),p=s("el-input"),g=s("el-input-number"),h=s("el-switch"),F=s("el-row"),C=s("el-form"),c=s("el-button"),f=s("el-dialog");return A(),v("div",T,[t(f,{title:(l.formData.id===0?"\u6DFB\u52A0":"\u4FEE\u6539")+"\u89D2\u8272",modelValue:l.isShowDialog,"onUpdate:modelValue":u[5]||(u[5]=e=>l.isShowDialog=e),width:"769px"},{footer:o(()=>[w("span",z,[t(c,{onClick:l.onCancel,size:"default"},{default:o(()=>[O]),_:1},8,["onClick"]),t(c,{type:"primary",onClick:l.onSubmit,size:"default",loading:l.loading},{default:o(()=>[B(k(l.formData.id===0?"\u65B0 \u589E":"\u4FEE \u6539"),1)]),_:1},8,["onClick","loading"])])]),default:o(()=>[t(C,{ref:"formRef",model:l.formData,rules:l.rules,size:"default","label-width":"90px"},{default:o(()=>[t(F,{gutter:35},{default:o(()=>[t(d,{xs:24,sm:24,md:24,lg:24,xl:24},{default:o(()=>[t(r,{label:"\u4E0A\u7EA7\u89D2\u8272"},{default:o(()=>[t(m,{options:l.list,props:{label:"name",value:"id",checkStrictly:!0,emitPath:!1},placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u89D2\u8272",clearable:"",class:"w100",modelValue:l.formData.parentId,"onUpdate:modelValue":u[0]||(u[0]=e=>l.formData.parentId=e)},{default:o(({node:e,data:n})=>[w("span",null,k(n.name),1),e.isLeaf?K("",!0):(A(),v("span",$," ("+k(n.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),t(d,{xs:24,sm:12,md:12,lg:12,xl:12},{default:o(()=>[t(r,{label:"\u89D2\u8272\u540D\u79F0",prop:"name"},{default:o(()=>[t(p,{modelValue:l.formData.name,"onUpdate:modelValue":u[1]||(u[1]=e=>l.formData.name=e),placeholder:"\u8BF7\u8F93\u5165\u89D2\u8272\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),t(d,{xs:24,sm:12,md:12,lg:12,xl:12},{default:o(()=>[t(r,{label:"\u6392\u5E8F"},{default:o(()=>[t(g,{modelValue:l.formData.listOrder,"onUpdate:modelValue":u[2]||(u[2]=e=>l.formData.listOrder=e),min:0,"controls-position":"right",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F",class:"w100"},null,8,["modelValue"])]),_:1})]),_:1}),t(d,{xs:24,sm:12,md:12,lg:12,xl:12},{default:o(()=>[t(r,{label:"\u89D2\u8272\u72B6\u6001"},{default:o(()=>[t(h,{modelValue:l.formData.status,"onUpdate:modelValue":u[3]||(u[3]=e=>l.formData.status=e),"active-value":1,"inactive-value":0,"inline-prompt":"","active-text":"\u542F","inactive-text":"\u7981"},null,8,["modelValue"])]),_:1})]),_:1}),t(d,{xs:24,sm:24,md:24,lg:24,xl:24},{default:o(()=>[t(r,{label:"\u89D2\u8272\u63CF\u8FF0"},{default:o(()=>[t(p,{modelValue:l.formData.remark,"onUpdate:modelValue":u[4]||(u[4]=e=>l.formData.remark=e),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u89D2\u8272\u63CF\u8FF0",maxlength:"150"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var W=R(M,[["render",P],["__scopeId","data-v-01df4c93"]]);export{W as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editTab.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editTab.1701184304695.js new file mode 100644 index 0000000..32e3b73 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editTab.1701184304695.js @@ -0,0 +1 @@ +import{a as O}from"./index.170118430469519.js";import{_ as P,v as I,x as q,y as z,E as $}from"./index.1701184304695.js";import W from"./editOption.1701184304695.js";import{L as X,h as N,a2 as Y,ab as Z,a as f,_ as t,T as a,e as G,ai as F,o as p,b as s,Y as V,Z as R,F as E,a8 as C,S as i,X as y}from"./vue.1701184304695.js";const H=X({name:"deviceEditPro",components:{Plus:I,Minus:q,Right:z,EditOption:W},setup(e,{emit:o}){const L=N(null),M=N(),l=Y({isShowDialog:!1,typeData:[],type:"",types:"",productId:0,valueType:{type:"",maxLength:"",trueText:"\u662F",trueValue:"true",falseText:"\u5426",falseValue:"false"},elementType:{type:"",maxLength:""},enumdata:[{text:"",value:""}],jsondata:[],ruleForm:{id:0,productId:0,name:"",key:"",transportProtocol:"",accessMode:1,status:1,valueType:{type:"",maxLength:""},desc:""},rules:{name:[{required:!0,message:"\u6807\u7B7E\u5B9A\u4E49\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],key:[{required:!0,message:"\u6807\u7B7E\u5B9A\u4E49\u6807\u8BC6\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],accessMode:[{required:!0,message:"\u8BF7\u9009\u62E9\u662F\u5426\u53EA\u8BFB",trigger:"blur"}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u6570\u636E\u7C7B\u578B",trigger:"blur"}]}}),J=(n,h)=>{d(),O.product.getDataType({status:-1}).then(j=>{const B=Object.values(j.dataType);B.forEach((U,u)=>{u==0?(B[u].label="\u57FA\u7840\u7C7B\u578B",B[u].options=U):(B[u].label="\u6269\u5C55\u7C7B\u578B",B[u].options=U)}),l.typeData=B||[]}),console.log(n),l.ruleForm=n,n.valueType&&(l.ruleForm=n,l.productId=h,l.valueType=n.valueType,l.ruleForm.valueType.type=n.valueType.type,l.ruleForm.type=n.valueType.type,l.type=n.valueType.type,l.ruleForm.accessMode=n.accessMode,n.valueType.elementType&&(l.elementType=n.valueType.elementType,l.types=n.valueType.elementType.type),n.type=="enum"&&(l.enumdata=n.valueType.elements),n.type=="object"&&(l.jsondata=n.valueType.properties),n.type=="array"&&l.types=="enum"&&(l.enumdata=n.valueType.elementType.elements),n.type=="array"&&l.types=="object"&&(l.jsondata=n.valueType.elementType.properties)),console.log(n),l.isShowDialog=!0},d=()=>{l.ruleForm={name:"",key:"",transportProtocol:"",accessMode:1,status:1,valueType:{type:"",maxLength:""},desc:""},l.type="",l.types="",l.valueType={},l.elementType={},l.jsondata=[],l.enumdata=[{text:"",value:""}]},m=n=>{l.type=n,l.ruleForm.type=n,console.log(n)},k=n=>{console.log(n),l.types=n,console.log(n)},c=()=>{l.enumdata.push({text:"",value:""})},A=n=>{l.enumdata.splice(n,1)},D=n=>{l.jsondata.splice(n,1)},v=()=>{M.value.openDialog({product_id:0,id:0})},b=n=>{l.jsondata.push(n),console.log(l.jsondata)},g=()=>{l.isShowDialog=!1};return{editOptionRef:M,getOptionData:b,openDialog:J,deljson:D,addEnum:c,delEnum:A,addJson:v,seletChange:m,seletChanges:k,closeDialog:g,onCancel:()=>{g()},onSubmit:()=>{const n=G(L);!n||n.validate(h=>{h&&(l.ruleForm.id!==0?(l.type=="enum"&&(l.valueType.elements=l.enumdata),l.type=="object"&&(l.valueType.properties=l.jsondata),l.type=="array"&&(l.valueType.elementType=l.elementType,l.types=="enum"&&(l.valueType.elementType={elements:l.enumdata,type:"enum"}),l.types=="object"&&(l.valueType.elementType={properties:l.jsondata,type:"object"})),l.ruleForm.valueType=l.valueType,l.ruleForm.productId=l.productId,console.log(l.ruleForm),O.model.tagedit(l.ruleForm).then(()=>{$.success("\u6807\u7B7E\u5B9A\u4E49\u7C7B\u578B\u4FEE\u6539\u6210\u529F"),g(),o("typeList")})):(l.type=="enum"&&(l.valueType.elements=l.enumdata),l.type=="object"&&(l.valueType.properties=l.jsondata),l.type=="array"&&(l.valueType.elementType=l.elementType,l.types=="enum"&&(l.valueType.elementType={elements:l.enumdata}),l.types=="object"&&(l.valueType.elementType={properties:l.jsondata,type:"object"})),l.ruleForm.valueType=l.valueType,O.model.tagadd(l.ruleForm).then(()=>{$.success("\u6807\u7B7E\u5B9A\u4E49\u7C7B\u578B\u6DFB\u52A0\u6210\u529F"),g(),o("typeList")})))})},formRef:L,...Z(l)}}}),K={class:"system-edit-dic-container"},Q={class:"input-box"},w=s("span",{style:{margin:"0px 10px"}},"~",-1),x={class:"input-box"},ee=V(),ue=s("span",{style:{margin:"0px 10px"}},"~",-1),le={style:{margin:"0px 10px"}},te={class:"input-option"},oe={class:"jsonlist"},ae=s("div",null,"\u53C2\u6570\u540D\u79F0\uFF1A",-1),ne={style:{width:"60%"}},pe={class:"jsonoption"},se=V("\u5220\u9664"),de={style:{display:"block",width:"100%"}},re=s("div",null,"\u6DFB\u52A0\u53C2\u6570",-1),me={key:7},ie={class:"input-box"},ye=s("span",{style:{margin:"0px 10px"}},"~",-1),Fe={class:"input-box"},fe=V(),ve=s("span",{style:{margin:"0px 10px"}},"~",-1),Te={style:{margin:"0px 10px"}},Ve={class:"input-option"},Be={class:"jsonlist"},Ee=s("div",null,"\u53C2\u6570\u540D\u79F0\uFF1A",-1),Ce={style:{width:"60%"}},ge={class:"jsonoption"},be=V("\u7F16\u8F91"),he=V("\u5220\u9664"),ke={style:{display:"block",width:"100%"}},ce=s("div",null,"\u6DFB\u52A0\u53C2\u6570",-1),Ae=V("\u53EA\u8BFB"),De=V("\u8BFB\u5199"),_e={class:"dialog-footer"},je=V("\u53D6 \u6D88");function Ue(e,o,L,M,l,J){const d=F("el-input"),m=F("el-form-item"),k=F("el-option"),c=F("el-option-group"),A=F("el-select"),D=F("Right"),v=F("el-icon"),b=F("Plus"),g=F("Minus"),_=F("el-link"),S=F("el-radio"),n=F("el-radio-group"),h=F("el-form"),j=F("el-button"),B=F("el-dialog"),U=F("EditOption");return p(),f("div",K,[t(B,{title:(e.ruleForm.id!==0?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u6807\u7B7E\u5B9A\u4E49",modelValue:e.isShowDialog,"onUpdate:modelValue":o[24]||(o[24]=u=>e.isShowDialog=u),width:"769px"},{footer:a(()=>[s("span",_e,[t(j,{onClick:e.onCancel,size:"default"},{default:a(()=>[je]),_:1},8,["onClick"]),t(j,{type:"primary",onClick:e.onSubmit,size:"default"},{default:a(()=>[V(R(e.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:a(()=>[t(h,{model:e.ruleForm,ref:"formRef",rules:e.rules,size:"default","label-width":"120px"},{default:a(()=>[t(m,{label:"\u6807\u7B7E\u5B9A\u4E49\u6807\u8BC6",prop:"key"},{default:a(()=>[t(d,{modelValue:e.ruleForm.key,"onUpdate:modelValue":o[0]||(o[0]=u=>e.ruleForm.key=u),placeholder:"\u8BF7\u8F93\u5165\u6807\u7B7E\u5B9A\u4E49\u6807\u8BC6",disabled:e.ruleForm.id!==0},null,8,["modelValue","disabled"])]),_:1}),t(m,{label:"\u6807\u7B7E\u5B9A\u4E49\u540D\u79F0",prop:"name"},{default:a(()=>[t(d,{modelValue:e.ruleForm.name,"onUpdate:modelValue":o[1]||(o[1]=u=>e.ruleForm.name=u),placeholder:"\u8BF7\u8F93\u5165\u6807\u7B7E\u5B9A\u4E49\u540D\u79F0"},null,8,["modelValue"])]),_:1}),t(m,{label:"\u6570\u636E\u7C7B\u578B",prop:"type"},{default:a(()=>[t(A,{modelValue:e.valueType.type,"onUpdate:modelValue":o[2]||(o[2]=u=>e.valueType.type=u),placeholder:"\u8BF7\u9009\u62E9\u6570\u636E\u7C7B\u578B",onChange:e.seletChange},{default:a(()=>[(p(!0),f(E,null,C(e.typeData,u=>(p(),i(c,{key:u.label,label:u.label},{default:a(()=>[(p(!0),f(E,null,C(u.options,r=>(p(),i(k,{key:r.type,label:r.title,value:r.type},null,8,["label","value"]))),128))]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),e.type=="float"||e.type=="double"?(p(),i(m,{key:0,label:"\u7CBE\u5EA6",prop:"decimals"},{default:a(()=>[t(d,{modelValue:e.valueType.decimals,"onUpdate:modelValue":o[3]||(o[3]=u=>e.valueType.decimals=u),placeholder:"\u8BF7\u8F93\u5165\u7CBE\u5EA6"},null,8,["modelValue"])]),_:1})):y("",!0),e.type=="int"||e.type=="long"||e.type=="float"||e.type=="double"?(p(),i(m,{key:1,label:"\u5355\u4F4D",prop:"unit"},{default:a(()=>[t(d,{modelValue:e.valueType.unit,"onUpdate:modelValue":o[4]||(o[4]=u=>e.valueType.unit=u),placeholder:"\u8BF7\u8F93\u5165\u5355\u4F4D"},null,8,["modelValue"])]),_:1})):y("",!0),e.type=="string"?(p(),i(m,{key:2,label:"\u6700\u5927\u957F\u5EA6",prop:"maxLength"},{default:a(()=>[t(d,{modelValue:e.valueType.maxLength,"onUpdate:modelValue":o[5]||(o[5]=u=>e.valueType.maxLength=u),placeholder:"\u8BF7\u8F93\u5165\u6700\u5927\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):y("",!0),e.type=="date"?(p(),i(m,{key:3,label:"\u65F6\u95F4\u683C\u5F0F",prop:"maxLength"},{default:a(()=>[t(d,{modelValue:e.valueType.maxLength,"onUpdate:modelValue":o[6]||(o[6]=u=>e.valueType.maxLength=u),placeholder:"\u8BF7\u8F93\u5165\u65F6\u95F4\u683C\u5F0F"},null,8,["modelValue"])]),_:1})):y("",!0),e.type=="boolean"?(p(),i(m,{key:4,label:"\u5E03\u5C14\u503C",prop:"trueText"},{default:a(()=>[s("div",Q,[t(d,{modelValue:e.valueType.trueText,"onUpdate:modelValue":o[7]||(o[7]=u=>e.valueType.trueText=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u662F"},null,8,["modelValue"]),w,t(d,{modelValue:e.valueType.trueValue,"onUpdate:modelValue":o[8]||(o[8]=u=>e.valueType.trueValue=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"true"},null,8,["modelValue"])]),s("div",x,[t(d,{modelValue:e.valueType.falseText,"onUpdate:modelValue":o[9]||(o[9]=u=>e.valueType.falseText=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u5426"},null,8,["modelValue"]),ee,ue,t(d,{modelValue:e.valueType.falseValue,"onUpdate:modelValue":o[10]||(o[10]=u=>e.valueType.falseValue=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"false"},null,8,["modelValue"])])]),_:1})):y("",!0),e.type=="enum"?(p(),i(m,{key:5,label:"\u679A\u4E3E\u9879",prop:"maxLength"},{default:a(()=>[(p(!0),f(E,null,C(e.enumdata,(u,r)=>(p(),f("div",{class:"input-box",key:r},[t(d,{modelValue:u.text,"onUpdate:modelValue":T=>u.text=T,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u6587\u672C"},null,8,["modelValue","onUpdate:modelValue"]),s("span",le,[t(v,null,{default:a(()=>[t(D)]),_:1})]),t(d,{modelValue:u.value,"onUpdate:modelValue":T=>u.value=T,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u503C"},null,8,["modelValue","onUpdate:modelValue"]),s("div",te,[r==0?(p(),i(v,{key:0,onClick:e.addEnum},{default:a(()=>[t(b)]),_:1},8,["onClick"])):y("",!0),r!=0?(p(),i(v,{key:1,onClick:T=>e.delEnum(r)},{default:a(()=>[t(g)]),_:2},1032,["onClick"])):y("",!0)])]))),128))]),_:1})):y("",!0),e.type=="object"?(p(),i(m,{key:6,label:"JSON\u5BF9\u8C61",prop:"maxLength"},{default:a(()=>[(p(!0),f(E,null,C(e.jsondata,(u,r)=>(p(),f("div",{key:r,class:"jslist"},[s("div",oe,[ae,s("div",ne,R(u.name),1),s("div",pe,[t(_,{type:"primary",onClick:T=>e.deljson(r)},{default:a(()=>[se]),_:2},1032,["onClick"])])])]))),128)),s("div",de,[s("div",{class:"input-options",onClick:o[11]||(o[11]=(...u)=>e.addJson&&e.addJson(...u))},[t(v,null,{default:a(()=>[t(b)]),_:1}),re])])]),_:1})):y("",!0),e.type=="array"?(p(),f("div",me,[t(m,{label:"\u5143\u7D20\u7C7B\u578B",prop:"types"},{default:a(()=>[t(A,{modelValue:e.elementType.type,"onUpdate:modelValue":o[12]||(o[12]=u=>e.elementType.type=u),placeholder:"\u8BF7\u9009\u62E9\u5143\u7D20\u7C7B\u578B",onChange:e.seletChanges},{default:a(()=>[(p(!0),f(E,null,C(e.typeData,u=>(p(),i(c,{key:u.label,label:u.label},{default:a(()=>[(p(!0),f(E,null,C(u.options,r=>(p(),i(k,{key:r.type,label:r.title,value:r.type,disabled:r.type=="array"},null,8,["label","value","disabled"]))),128))]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),e.types=="float"||e.types=="double"?(p(),i(m,{key:0,label:"\u7CBE\u5EA6",prop:"decimals"},{default:a(()=>[t(d,{modelValue:e.elementType.decimals,"onUpdate:modelValue":o[13]||(o[13]=u=>e.elementType.decimals=u),placeholder:"\u8BF7\u8F93\u5165\u7CBE\u5EA6"},null,8,["modelValue"])]),_:1})):y("",!0),e.types=="int"||e.types=="long"||e.types=="float"||e.types=="double"?(p(),i(m,{key:1,label:"\u5355\u4F4D",prop:"unit"},{default:a(()=>[t(d,{modelValue:e.elementType.unit,"onUpdate:modelValue":o[14]||(o[14]=u=>e.elementType.unit=u),placeholder:"\u8BF7\u8F93\u5165\u5355\u4F4D"},null,8,["modelValue"])]),_:1})):y("",!0),e.types=="string"?(p(),i(m,{key:2,label:"\u6700\u5927\u957F\u5EA6",prop:"maxLength"},{default:a(()=>[t(d,{modelValue:e.elementType.maxLength,"onUpdate:modelValue":o[15]||(o[15]=u=>e.elementType.maxLength=u),placeholder:"\u8BF7\u8F93\u5165\u6700\u5927\u957F\u5EA6"},null,8,["modelValue"])]),_:1})):y("",!0),e.types=="date"?(p(),i(m,{key:3,label:"\u65F6\u95F4\u683C\u5F0F",prop:"maxLength"},{default:a(()=>[t(d,{modelValue:e.elementType.maxLength,"onUpdate:modelValue":o[16]||(o[16]=u=>e.elementType.maxLength=u),placeholder:"\u8BF7\u8F93\u5165\u65F6\u95F4\u683C\u5F0F"},null,8,["modelValue"])]),_:1})):y("",!0),e.types=="boolean"?(p(),i(m,{key:4,label:"\u5E03\u5C14\u503C",prop:"maxLength"},{default:a(()=>[s("div",ie,[t(d,{modelValue:e.elementType.trueText,"onUpdate:modelValue":o[17]||(o[17]=u=>e.elementType.trueText=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u662F"},null,8,["modelValue"]),ye,t(d,{modelValue:e.elementType.trueValue,"onUpdate:modelValue":o[18]||(o[18]=u=>e.elementType.trueValue=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"true"},null,8,["modelValue"])]),s("div",Fe,[t(d,{modelValue:e.elementType.falseText,"onUpdate:modelValue":o[19]||(o[19]=u=>e.elementType.falseText=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"\u5426"},null,8,["modelValue"]),fe,ve,t(d,{modelValue:e.elementType.falseValue,"onUpdate:modelValue":o[20]||(o[20]=u=>e.elementType.falseValue=u),placeholder:"\u8BF7\u8F93\u5165\u5E03\u5C14\u503C",value:"false"},null,8,["modelValue"])])]),_:1})):y("",!0),e.types=="enum"?(p(),i(m,{key:5,label:"\u679A\u4E3E\u9879",prop:"maxLength"},{default:a(()=>[(p(!0),f(E,null,C(e.enumdata,(u,r)=>(p(),f("div",{class:"input-box",key:r},[t(d,{modelValue:u.text,"onUpdate:modelValue":T=>u.text=T,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u503C"},null,8,["modelValue","onUpdate:modelValue"]),s("span",Te,[t(v,null,{default:a(()=>[t(D)]),_:1})]),t(d,{modelValue:u.value,"onUpdate:modelValue":T=>u.value=T,placeholder:"\u8BF7\u8F93\u5165\u679A\u4E3E\u6587\u672C"},null,8,["modelValue","onUpdate:modelValue"]),s("div",Ve,[r==0?(p(),i(v,{key:0,onClick:e.addEnum},{default:a(()=>[t(b)]),_:1},8,["onClick"])):y("",!0),r!=0?(p(),i(v,{key:1,onClick:T=>e.delEnum(r)},{default:a(()=>[t(g)]),_:2},1032,["onClick"])):y("",!0)])]))),128))]),_:1})):y("",!0)])):y("",!0),e.types=="object"?(p(),i(m,{key:8,label:"JSON\u5BF9\u8C61",prop:"maxLength"},{default:a(()=>[(p(!0),f(E,null,C(e.jsondata,(u,r)=>(p(),f("div",{key:r,class:"jslist"},[s("div",Be,[Ee,s("div",Ce,R(u.name),1),s("div",ge,[t(_,{type:"primary"},{default:a(()=>[be]),_:1}),t(_,{type:"primary"},{default:a(()=>[he]),_:1})])])]))),128)),s("div",ke,[s("div",{class:"input-options",onClick:o[21]||(o[21]=(...u)=>e.addJson&&e.addJson(...u))},[t(v,null,{default:a(()=>[t(b)]),_:1}),ce])])]),_:1})):y("",!0),t(m,{label:"\u662F\u5426\u53EA\u8BFB",prop:"accessMode"},{default:a(()=>[t(n,{modelValue:e.ruleForm.accessMode,"onUpdate:modelValue":o[22]||(o[22]=u=>e.ruleForm.accessMode=u)},{default:a(()=>[t(S,{label:1},{default:a(()=>[Ae]),_:1}),t(S,{label:0},{default:a(()=>[De]),_:1})]),_:1},8,["modelValue"])]),_:1}),t(m,{label:"\u6807\u7B7E\u5B9A\u4E49\u63CF\u8FF0 ",prop:"desc"},{default:a(()=>[t(d,{modelValue:e.ruleForm.desc,"onUpdate:modelValue":o[23]||(o[23]=u=>e.ruleForm.desc=u),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u6807\u7B7E\u5B9A\u4E49\u63CF\u8FF0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"]),t(U,{ref:"editOptionRef",onTypeList:e.getOptionData},null,8,["onTypeList"])])}var Re=P(H,[["render",Ue]]);export{Re as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/editUser.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/editUser.1701184304695.js new file mode 100644 index 0000000..3501beb --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/editUser.1701184304695.js @@ -0,0 +1 @@ +import{_ as L,b as _,E as h}from"./index.1701184304695.js";import{L as P,h as w,a2 as $,k as z,ab as R,a as c,_ as e,T as u,e as T,ai as t,o as F,b as E,Y as D,Z as p,S as C,X as g}from"./vue.1701184304695.js";const v={userName:"",userNickname:"",deptId:null,mobile:"",birthday:"",userPassword:"",userEmail:"",avatar:"",address:"",describe:"",remark:"",sex:0,isAdmin:1,status:1,postIds:[],roleIds:[],userTypes:"system"},M=P({name:"systemEditUser",props:{deptData:{type:Array,default:()=>[]},roleData:{type:Array,default:()=>[]},postData:{type:Array,default:()=>[]}},setup(l,{emit:a}){const A=w([]),V=w(null),m=$({isShowDialog:!1,ruleForm:{...v},rules:{userName:[{required:!0,message:"\u7528\u6237\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],userNickname:[{required:!0,message:"\u7528\u6237\u6635\u79F0\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],deptId:[{required:!0,message:"\u5F52\u5C5E\u90E8\u95E8\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],postIds:[{required:!0,message:"\u5C97\u4F4D\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],roleIds:[{required:!0,message:"\u89D2\u8272\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],mobile:[{required:!0,message:"\u624B\u673A\u53F7\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],password:[{required:!0,message:"\u7528\u6237\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A",trigger:"blur"}],userEmail:[{type:"email",message:"'\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u90AE\u7BB1\u5730\u5740",trigger:["blur","change"]}]}}),B=n=>{f(),n&&_.user.detail(n.id).then(b=>{m.ruleForm=b}),m.isShowDialog=!0},d=()=>{m.isShowDialog=!1},s=()=>{d()},r=()=>{const n=T(V);!n||n.validate(b=>{b&&(m.ruleForm.id?_.user.edit(m.ruleForm).then(()=>{h.success("\u7528\u6237\u4FEE\u6539\u6210\u529F"),d(),a("getUserList")}):_.user.add(m.ruleForm).then(()=>{h.success("\u7528\u6237\u6DFB\u52A0\u6210\u529F"),d(),a("getUserList")}))})};z(()=>{});const f=()=>{m.ruleForm={...v}};return{openDialog:B,closeDialog:d,onCancel:s,onSubmit:r,postList:A,formRef:V,...R(m)}}}),W={class:"system-edit-user-container"},X={key:0},Y={key:0},Z={key:0},j=D("\u540E\u53F0\u7BA1\u7406\u5458"),x=D("\u524D\u53F0\u7528\u6237"),G={class:"dialog-footer"},H=D("\u53D6 \u6D88");function J(l,a,A,V,m,B){const d=t("el-input"),s=t("el-form-item"),r=t("el-col"),f=t("el-cascader"),n=t("el-option"),b=t("el-select"),N=t("el-switch"),y=t("el-radio"),I=t("el-radio-group"),U=t("el-row"),S=t("el-form"),k=t("el-button"),q=t("el-dialog");return F(),c("div",W,[e(q,{title:(l.ruleForm.id?"\u4FEE\u6539":"\u6DFB\u52A0")+"\u7528\u6237",modelValue:l.isShowDialog,"onUpdate:modelValue":a[12]||(a[12]=o=>l.isShowDialog=o),width:"769px"},{footer:u(()=>[E("span",G,[e(k,{onClick:l.onCancel,size:"default"},{default:u(()=>[H]),_:1},8,["onClick"]),e(k,{type:"primary",onClick:l.onSubmit,size:"default"},{default:u(()=>[D(p(l.ruleForm.id!==0?"\u4FEE \u6539":"\u6DFB \u52A0"),1)]),_:1},8,["onClick"])])]),default:u(()=>[e(S,{ref:"formRef",model:l.ruleForm,rules:l.rules,size:"default","label-width":"90px"},{default:u(()=>[e(U,{gutter:35},{default:u(()=>[l.ruleForm.id?g("",!0):(F(),C(r,{key:0,xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u7528\u6237\u540D",prop:"userName"},{default:u(()=>[e(d,{modelValue:l.ruleForm.userName,"onUpdate:modelValue":a[0]||(a[0]=o=>l.ruleForm.userName=o),placeholder:"\u8BF7\u8F93\u5165\u8D26\u6237\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})),l.ruleForm.id?g("",!0):(F(),C(r,{key:1,xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u8D26\u6237\u5BC6\u7801",prop:"userPassword"},{default:u(()=>[e(d,{modelValue:l.ruleForm.userPassword,"onUpdate:modelValue":a[1]||(a[1]=o=>l.ruleForm.userPassword=o),placeholder:"\u8BF7\u8F93\u5165",type:"password",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})),e(r,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u7528\u6237\u6635\u79F0",prop:"userNickname"},{default:u(()=>[e(d,{modelValue:l.ruleForm.userNickname,"onUpdate:modelValue":a[2]||(a[2]=o=>l.ruleForm.userNickname=o),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u6635\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u5173\u8054\u89D2\u8272",prop:"roleIds"},{default:u(()=>[e(f,{options:l.roleData,props:{checkStrictly:!0,multiple:!0,emitPath:!1,value:"id",label:"name"},placeholder:"\u8BF7\u9009\u62E9\u89D2\u8272",clearable:"",class:"w100",modelValue:l.ruleForm.roleIds,"onUpdate:modelValue":a[3]||(a[3]=o=>l.ruleForm.roleIds=o)},{default:u(({node:o,data:i})=>[E("span",null,p(i.name),1),o.isLeaf?g("",!0):(F(),c("span",X," ("+p(i.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),e(r,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u90E8\u95E8",prop:"deptId"},{default:u(()=>[e(f,{options:l.deptData,props:{checkStrictly:!0,emitPath:!1,value:"deptId",label:"deptName"},placeholder:"\u8BF7\u9009\u62E9\u90E8\u95E8",clearable:"",class:"w100",modelValue:l.ruleForm.deptId,"onUpdate:modelValue":a[4]||(a[4]=o=>l.ruleForm.deptId=o)},{default:u(({node:o,data:i})=>[E("span",null,p(i.deptName),1),o.isLeaf?g("",!0):(F(),c("span",Y," ("+p(i.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),e(r,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u624B\u673A\u53F7",prop:"mobile"},{default:u(()=>[e(d,{modelValue:l.ruleForm.mobile,"onUpdate:modelValue":a[5]||(a[5]=o=>l.ruleForm.mobile=o),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u90AE\u7BB1",prop:"userEmail"},{default:u(()=>[e(d,{modelValue:l.ruleForm.userEmail,"onUpdate:modelValue":a[6]||(a[6]=o=>l.ruleForm.userEmail=o),placeholder:"\u8BF7\u8F93\u5165",clearable:""},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:u(()=>[e(b,{modelValue:l.ruleForm.sex,"onUpdate:modelValue":a[7]||(a[7]=o=>l.ruleForm.sex=o),placeholder:"\u8BF7\u9009\u62E9",clearable:"",class:"w100"},{default:u(()=>[e(n,{label:"\u4FDD\u5BC6",value:0}),e(n,{label:"\u7537",value:1}),e(n,{label:"\u5973",value:2})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u5C97\u4F4D",prop:"postIds"},{default:u(()=>[e(f,{options:l.postData,props:{checkStrictly:!0,multiple:!0,emitPath:!1,value:"postId",label:"postName"},placeholder:"\u8BF7\u9009\u62E9\u90E8\u95E8",clearable:"",class:"w100",modelValue:l.ruleForm.postIds,"onUpdate:modelValue":a[8]||(a[8]=o=>l.ruleForm.postIds=o)},{default:u(({node:o,data:i})=>[E("span",null,p(i.postName),1),o.isLeaf?g("",!0):(F(),c("span",Z," ("+p(i.children.length)+") ",1))]),_:1},8,["options","modelValue"])]),_:1})]),_:1}),e(r,{xs:24,sm:12,md:12,lg:12,xl:12,class:"mb20"},{default:u(()=>[e(s,{label:"\u7528\u6237\u72B6\u6001"},{default:u(()=>[e(N,{modelValue:l.ruleForm.status,"onUpdate:modelValue":a[9]||(a[9]=o=>l.ruleForm.status=o),"inline-prompt":"","active-value":1,"inactive-value":0,"active-text":"\u542F","inactive-text":"\u7981"},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:24},{default:u(()=>[e(s,{label:"\u7528\u6237\u7C7B\u578B"},{default:u(()=>[e(I,{modelValue:l.ruleForm.isAdmin,"onUpdate:modelValue":a[10]||(a[10]=o=>l.ruleForm.isAdmin=o)},{default:u(()=>[e(y,{label:1},{default:u(()=>[j]),_:1}),e(y,{label:0},{default:u(()=>[x]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{xs:24,sm:24,md:24,lg:24,xl:24,class:"mb20"},{default:u(()=>[e(s,{label:"\u7528\u6237\u63CF\u8FF0"},{default:u(()=>[e(d,{modelValue:l.ruleForm.remark,"onUpdate:modelValue":a[11]||(a[11]=o=>l.ruleForm.remark=o),type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u63CF\u8FF0",maxlength:"150"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","modelValue"])])}var Q=L(M,[["render",J]]);export{Q as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/function.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/function.1701184304695.css new file mode 100644 index 0000000..ee745a1 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/function.1701184304695.css @@ -0,0 +1 @@ +.table-wrapper[data-v-6cbed03c]{width:100%;padding:10px;display:flex;align-items:stretch;justify-content:space-between;gap:20px}.table-wrapper .el-table[data-v-6cbed03c]{flex:3}.table-wrapper .result[data-v-6cbed03c]{flex:2}.table-wrapper[data-v-6cbed03c] .el-textarea__inner{height:100%}.table-wrapper[data-v-6cbed03c] .el-select{width:100%} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/function.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/function.1701184304695.js new file mode 100644 index 0000000..e4ddb9a --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/function.1701184304695.js @@ -0,0 +1 @@ +import{a as F}from"./index.170118430469519.js";import{_ as N,E as U}from"./index.1701184304695.js";import{L,h as g,a as m,S as i,X as $,_ as n,T as u,ai as l,o,F as h,a8 as k,b as V,a9 as I,Y as f,Z as J}from"./vue.1701184304695.js";const M={class:"device-function"},O={class:"table-wrapper"},X={class:"btn"},Y=f("\u6267\u884C"),Z=f("\u6E05\u7A7A"),j=L({__name:"function",props:{productKey:String,deviceKey:String},setup(B){const y=B,_=g([]),d=g(!0);D();function D(){d.value=!0,F.tabDeviceFucntion.getList({key:y.productKey}).then(e=>{!e||(e.forEach(r=>r.result=""),_.value=e)}).finally(()=>d.value=!1)}function E(e){if(e.result="",e.inputs.some(a=>!a.value))return U.info("\u8BF7\u8F93\u5165\u5B8C\u6574\u53C2\u6570");e.loading=!0;const p={};e.inputs.forEach(({key:a,value:v})=>p[a]=v),F.tabDeviceFucntion.do({deviceKey:y.deviceKey,funcKey:e.key,params:p}).then(a=>{e.result=JSON.stringify(a,null,2)}).finally(()=>e.loading=!1)}function x(e){e.result=""}return(e,r)=>{const p=l("el-empty"),a=l("el-table-column"),v=l("el-option"),T=l("el-select"),b=l("el-input"),A=l("el-table"),C=l("el-button"),K=l("el-tab-pane"),S=l("el-tabs");return o(),m("div",M,[!d.value&&!_.value.length?(o(),i(p,{key:0,description:"\u6682\u65E0\u529F\u80FD\u5217\u8868\uFF0C\u8BF7\u5148\u5728\u7269\u6A21\u578B\u7684\u529F\u80FD\u5B9A\u4E49\u4E2D\u6DFB\u52A0"})):$("",!0),n(S,{"tab-position":"left"},{default:u(()=>[(o(!0),m(h,null,k(_.value,s=>(o(),i(K,{label:s.name,key:s.key},{default:u(()=>[V("div",O,[n(A,{data:s.inputs||[],border:""},{default:u(()=>[n(a,{prop:"name",label:"\u53C2\u6570\u540D\u79F0"}),n(a,{prop:"valueType.type",label:"\u8F93\u5165\u7C7B\u578B"}),n(a,{prop:"name",label:"\u503C","min-width":"200"},{default:u(({row:t})=>[t.valueType.type==="enum"?(o(),i(T,{key:0,modelValue:t.value,"onUpdate:modelValue":c=>t.value=c,clearable:"",style:{wdith:"100% !important"}},{default:u(()=>[(o(!0),m(h,null,k(t.valueType.elements,c=>(o(),i(v,{key:c.value,value:c.value,label:c.text},null,8,["value","label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])):(o(),i(b,{key:1,modelValue:t.value,"onUpdate:modelValue":c=>t.value=c,clearable:""},I({_:2},[t.valueType.unit?{name:"append",fn:u(()=>[f(J(t.valueType.unit),1)])}:void 0]),1032,["modelValue","onUpdate:modelValue"]))]),_:2},1024)]),_:2},1032,["data"]),n(b,{type:"textarea",value:s.result,class:"result","read-only":"",placeholder:"\u6267\u884C\u7ED3\u679C\uFF1A"},null,8,["value"])]),V("div",X,[n(C,{type:"primary",loading:s.loading,onClick:t=>E(s)},{default:u(()=>[Y]),_:2},1032,["loading","onClick"]),n(C,{onClick:t=>x(s)},{default:u(()=>[Z]),_:2},1032,["onClick"])])]),_:2},1032,["label"]))),128))]),_:1})])}}});var H=N(j,[["__scopeId","data-v-6cbed03c"]]);export{H as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/icon.1701184304695.svg b/manifest/docker-compose/nginx/html/iot-ui/assets/icon.1701184304695.svg new file mode 100644 index 0000000..d47cde8 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/icon.1701184304695.svg @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/iframes.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/iframes.1701184304695.css new file mode 100644 index 0000000..3448e35 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/iframes.1701184304695.css @@ -0,0 +1 @@ +.jump[data-v-6ccb2d9f]{position:absolute;top:12px;right:12px;z-index:10;cursor:pointer}.jump img[data-v-6ccb2d9f]{width:40px;height:40px;display:block} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/iframes.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/iframes.1701184304695.js new file mode 100644 index 0000000..2712844 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/iframes.1701184304695.js @@ -0,0 +1 @@ +import{L as c,a2 as d,l as f,k as u,i as p,ab as _,U as m,a as g,b as i,V as h,P as v,aD as w,n as I,as as b,o as y,aB as L,aC as k}from"./vue.1701184304695.js";import{_ as C,u as S}from"./index.1701184304695.js";var U="/assets/open.1701184304695.svg";const B=c({name:"layoutIfameView",setup(){const e=w(),r=S(),a=d({iframeLoading:!0,iframeUrl:""}),n=()=>{window.open(a.iframeUrl)},o=()=>{var t;a.iframeUrl=(t=e.meta)==null?void 0:t.linkUrl,I(()=>{a.iframeLoading=!0;const s=document.getElementById("iframe");if(!s)return!1;s.onload=()=>{a.iframeLoading=!1}})},l=f(()=>{let{isTagsview:t}=r.state.themeConfig.themeConfig,{isTagsViewCurrenFull:s}=r.state.tagsViewRoutes;return s?"1px":t?"86px":"52px"});return u(()=>{o()}),p(()=>e.path,()=>{o()}),{jump:n,setIframeHeight:l,..._(a)}}}),V=e=>(L("data-v-6ccb2d9f"),e=e(),k(),e),$=V(()=>i("img",{src:U},null,-1)),j=[$],x=["src"];function D(e,r,a,n,o,l){const t=b("loading");return m((y(),g("div",{class:"layout-view-bg-white flex mt1",style:v({height:`calc(100vh - ${e.setIframeHeight}`,border:"none"})},[i("div",{class:"jump",onClick:r[0]||(r[0]=(...s)=>e.jump&&e.jump(...s))},j),m(i("iframe",{allowfullscreen:"true",src:e.iframeUrl,frameborder:"0",height:"100%",width:"100%",id:"iframe"},null,8,x),[[h,!e.iframeLoading]])],4)),[[t,e.iframeLoading]])}var E=C(B,[["render",D],["__scopeId","data-v-6ccb2d9f"]]);export{E as default}; diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/index.1701184304695.css b/manifest/docker-compose/nginx/html/iot-ui/assets/index.1701184304695.css new file mode 100644 index 0000000..0d63431 --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/index.1701184304695.css @@ -0,0 +1 @@ +.hide[data-v-23d1a954] .el-upload-list{display:none}.preview[data-v-23d1a954]{max-width:100%;max-height:60vh;display:block;margin:0 auto} diff --git a/manifest/docker-compose/nginx/html/iot-ui/assets/index.1701184304695.js b/manifest/docker-compose/nginx/html/iot-ui/assets/index.1701184304695.js new file mode 100644 index 0000000..99c082a --- /dev/null +++ b/manifest/docker-compose/nginx/html/iot-ui/assets/index.1701184304695.js @@ -0,0 +1,568 @@ +import{c as createStore$1,u as useStore$2,o as openBlock,a as createElementBlock,b as createBaseVNode,d as createStaticVNode,n as nextTick,s as shallowRef,w as watchEffect,r as readonly,e as unref,g as getCurrentScope,f as onScopeDispose,h as ref,i as watch,j as getCurrentInstance,k as onMounted,l as computed,m as isArray$4,p as isObject$4,q as isString$3,t as capitalize$1,v as camelize,x as hasOwn$2,y as warn$1,N as NOOP,z as isFunction$4,A as isVNode,F as Fragment,C as Comment,B as provide,D as inject,E as onBeforeUnmount,G as toRef,H as onUnmounted,I as isRef,J as computed$1,K as onBeforeMount,L as defineComponent,M as renderSlot,O as normalizeClass,P as normalizeStyle,Q as mergeProps,R as useSlots,S as createBlock,T as withCtx,U as withDirectives,V as vShow,W as resolveDynamicComponent,X as createCommentVNode,Y as createTextVNode,Z as toDisplayString$1,_ as createVNode,$ as Transition,a0 as useAttrs$1,a1 as withModifiers,a2 as reactive,a3 as onUpdated,a4 as cloneVNode,a5 as Text$1,a6 as Teleport,a7 as onDeactivated,a8 as renderList,a9 as createSlots,aa as withKeys,ab as toRefs,ac as isDate$2,ad as normalizeProps,ae as toRaw,af as vModelCheckbox,ag as vModelRadio,ah as h$1,ai as resolveComponent,aj as onBeforeUpdate,ak as isPromise$1,al as vModelText,am as toHandlers,an as guardReactiveProps,ao as markRaw,ap as effectScope,aq as triggerRef,ar as toRawType,as as resolveDirective,at as TransitionGroup,au as createApp,av as hyphenate,aw as shallowReactive,ax as render$1,ay as createRouter,az as createWebHashHistory,aA as vue_runtime_esmBundler,aB as pushScopeId,aC as popScopeId,aD as useRoute}from"./vue.1701184304695.js";const p$1=function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const g of i)if(g.type==="childList")for(const $ of g.addedNodes)$.tagName==="LINK"&&$.rel==="modulepreload"&&r($)}).observe(document,{childList:!0,subtree:!0});function n(i){const g={};return i.integrity&&(g.integrity=i.integrity),i.referrerpolicy&&(g.referrerPolicy=i.referrerpolicy),i.crossorigin==="use-credentials"?g.credentials="include":i.crossorigin==="anonymous"?g.credentials="omit":g.credentials="same-origin",g}function r(i){if(i.ep)return;i.ep=!0;const g=n(i);fetch(i.href,g)}};p$1();const keepAliveNamesModule={namespaced:!0,state:{keepAliveNames:[]},mutations:{getCacheKeepAlive(e,t){e.keepAliveNames=t}},actions:{async setCacheKeepAlive({commit:e},t){e("getCacheKeepAlive",t)}}};var __glob_1_0=Object.freeze(Object.defineProperty({__proto__:null,default:keepAliveNamesModule},Symbol.toStringTag,{value:"Module"}));const requestOldRoutesModule={namespaced:!0,state:{requestOldRoutes:[]},mutations:{getBackEndControlRoutes(e,t){e.requestOldRoutes=t}},actions:{setBackEndControlRoutes({commit:e},t){e("getBackEndControlRoutes",t)}}};var __glob_1_1=Object.freeze(Object.defineProperty({__proto__:null,default:requestOldRoutesModule},Symbol.toStringTag,{value:"Module"}));const routesListModule={namespaced:!0,state:{routesList:[],isColumnsMenuHover:!1,isColumnsNavHover:!1},mutations:{getRoutesList(e,t){e.routesList=t},getColumnsMenuHover(e,t){e.isColumnsMenuHover=t},getColumnsNavHover(e,t){e.isColumnsNavHover=t}},actions:{async setRoutesList({commit:e},t){e("getRoutesList",t)},async setColumnsMenuHover({commit:e},t){e("getColumnsMenuHover",t)},async setColumnsNavHover({commit:e},t){e("getColumnsNavHover",t)}}};var __glob_1_2=Object.freeze(Object.defineProperty({__proto__:null,default:routesListModule},Symbol.toStringTag,{value:"Module"}));const Local={set(e,t){window.localStorage.setItem(e,JSON.stringify(t))},get(e){let t=window.localStorage.getItem(e);return JSON.parse(t)},remove(e){window.localStorage.removeItem(e)},clear(){window.localStorage.clear()}},Session={set(e,t){window.sessionStorage.setItem(e,JSON.stringify(t))},get(e){let t=window.sessionStorage.getItem(e);return JSON.parse(t)},remove(e){window.sessionStorage.removeItem(e)},clear(){window.sessionStorage.clear()}},tagsViewRoutesModule={namespaced:!0,state:{tagsViewRoutes:[],isTagsViewCurrenFull:!1},mutations:{getTagsViewRoutes(e,t){e.tagsViewRoutes=t},getCurrenFullscreen(e,t){Session.set("isTagsViewCurrenFull",t),e.isTagsViewCurrenFull=t}},actions:{async setTagsViewRoutes({commit:e},t){e("getTagsViewRoutes",t)},setCurrenFullscreen({commit:e},t){e("getCurrenFullscreen",t)}}};var __glob_1_3=Object.freeze(Object.defineProperty({__proto__:null,default:tagsViewRoutesModule},Symbol.toStringTag,{value:"Module"}));const themeConfigModule={namespaced:!0,state:{themeConfig:{isDrawer:!1,primary:"#409eff",topBar:"#ffffff",topBarColor:"#606266",isTopBarColorGradual:!1,menuBar:"#ffffff",menuBarColor:"#eaeaea",isMenuBarColorGradual:!1,columnsMenuBar:"#545c64",columnsMenuBarColor:"#e6e6e6",isColumnsMenuBarColorGradual:!1,isCollapse:!1,isUniqueOpened:!1,isFixedHeader:!1,isFixedHeaderChange:!1,isClassicSplitMenu:!1,isLockScreen:!1,lockScreenTime:30,isShowLogo:!0,isShowLogoChange:!1,isBreadcrumb:!0,isTagsview:!0,isBreadcrumbIcon:!1,isTagsviewIcon:!1,isCacheTagsView:!1,isSortableTagsView:!0,isShareTagsView:!1,isFooter:!1,isGrayscale:!1,isInvert:!1,isIsDark:!1,isWartermark:!1,wartermarkText:"sagoo IOT",tagsStyle:"tags-style-five",animation:"slide-right",columnsAsideStyle:"columns-round",columnsAsideLayout:"columns-vertical",layout:"defaults",isRequestRoutes:!0,globalTitle:"IOT\u7BA1\u7406\u7CFB\u7EDF",globalViceTitle:"IOT\u7BA1\u7406\u7CFB\u7EDF",globalI18n:"zh-cn",globalComponentSize:"default"}},mutations:{getThemeConfig(e,t){e.themeConfig=t}},actions:{setThemeConfig({commit:e},t){e("getThemeConfig",t)}}};var __glob_1_4=Object.freeze(Object.defineProperty({__proto__:null,default:themeConfigModule},Symbol.toStringTag,{value:"Module"}));const userInfosModule={namespaced:!0,state:{userInfos:{id:0,userName:"",userNickname:"",avatar:"",roles:[],time:0},permissions:[]},mutations:{getUserInfos(e,t){e.userInfos=t},getPermissions(e,t){e.permissions=t}},actions:{async setUserInfos({commit:e},t){t?e("getUserInfos",t):Session.get("userInfo")&&e("getUserInfos",Session.get("userInfo"))},async setPermissions({commit:e},t){t?e("getPermissions",t):Session.get("permissions")&&e("getPermissions",Session.get("permissions"))}}};var __glob_1_5=Object.freeze(Object.defineProperty({__proto__:null,default:userInfosModule},Symbol.toStringTag,{value:"Module"}));const modulesFiles={"./modules/keepAliveNames.ts":__glob_1_0,"./modules/requestOldRoutes.ts":__glob_1_1,"./modules/routesList.ts":__glob_1_2,"./modules/tagsViewRoutes.ts":__glob_1_3,"./modules/themeConfig.ts":__glob_1_4,"./modules/userInfos.ts":__glob_1_5},pathList=[];for(const e in modulesFiles)pathList.push(e);const modules=pathList.reduce((e,t)=>{const n=t.replace(/^\.\/modules\/(.*)\.\w+$/,"$1"),r=modulesFiles[t];return e[n]=r.default,e},{}),key=Symbol(),store=createStore$1({modules});function useStore$1(){return useStore$2(key)}/*! Element Plus Icons Vue v2.0.9 */var export_helper_default=(e,t)=>{let n=e.__vccOpts||e;for(let[r,i]of t)n[r]=i;return n},_sfc_main$2o={name:"AddLocation"},_hoisted_1$17={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2$K=createBaseVNode("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),_hoisted_3$n=createBaseVNode("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),_hoisted_4$e=createBaseVNode("path",{fill:"currentColor",d:"M544 384h96a32 32 0 1 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0v96z"},null,-1),_hoisted_5$a=[_hoisted_2$K,_hoisted_3$n,_hoisted_4$e];function _sfc_render$D(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1$17,_hoisted_5$a)}var add_location_default=export_helper_default(_sfc_main$2o,[["render",_sfc_render$D],["__file","add-location.vue"]]),_sfc_main2={name:"Aim"},_hoisted_12$3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_22$2=createBaseVNode("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_32$1=createBaseVNode("path",{fill:"currentColor",d:"M512 96a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32zm0 576a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V704a32 32 0 0 1 32-32zM96 512a32 32 0 0 1 32-32h192a32 32 0 0 1 0 64H128a32 32 0 0 1-32-32zm576 0a32 32 0 0 1 32-32h192a32 32 0 1 1 0 64H704a32 32 0 0 1-32-32z"},null,-1),_hoisted_42$1=[_hoisted_22$2,_hoisted_32$1];function _sfc_render2(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_12$3,_hoisted_42$1)}var aim_default=export_helper_default(_sfc_main2,[["render",_sfc_render2],["__file","aim.vue"]]),_sfc_main3={name:"AlarmClock"},_hoisted_13$3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_23$2=createBaseVNode("path",{fill:"currentColor",d:"M512 832a320 320 0 1 0 0-640 320 320 0 0 0 0 640zm0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768z"},null,-1),_hoisted_33$1=createBaseVNode("path",{fill:"currentColor",d:"m292.288 824.576 55.424 32-48 83.136a32 32 0 1 1-55.424-32l48-83.136zm439.424 0-55.424 32 48 83.136a32 32 0 1 0 55.424-32l-48-83.136zM512 512h160a32 32 0 1 1 0 64H480a32 32 0 0 1-32-32V320a32 32 0 0 1 64 0v192zM90.496 312.256A160 160 0 0 1 312.32 90.496l-46.848 46.848a96 96 0 0 0-128 128L90.56 312.256zm835.264 0A160 160 0 0 0 704 90.496l46.848 46.848a96 96 0 0 1 128 128l46.912 46.912z"},null,-1),_hoisted_43$1=[_hoisted_23$2,_hoisted_33$1];function _sfc_render3(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_13$3,_hoisted_43$1)}var alarm_clock_default=export_helper_default(_sfc_main3,[["render",_sfc_render3],["__file","alarm-clock.vue"]]),_sfc_main4={name:"Apple"},_hoisted_14$3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_24$1=createBaseVNode("path",{fill:"currentColor",d:"M599.872 203.776a189.44 189.44 0 0 1 64.384-4.672l2.624.128c31.168 1.024 51.2 4.096 79.488 16.32 37.632 16.128 74.496 45.056 111.488 89.344 96.384 115.264 82.752 372.8-34.752 521.728-7.68 9.728-32 41.6-30.72 39.936a426.624 426.624 0 0 1-30.08 35.776c-31.232 32.576-65.28 49.216-110.08 50.048-31.36.64-53.568-5.312-84.288-18.752l-6.528-2.88c-20.992-9.216-30.592-11.904-47.296-11.904-18.112 0-28.608 2.88-51.136 12.672l-6.464 2.816c-28.416 12.224-48.32 18.048-76.16 19.2-74.112 2.752-116.928-38.08-180.672-132.16-96.64-142.08-132.608-349.312-55.04-486.4 46.272-81.92 129.92-133.632 220.672-135.04 32.832-.576 60.288 6.848 99.648 22.72 27.136 10.88 34.752 13.76 37.376 14.272 16.256-20.16 27.776-36.992 34.56-50.24 13.568-26.304 27.2-59.968 40.704-100.8a32 32 0 1 1 60.8 20.224c-12.608 37.888-25.408 70.4-38.528 97.664zm-51.52 78.08c-14.528 17.792-31.808 37.376-51.904 58.816a32 32 0 1 1-46.72-43.776l12.288-13.248c-28.032-11.2-61.248-26.688-95.68-26.112-70.4 1.088-135.296 41.6-171.648 105.792C121.6 492.608 176 684.16 247.296 788.992c34.816 51.328 76.352 108.992 130.944 106.944 52.48-2.112 72.32-34.688 135.872-34.688 63.552 0 81.28 34.688 136.96 33.536 56.448-1.088 75.776-39.04 126.848-103.872 107.904-136.768 107.904-362.752 35.776-449.088-72.192-86.272-124.672-84.096-151.68-85.12-41.472-4.288-81.6 12.544-113.664 25.152z"},null,-1),_hoisted_34$1=[_hoisted_24$1];function _sfc_render4(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_14$3,_hoisted_34$1)}var apple_default=export_helper_default(_sfc_main4,[["render",_sfc_render4],["__file","apple.vue"]]),_sfc_main5={name:"ArrowDownBold"},_hoisted_15$2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_25$1=createBaseVNode("path",{fill:"currentColor",d:"M104.704 338.752a64 64 0 0 1 90.496 0l316.8 316.8 316.8-316.8a64 64 0 0 1 90.496 90.496L557.248 791.296a64 64 0 0 1-90.496 0L104.704 429.248a64 64 0 0 1 0-90.496z"},null,-1),_hoisted_35$1=[_hoisted_25$1];function _sfc_render5(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_15$2,_hoisted_35$1)}var arrow_down_bold_default=export_helper_default(_sfc_main5,[["render",_sfc_render5],["__file","arrow-down-bold.vue"]]),_sfc_main6={name:"ArrowDown"},_hoisted_16$2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_26$1=createBaseVNode("path",{fill:"currentColor",d:"M831.872 340.864 512 652.672 192.128 340.864a30.592 30.592 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.592 30.592 0 0 0-42.752 0z"},null,-1),_hoisted_36$1=[_hoisted_26$1];function _sfc_render6(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_16$2,_hoisted_36$1)}var arrow_down_default=export_helper_default(_sfc_main6,[["render",_sfc_render6],["__file","arrow-down.vue"]]),_sfc_main7={name:"ArrowLeftBold"},_hoisted_17$2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_27$1=createBaseVNode("path",{fill:"currentColor",d:"M685.248 104.704a64 64 0 0 1 0 90.496L368.448 512l316.8 316.8a64 64 0 0 1-90.496 90.496L232.704 557.248a64 64 0 0 1 0-90.496l362.048-362.048a64 64 0 0 1 90.496 0z"},null,-1),_hoisted_37$1=[_hoisted_27$1];function _sfc_render7(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_17$2,_hoisted_37$1)}var arrow_left_bold_default=export_helper_default(_sfc_main7,[["render",_sfc_render7],["__file","arrow-left-bold.vue"]]),_sfc_main8={name:"ArrowLeft"},_hoisted_18$2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_28$1=createBaseVNode("path",{fill:"currentColor",d:"M609.408 149.376 277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0 30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688 29.12 29.12 0 0 0-41.728 0z"},null,-1),_hoisted_38$1=[_hoisted_28$1];function _sfc_render8(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_18$2,_hoisted_38$1)}var arrow_left_default=export_helper_default(_sfc_main8,[["render",_sfc_render8],["__file","arrow-left.vue"]]),_sfc_main9={name:"ArrowRightBold"},_hoisted_19$2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_29$1=createBaseVNode("path",{fill:"currentColor",d:"M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0z"},null,-1),_hoisted_39$1=[_hoisted_29$1];function _sfc_render9(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_19$2,_hoisted_39$1)}var arrow_right_bold_default=export_helper_default(_sfc_main9,[["render",_sfc_render9],["__file","arrow-right-bold.vue"]]),_sfc_main10={name:"ArrowRight"},_hoisted_110$1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_210=createBaseVNode("path",{fill:"currentColor",d:"M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512 340.864 831.872a30.592 30.592 0 0 0 0 42.752 29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"},null,-1),_hoisted_310=[_hoisted_210];function _sfc_render10(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_110$1,_hoisted_310)}var arrow_right_default=export_helper_default(_sfc_main10,[["render",_sfc_render10],["__file","arrow-right.vue"]]),_sfc_main11={name:"ArrowUpBold"},_hoisted_111$1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_211=createBaseVNode("path",{fill:"currentColor",d:"M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8 316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496z"},null,-1),_hoisted_311=[_hoisted_211];function _sfc_render11(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_111$1,_hoisted_311)}var arrow_up_bold_default=export_helper_default(_sfc_main11,[["render",_sfc_render11],["__file","arrow-up-bold.vue"]]),_sfc_main12={name:"ArrowUp"},_hoisted_112$1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_212=createBaseVNode("path",{fill:"currentColor",d:"m488.832 344.32-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872 319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0z"},null,-1),_hoisted_312=[_hoisted_212];function _sfc_render12(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_112$1,_hoisted_312)}var arrow_up_default=export_helper_default(_sfc_main12,[["render",_sfc_render12],["__file","arrow-up.vue"]]),_sfc_main13={name:"Avatar"},_hoisted_113$1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_213=createBaseVNode("path",{fill:"currentColor",d:"M628.736 528.896A416 416 0 0 1 928 928H96a415.872 415.872 0 0 1 299.264-399.104L512 704l116.736-175.104zM720 304a208 208 0 1 1-416 0 208 208 0 0 1 416 0z"},null,-1),_hoisted_313=[_hoisted_213];function _sfc_render13(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_113$1,_hoisted_313)}var avatar_default=export_helper_default(_sfc_main13,[["render",_sfc_render13],["__file","avatar.vue"]]),_sfc_main14={name:"Back"},_hoisted_114$1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_214=createBaseVNode("path",{fill:"currentColor",d:"M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64z"},null,-1),_hoisted_314=createBaseVNode("path",{fill:"currentColor",d:"m237.248 512 265.408 265.344a32 32 0 0 1-45.312 45.312l-288-288a32 32 0 0 1 0-45.312l288-288a32 32 0 1 1 45.312 45.312L237.248 512z"},null,-1),_hoisted_44$1=[_hoisted_214,_hoisted_314];function _sfc_render14(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_114$1,_hoisted_44$1)}var back_default=export_helper_default(_sfc_main14,[["render",_sfc_render14],["__file","back.vue"]]),_sfc_main15={name:"Baseball"},_hoisted_115$1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_215=createBaseVNode("path",{fill:"currentColor",d:"M195.2 828.8a448 448 0 1 1 633.6-633.6 448 448 0 0 1-633.6 633.6zm45.248-45.248a384 384 0 1 0 543.104-543.104 384 384 0 0 0-543.104 543.104z"},null,-1),_hoisted_315=createBaseVNode("path",{fill:"currentColor",d:"M497.472 96.896c22.784 4.672 44.416 9.472 64.896 14.528a256.128 256.128 0 0 0 350.208 350.208c5.056 20.48 9.856 42.112 14.528 64.896A320.128 320.128 0 0 1 497.472 96.896zM108.48 491.904a320.128 320.128 0 0 1 423.616 423.68c-23.04-3.648-44.992-7.424-65.728-11.52a256.128 256.128 0 0 0-346.496-346.432 1736.64 1736.64 0 0 1-11.392-65.728z"},null,-1),_hoisted_45$1=[_hoisted_215,_hoisted_315];function _sfc_render15(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_115$1,_hoisted_45$1)}var baseball_default=export_helper_default(_sfc_main15,[["render",_sfc_render15],["__file","baseball.vue"]]),_sfc_main16={name:"Basketball"},_hoisted_116$1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_216=createBaseVNode("path",{fill:"currentColor",d:"M778.752 788.224a382.464 382.464 0 0 0 116.032-245.632 256.512 256.512 0 0 0-241.728-13.952 762.88 762.88 0 0 1 125.696 259.584zm-55.04 44.224a699.648 699.648 0 0 0-125.056-269.632 256.128 256.128 0 0 0-56.064 331.968 382.72 382.72 0 0 0 181.12-62.336zm-254.08 61.248A320.128 320.128 0 0 1 557.76 513.6a715.84 715.84 0 0 0-48.192-48.128 320.128 320.128 0 0 1-379.264 88.384 382.4 382.4 0 0 0 110.144 229.696 382.4 382.4 0 0 0 229.184 110.08zM129.28 481.088a256.128 256.128 0 0 0 331.072-56.448 699.648 699.648 0 0 0-268.8-124.352 382.656 382.656 0 0 0-62.272 180.8zm106.56-235.84a762.88 762.88 0 0 1 258.688 125.056 256.512 256.512 0 0 0-13.44-241.088A382.464 382.464 0 0 0 235.84 245.248zm318.08-114.944c40.576 89.536 37.76 193.92-8.448 281.344a779.84 779.84 0 0 1 66.176 66.112 320.832 320.832 0 0 1 282.112-8.128 382.4 382.4 0 0 0-110.144-229.12 382.4 382.4 0 0 0-229.632-110.208zM828.8 828.8a448 448 0 1 1-633.6-633.6 448 448 0 0 1 633.6 633.6z"},null,-1),_hoisted_316=[_hoisted_216];function _sfc_render16(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_116$1,_hoisted_316)}var basketball_default=export_helper_default(_sfc_main16,[["render",_sfc_render16],["__file","basketball.vue"]]),_sfc_main17={name:"BellFilled"},_hoisted_117$1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_217=createBaseVNode("path",{fill:"currentColor",d:"M640 832a128 128 0 0 1-256 0h256zm192-64H134.4a38.4 38.4 0 0 1 0-76.8H192V448c0-154.88 110.08-284.16 256.32-313.6a64 64 0 1 1 127.36 0A320.128 320.128 0 0 1 832 448v243.2h57.6a38.4 38.4 0 0 1 0 76.8H832z"},null,-1),_hoisted_317=[_hoisted_217];function _sfc_render17(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_117$1,_hoisted_317)}var bell_filled_default=export_helper_default(_sfc_main17,[["render",_sfc_render17],["__file","bell-filled.vue"]]),_sfc_main18={name:"Bell"},_hoisted_118$1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_218=createBaseVNode("path",{fill:"currentColor",d:"M512 64a64 64 0 0 1 64 64v64H448v-64a64 64 0 0 1 64-64z"},null,-1),_hoisted_318=createBaseVNode("path",{fill:"currentColor",d:"M256 768h512V448a256 256 0 1 0-512 0v320zm256-640a320 320 0 0 1 320 320v384H192V448a320 320 0 0 1 320-320z"},null,-1),_hoisted_46$1=createBaseVNode("path",{fill:"currentColor",d:"M96 768h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm352 128h128a64 64 0 0 1-128 0z"},null,-1),_hoisted_52$1=[_hoisted_218,_hoisted_318,_hoisted_46$1];function _sfc_render18(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_118$1,_hoisted_52$1)}var bell_default=export_helper_default(_sfc_main18,[["render",_sfc_render18],["__file","bell.vue"]]),_sfc_main19={name:"Bicycle"},_hoisted_119={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_219=createStaticVNode('',5),_hoisted_7$3=[_hoisted_219];function _sfc_render19(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_119,_hoisted_7$3)}var bicycle_default=export_helper_default(_sfc_main19,[["render",_sfc_render19],["__file","bicycle.vue"]]),_sfc_main20={name:"BottomLeft"},_hoisted_120={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_220=createBaseVNode("path",{fill:"currentColor",d:"M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0v416z"},null,-1),_hoisted_319=createBaseVNode("path",{fill:"currentColor",d:"M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"},null,-1),_hoisted_47$1=[_hoisted_220,_hoisted_319];function _sfc_render20(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_120,_hoisted_47$1)}var bottom_left_default=export_helper_default(_sfc_main20,[["render",_sfc_render20],["__file","bottom-left.vue"]]),_sfc_main21={name:"BottomRight"},_hoisted_121={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_221=createBaseVNode("path",{fill:"currentColor",d:"M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416H352z"},null,-1),_hoisted_320=createBaseVNode("path",{fill:"currentColor",d:"M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312l544 544z"},null,-1),_hoisted_48$1=[_hoisted_221,_hoisted_320];function _sfc_render21(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_121,_hoisted_48$1)}var bottom_right_default=export_helper_default(_sfc_main21,[["render",_sfc_render21],["__file","bottom-right.vue"]]),_sfc_main22={name:"Bottom"},_hoisted_122={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_222=createBaseVNode("path",{fill:"currentColor",d:"M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"},null,-1),_hoisted_321=[_hoisted_222];function _sfc_render22(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_122,_hoisted_321)}var bottom_default=export_helper_default(_sfc_main22,[["render",_sfc_render22],["__file","bottom.vue"]]),_sfc_main23={name:"Bowl"},_hoisted_123={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_223=createBaseVNode("path",{fill:"currentColor",d:"M714.432 704a351.744 351.744 0 0 0 148.16-256H161.408a351.744 351.744 0 0 0 148.16 256h404.864zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64v-65.408zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248L493.248 320zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424L680.576 320zM352 768v64h320v-64H352z"},null,-1),_hoisted_322=[_hoisted_223];function _sfc_render23(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_123,_hoisted_322)}var bowl_default=export_helper_default(_sfc_main23,[["render",_sfc_render23],["__file","bowl.vue"]]),_sfc_main24={name:"Box"},_hoisted_124={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_224=createBaseVNode("path",{fill:"currentColor",d:"M317.056 128 128 344.064V896h768V344.064L706.944 128H317.056zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64z"},null,-1),_hoisted_323=createBaseVNode("path",{fill:"currentColor",d:"M64 320h896v64H64z"},null,-1),_hoisted_49$1=createBaseVNode("path",{fill:"currentColor",d:"M448 327.872V640h128V327.872L526.08 128h-28.16L448 327.872zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320l64-256z"},null,-1),_hoisted_53$1=[_hoisted_224,_hoisted_323,_hoisted_49$1];function _sfc_render24(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_124,_hoisted_53$1)}var box_default=export_helper_default(_sfc_main24,[["render",_sfc_render24],["__file","box.vue"]]),_sfc_main25={name:"Briefcase"},_hoisted_125={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_225=createBaseVNode("path",{fill:"currentColor",d:"M320 320V128h384v192h192v192H128V320h192zM128 576h768v320H128V576zm256-256h256.064V192H384v128z"},null,-1),_hoisted_324=[_hoisted_225];function _sfc_render25(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_125,_hoisted_324)}var briefcase_default=export_helper_default(_sfc_main25,[["render",_sfc_render25],["__file","briefcase.vue"]]),_sfc_main26={name:"BrushFilled"},_hoisted_126={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_226=createBaseVNode("path",{fill:"currentColor",d:"M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128h-96zM192 512V128.064h640V512H192z"},null,-1),_hoisted_325=[_hoisted_226];function _sfc_render26(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_126,_hoisted_325)}var brush_filled_default=export_helper_default(_sfc_main26,[["render",_sfc_render26],["__file","brush-filled.vue"]]),_sfc_main27={name:"Brush"},_hoisted_127={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_227=createBaseVNode("path",{fill:"currentColor",d:"M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64V448zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a663.872 663.872 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384h61.248zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168z"},null,-1),_hoisted_326=[_hoisted_227];function _sfc_render27(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_127,_hoisted_326)}var brush_default=export_helper_default(_sfc_main27,[["render",_sfc_render27],["__file","brush.vue"]]),_sfc_main28={name:"Burger"},_hoisted_128={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_228=createBaseVNode("path",{fill:"currentColor",d:"M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H160zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44zM832 448a320 320 0 0 0-640 0h640zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704H512z"},null,-1),_hoisted_327=[_hoisted_228];function _sfc_render28(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_128,_hoisted_327)}var burger_default=export_helper_default(_sfc_main28,[["render",_sfc_render28],["__file","burger.vue"]]),_sfc_main29={name:"Calendar"},_hoisted_129={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_229=createBaseVNode("path",{fill:"currentColor",d:"M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z"},null,-1),_hoisted_328=[_hoisted_229];function _sfc_render29(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_129,_hoisted_328)}var calendar_default=export_helper_default(_sfc_main29,[["render",_sfc_render29],["__file","calendar.vue"]]),_sfc_main30={name:"CameraFilled"},_hoisted_130={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_230=createBaseVNode("path",{fill:"currentColor",d:"M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224H160zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4zm0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),_hoisted_329=[_hoisted_230];function _sfc_render30(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_130,_hoisted_329)}var camera_filled_default=export_helper_default(_sfc_main30,[["render",_sfc_render30],["__file","camera-filled.vue"]]),_sfc_main31={name:"Camera"},_hoisted_131={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_231=createBaseVNode("path",{fill:"currentColor",d:"M896 256H128v576h768V256zm-199.424-64-32.064-64h-304.96l-32 64h369.024zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32zm416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448z"},null,-1),_hoisted_330=[_hoisted_231];function _sfc_render31(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_131,_hoisted_330)}var camera_default=export_helper_default(_sfc_main31,[["render",_sfc_render31],["__file","camera.vue"]]),_sfc_main32={name:"CaretBottom"},_hoisted_132={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_232=createBaseVNode("path",{fill:"currentColor",d:"m192 384 320 384 320-384z"},null,-1),_hoisted_331=[_hoisted_232];function _sfc_render32(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_132,_hoisted_331)}var caret_bottom_default=export_helper_default(_sfc_main32,[["render",_sfc_render32],["__file","caret-bottom.vue"]]),_sfc_main33={name:"CaretLeft"},_hoisted_133={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_233=createBaseVNode("path",{fill:"currentColor",d:"M672 192 288 511.936 672 832z"},null,-1),_hoisted_332=[_hoisted_233];function _sfc_render33(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_133,_hoisted_332)}var caret_left_default=export_helper_default(_sfc_main33,[["render",_sfc_render33],["__file","caret-left.vue"]]),_sfc_main34={name:"CaretRight"},_hoisted_134={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_234=createBaseVNode("path",{fill:"currentColor",d:"M384 192v640l384-320.064z"},null,-1),_hoisted_333=[_hoisted_234];function _sfc_render34(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_134,_hoisted_333)}var caret_right_default=export_helper_default(_sfc_main34,[["render",_sfc_render34],["__file","caret-right.vue"]]),_sfc_main35={name:"CaretTop"},_hoisted_135={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_235=createBaseVNode("path",{fill:"currentColor",d:"M512 320 192 704h639.936z"},null,-1),_hoisted_334=[_hoisted_235];function _sfc_render35(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_135,_hoisted_334)}var caret_top_default=export_helper_default(_sfc_main35,[["render",_sfc_render35],["__file","caret-top.vue"]]),_sfc_main36={name:"Cellphone"},_hoisted_136={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_236=createBaseVNode("path",{fill:"currentColor",d:"M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H256zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64zm128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64zm128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1),_hoisted_335=[_hoisted_236];function _sfc_render36(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_136,_hoisted_335)}var cellphone_default=export_helper_default(_sfc_main36,[["render",_sfc_render36],["__file","cellphone.vue"]]),_sfc_main37={name:"ChatDotRound"},_hoisted_137={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_237=createBaseVNode("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),_hoisted_336=createBaseVNode("path",{fill:"currentColor",d:"M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1),_hoisted_410=[_hoisted_237,_hoisted_336];function _sfc_render37(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_137,_hoisted_410)}var chat_dot_round_default=export_helper_default(_sfc_main37,[["render",_sfc_render37],["__file","chat-dot-round.vue"]]),_sfc_main38={name:"ChatDotSquare"},_hoisted_138={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_238=createBaseVNode("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),_hoisted_337=createBaseVNode("path",{fill:"currentColor",d:"M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1),_hoisted_411=[_hoisted_238,_hoisted_337];function _sfc_render38(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_138,_hoisted_411)}var chat_dot_square_default=export_helper_default(_sfc_main38,[["render",_sfc_render38],["__file","chat-dot-square.vue"]]),_sfc_main39={name:"ChatLineRound"},_hoisted_139={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_239=createBaseVNode("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),_hoisted_338=createBaseVNode("path",{fill:"currentColor",d:"M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1),_hoisted_412=[_hoisted_239,_hoisted_338];function _sfc_render39(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_139,_hoisted_412)}var chat_line_round_default=export_helper_default(_sfc_main39,[["render",_sfc_render39],["__file","chat-line-round.vue"]]),_sfc_main40={name:"ChatLineSquare"},_hoisted_140={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_240=createBaseVNode("path",{fill:"currentColor",d:"M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),_hoisted_339=createBaseVNode("path",{fill:"currentColor",d:"M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1),_hoisted_413=[_hoisted_240,_hoisted_339];function _sfc_render40(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_140,_hoisted_413)}var chat_line_square_default=export_helper_default(_sfc_main40,[["render",_sfc_render40],["__file","chat-line-square.vue"]]),_sfc_main41={name:"ChatRound"},_hoisted_141={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_241=createBaseVNode("path",{fill:"currentColor",d:"m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"},null,-1),_hoisted_340=[_hoisted_241];function _sfc_render41(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_141,_hoisted_340)}var chat_round_default=export_helper_default(_sfc_main41,[["render",_sfc_render41],["__file","chat-round.vue"]]),_sfc_main42={name:"ChatSquare"},_hoisted_142={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_242=createBaseVNode("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),_hoisted_341=[_hoisted_242];function _sfc_render42(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_142,_hoisted_341)}var chat_square_default=export_helper_default(_sfc_main42,[["render",_sfc_render42],["__file","chat-square.vue"]]),_sfc_main43={name:"Check"},_hoisted_143={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_243=createBaseVNode("path",{fill:"currentColor",d:"M406.656 706.944 195.84 496.256a32 32 0 1 0-45.248 45.248l256 256 512-512a32 32 0 0 0-45.248-45.248L406.592 706.944z"},null,-1),_hoisted_342=[_hoisted_243];function _sfc_render43(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_143,_hoisted_342)}var check_default=export_helper_default(_sfc_main43,[["render",_sfc_render43],["__file","check.vue"]]),_sfc_main44={name:"Checked"},_hoisted_144={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_244=createBaseVNode("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160.064v64H704v-64zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024 311.616 537.28zM384 192V96h256v96H384z"},null,-1),_hoisted_343=[_hoisted_244];function _sfc_render44(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_144,_hoisted_343)}var checked_default=export_helper_default(_sfc_main44,[["render",_sfc_render44],["__file","checked.vue"]]),_sfc_main45={name:"Cherry"},_hoisted_145={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_245=createBaseVNode("path",{fill:"currentColor",d:"M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6zM288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320z"},null,-1),_hoisted_344=[_hoisted_245];function _sfc_render45(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_145,_hoisted_344)}var cherry_default=export_helper_default(_sfc_main45,[["render",_sfc_render45],["__file","cherry.vue"]]),_sfc_main46={name:"Chicken"},_hoisted_146={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_246=createBaseVNode("path",{fill:"currentColor",d:"M349.952 716.992 478.72 588.16a106.688 106.688 0 0 1-26.176-19.072 106.688 106.688 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112zm57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84zM244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52 3.52-56.32zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52-3.52 56.32z"},null,-1),_hoisted_345=[_hoisted_246];function _sfc_render46(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_146,_hoisted_345)}var chicken_default=export_helper_default(_sfc_main46,[["render",_sfc_render46],["__file","chicken.vue"]]),_sfc_main47={name:"ChromeFilled"},_hoisted_147={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_247=createBaseVNode("path",{d:"M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.372 212.372 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67z",fill:"currentColor"},null,-1),_hoisted_346=createBaseVNode("path",{d:"M576.79 401.63a127.92 127.92 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128.005 128.005 0 0 0-2.16 127.44l1.24 2.13a127.906 127.906 0 0 0 46.36 46.61 127.907 127.907 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.984 127.984 0 0 0 .29-127.46 127.957 127.957 0 0 0-46.36-46.91z",fill:"currentColor"},null,-1),_hoisted_414=createBaseVNode("path",{d:"M394.45 333.96A213.336 213.336 0 0 1 512 298.67h369.58A426.503 426.503 0 0 0 512 85.34a425.598 425.598 0 0 0-171.74 35.98 425.644 425.644 0 0 0-142.62 102.22l118.14 204.63a213.397 213.397 0 0 1 78.67-94.21zM512.01 938.68H512zM414.76 701.95a213.284 213.284 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.315 213.315 0 0 1-122.77-21.91z",fill:"currentColor"},null,-1),_hoisted_54$1=[_hoisted_247,_hoisted_346,_hoisted_414];function _sfc_render47(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_147,_hoisted_54$1)}var chrome_filled_default=export_helper_default(_sfc_main47,[["render",_sfc_render47],["__file","chrome-filled.vue"]]),_sfc_main48={name:"CircleCheckFilled"},_hoisted_148={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_248=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336L456.192 600.384z"},null,-1),_hoisted_347=[_hoisted_248];function _sfc_render48(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_148,_hoisted_347)}var circle_check_filled_default=export_helper_default(_sfc_main48,[["render",_sfc_render48],["__file","circle-check-filled.vue"]]),_sfc_main49={name:"CircleCheck"},_hoisted_149={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_249=createBaseVNode("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_348=createBaseVNode("path",{fill:"currentColor",d:"M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"},null,-1),_hoisted_415=[_hoisted_249,_hoisted_348];function _sfc_render49(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_149,_hoisted_415)}var circle_check_default=export_helper_default(_sfc_main49,[["render",_sfc_render49],["__file","circle-check.vue"]]),_sfc_main50={name:"CircleCloseFilled"},_hoisted_150={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_250=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336L512 457.664z"},null,-1),_hoisted_349=[_hoisted_250];function _sfc_render50(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_150,_hoisted_349)}var circle_close_filled_default=export_helper_default(_sfc_main50,[["render",_sfc_render50],["__file","circle-close-filled.vue"]]),_sfc_main51={name:"CircleClose"},_hoisted_151={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_251=createBaseVNode("path",{fill:"currentColor",d:"m466.752 512-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"},null,-1),_hoisted_350=createBaseVNode("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_416=[_hoisted_251,_hoisted_350];function _sfc_render51(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_151,_hoisted_416)}var circle_close_default=export_helper_default(_sfc_main51,[["render",_sfc_render51],["__file","circle-close.vue"]]),_sfc_main52={name:"CirclePlusFilled"},_hoisted_152={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_252=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0v147.2z"},null,-1),_hoisted_351=[_hoisted_252];function _sfc_render52(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_152,_hoisted_351)}var circle_plus_filled_default=export_helper_default(_sfc_main52,[["render",_sfc_render52],["__file","circle-plus-filled.vue"]]),_sfc_main53={name:"CirclePlus"},_hoisted_153={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_253=createBaseVNode("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),_hoisted_352=createBaseVNode("path",{fill:"currentColor",d:"M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0z"},null,-1),_hoisted_417=createBaseVNode("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_55$1=[_hoisted_253,_hoisted_352,_hoisted_417];function _sfc_render53(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_153,_hoisted_55$1)}var circle_plus_default=export_helper_default(_sfc_main53,[["render",_sfc_render53],["__file","circle-plus.vue"]]),_sfc_main54={name:"Clock"},_hoisted_154={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_254=createBaseVNode("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_353=createBaseVNode("path",{fill:"currentColor",d:"M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1),_hoisted_418=createBaseVNode("path",{fill:"currentColor",d:"M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32z"},null,-1),_hoisted_56$1=[_hoisted_254,_hoisted_353,_hoisted_418];function _sfc_render54(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_154,_hoisted_56$1)}var clock_default=export_helper_default(_sfc_main54,[["render",_sfc_render54],["__file","clock.vue"]]),_sfc_main55={name:"CloseBold"},_hoisted_155={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_255=createBaseVNode("path",{fill:"currentColor",d:"M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"},null,-1),_hoisted_354=[_hoisted_255];function _sfc_render55(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_155,_hoisted_354)}var close_bold_default=export_helper_default(_sfc_main55,[["render",_sfc_render55],["__file","close-bold.vue"]]),_sfc_main56={name:"Close"},_hoisted_156={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_256=createBaseVNode("path",{fill:"currentColor",d:"M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"},null,-1),_hoisted_355=[_hoisted_256];function _sfc_render56(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_156,_hoisted_355)}var close_default=export_helper_default(_sfc_main56,[["render",_sfc_render56],["__file","close.vue"]]),_sfc_main57={name:"Cloudy"},_hoisted_157={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_257=createBaseVNode("path",{fill:"currentColor",d:"M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1),_hoisted_356=[_hoisted_257];function _sfc_render57(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_157,_hoisted_356)}var cloudy_default=export_helper_default(_sfc_main57,[["render",_sfc_render57],["__file","cloudy.vue"]]),_sfc_main58={name:"CoffeeCup"},_hoisted_158={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_258=createBaseVNode("path",{fill:"currentColor",d:"M768 192a192 192 0 1 1-8 383.808A256.128 256.128 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v32zm0 64v256a128 128 0 1 0 0-256zM96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192H128z"},null,-1),_hoisted_357=[_hoisted_258];function _sfc_render58(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_158,_hoisted_357)}var coffee_cup_default=export_helper_default(_sfc_main58,[["render",_sfc_render58],["__file","coffee-cup.vue"]]),_sfc_main59={name:"Coffee"},_hoisted_159={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_259=createBaseVNode("path",{fill:"currentColor",d:"M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304L822.592 192zm-64.128 0 4.544-64H260.736l4.544 64h493.184zm-548.16 128H820.48l-10.688-64H214.208l-10.688 64h6.784zm68.736 64 36.544 512H708.16l36.544-512H279.04z"},null,-1),_hoisted_358=[_hoisted_259];function _sfc_render59(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_159,_hoisted_358)}var coffee_default=export_helper_default(_sfc_main59,[["render",_sfc_render59],["__file","coffee.vue"]]),_sfc_main60={name:"Coin"},_hoisted_160={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_260=createBaseVNode("path",{fill:"currentColor",d:"m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),_hoisted_359=createBaseVNode("path",{fill:"currentColor",d:"m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),_hoisted_419=createBaseVNode("path",{fill:"currentColor",d:"M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224zm0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160z"},null,-1),_hoisted_57$1=[_hoisted_260,_hoisted_359,_hoisted_419];function _sfc_render60(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_160,_hoisted_57$1)}var coin_default=export_helper_default(_sfc_main60,[["render",_sfc_render60],["__file","coin.vue"]]),_sfc_main61={name:"ColdDrink"},_hoisted_161={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_261=createBaseVNode("path",{fill:"currentColor",d:"M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.064 192.064 0 0 1 768 64zM656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928H299.008z"},null,-1),_hoisted_360=[_hoisted_261];function _sfc_render61(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_161,_hoisted_360)}var cold_drink_default=export_helper_default(_sfc_main61,[["render",_sfc_render61],["__file","cold-drink.vue"]]),_sfc_main62={name:"CollectionTag"},_hoisted_162={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_262=createBaseVNode("path",{fill:"currentColor",d:"M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128H256zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32z"},null,-1),_hoisted_361=[_hoisted_262];function _sfc_render62(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_162,_hoisted_361)}var collection_tag_default=export_helper_default(_sfc_main62,[["render",_sfc_render62],["__file","collection-tag.vue"]]),_sfc_main63={name:"Collection"},_hoisted_163={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_263=createBaseVNode("path",{fill:"currentColor",d:"M192 736h640V128H256a64 64 0 0 0-64 64v544zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64z"},null,-1),_hoisted_362=createBaseVNode("path",{fill:"currentColor",d:"M240 800a48 48 0 1 0 0 96h592v-96H240zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224zm144-608v250.88l96-76.8 96 76.8V128H384zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44V64z"},null,-1),_hoisted_420=[_hoisted_263,_hoisted_362];function _sfc_render63(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_163,_hoisted_420)}var collection_default=export_helper_default(_sfc_main63,[["render",_sfc_render63],["__file","collection.vue"]]),_sfc_main64={name:"Comment"},_hoisted_164={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_264=createBaseVNode("path",{fill:"currentColor",d:"M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zM128 128v640h192v160l224-160h352V128H128z"},null,-1),_hoisted_363=[_hoisted_264];function _sfc_render64(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_164,_hoisted_363)}var comment_default=export_helper_default(_sfc_main64,[["render",_sfc_render64],["__file","comment.vue"]]),_sfc_main65={name:"Compass"},_hoisted_165={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_265=createBaseVNode("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_364=createBaseVNode("path",{fill:"currentColor",d:"M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832z"},null,-1),_hoisted_421=[_hoisted_265,_hoisted_364];function _sfc_render65(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_165,_hoisted_421)}var compass_default=export_helper_default(_sfc_main65,[["render",_sfc_render65],["__file","compass.vue"]]),_sfc_main66={name:"Connection"},_hoisted_166={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_266=createBaseVNode("path",{fill:"currentColor",d:"M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192h192z"},null,-1),_hoisted_365=createBaseVNode("path",{fill:"currentColor",d:"M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.064 192.064 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192H384z"},null,-1),_hoisted_422=[_hoisted_266,_hoisted_365];function _sfc_render66(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_166,_hoisted_422)}var connection_default=export_helper_default(_sfc_main66,[["render",_sfc_render66],["__file","connection.vue"]]),_sfc_main67={name:"Coordinate"},_hoisted_167={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_267=createBaseVNode("path",{fill:"currentColor",d:"M480 512h64v320h-64z"},null,-1),_hoisted_366=createBaseVNode("path",{fill:"currentColor",d:"M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64zm64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128zm256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),_hoisted_423=[_hoisted_267,_hoisted_366];function _sfc_render67(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_167,_hoisted_423)}var coordinate_default=export_helper_default(_sfc_main67,[["render",_sfc_render67],["__file","coordinate.vue"]]),_sfc_main68={name:"CopyDocument"},_hoisted_168={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_268=createBaseVNode("path",{fill:"currentColor",d:"M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64h64z"},null,-1),_hoisted_367=createBaseVNode("path",{fill:"currentColor",d:"M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H384zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64z"},null,-1),_hoisted_424=[_hoisted_268,_hoisted_367];function _sfc_render68(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_168,_hoisted_424)}var copy_document_default=export_helper_default(_sfc_main68,[["render",_sfc_render68],["__file","copy-document.vue"]]),_sfc_main69={name:"Cpu"},_hoisted_169={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_269=createBaseVNode("path",{fill:"currentColor",d:"M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H320zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128z"},null,-1),_hoisted_368=createBaseVNode("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zM64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32z"},null,-1),_hoisted_425=[_hoisted_269,_hoisted_368];function _sfc_render69(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_169,_hoisted_425)}var cpu_default=export_helper_default(_sfc_main69,[["render",_sfc_render69],["__file","cpu.vue"]]),_sfc_main70={name:"CreditCard"},_hoisted_170={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_270=createBaseVNode("path",{fill:"currentColor",d:"M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.352 52.352 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.352 52.352 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.352 52.352 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.352 52.352 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416V324.096zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448-20.864 11.136-41.6 17.088-98.56 17.088H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.288 116.288 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448 20.864-11.136 41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384 11.136 20.864 17.088 41.6 17.088 98.56z"},null,-1),_hoisted_369=createBaseVNode("path",{fill:"currentColor",d:"M64 320h896v64H64v-64zm0 128h896v64H64v-64zm128 192h256v64H192z"},null,-1),_hoisted_426=[_hoisted_270,_hoisted_369];function _sfc_render70(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_170,_hoisted_426)}var credit_card_default=export_helper_default(_sfc_main70,[["render",_sfc_render70],["__file","credit-card.vue"]]),_sfc_main71={name:"Crop"},_hoisted_171={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_271=createBaseVNode("path",{fill:"currentColor",d:"M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0v672z"},null,-1),_hoisted_370=createBaseVNode("path",{fill:"currentColor",d:"M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32z"},null,-1),_hoisted_427=[_hoisted_271,_hoisted_370];function _sfc_render71(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_171,_hoisted_427)}var crop_default=export_helper_default(_sfc_main71,[["render",_sfc_render71],["__file","crop.vue"]]),_sfc_main72={name:"DArrowLeft"},_hoisted_172={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_272=createBaseVNode("path",{fill:"currentColor",d:"M529.408 149.376a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L259.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L197.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224zm256 0a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L515.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L453.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224z"},null,-1),_hoisted_371=[_hoisted_272];function _sfc_render72(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_172,_hoisted_371)}var d_arrow_left_default=export_helper_default(_sfc_main72,[["render",_sfc_render72],["__file","d-arrow-left.vue"]]),_sfc_main73={name:"DArrowRight"},_hoisted_173={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_273=createBaseVNode("path",{fill:"currentColor",d:"M452.864 149.312a29.12 29.12 0 0 1 41.728.064L826.24 489.664a32 32 0 0 1 0 44.672L494.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L764.736 512 452.864 192a30.592 30.592 0 0 1 0-42.688zm-256 0a29.12 29.12 0 0 1 41.728.064L570.24 489.664a32 32 0 0 1 0 44.672L238.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L508.736 512 196.864 192a30.592 30.592 0 0 1 0-42.688z"},null,-1),_hoisted_372=[_hoisted_273];function _sfc_render73(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_173,_hoisted_372)}var d_arrow_right_default=export_helper_default(_sfc_main73,[["render",_sfc_render73],["__file","d-arrow-right.vue"]]),_sfc_main74={name:"DCaret"},_hoisted_174={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_274=createBaseVNode("path",{fill:"currentColor",d:"m512 128 288 320H224l288-320zM224 576h576L512 896 224 576z"},null,-1),_hoisted_373=[_hoisted_274];function _sfc_render74(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_174,_hoisted_373)}var d_caret_default=export_helper_default(_sfc_main74,[["render",_sfc_render74],["__file","d-caret.vue"]]),_sfc_main75={name:"DataAnalysis"},_hoisted_175={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_275=createBaseVNode("path",{fill:"currentColor",d:"m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216zM832 192H192v512h640V192zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32z"},null,-1),_hoisted_374=[_hoisted_275];function _sfc_render75(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_175,_hoisted_374)}var data_analysis_default=export_helper_default(_sfc_main75,[["render",_sfc_render75],["__file","data-analysis.vue"]]),_sfc_main76={name:"DataBoard"},_hoisted_176={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_276=createBaseVNode("path",{fill:"currentColor",d:"M32 128h960v64H32z"},null,-1),_hoisted_375=createBaseVNode("path",{fill:"currentColor",d:"M192 192v512h640V192H192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V128z"},null,-1),_hoisted_428=createBaseVNode("path",{fill:"currentColor",d:"M322.176 960H248.32l144.64-250.56 55.424 32L322.176 960zm453.888 0h-73.856L576 741.44l55.424-32L776.064 960z"},null,-1),_hoisted_58$1=[_hoisted_276,_hoisted_375,_hoisted_428];function _sfc_render76(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_176,_hoisted_58$1)}var data_board_default=export_helper_default(_sfc_main76,[["render",_sfc_render76],["__file","data-board.vue"]]),_sfc_main77={name:"DataLine"},_hoisted_177={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_277=createBaseVNode("path",{fill:"currentColor",d:"M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192zM832 192H192v512h640V192zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"},null,-1),_hoisted_376=[_hoisted_277];function _sfc_render77(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_177,_hoisted_376)}var data_line_default=export_helper_default(_sfc_main77,[["render",_sfc_render77],["__file","data-line.vue"]]),_sfc_main78={name:"DeleteFilled"},_hoisted_178={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_278=createBaseVNode("path",{fill:"currentColor",d:"M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64h256zm64 0h192v-64H416v64zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32H192zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32zm192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32z"},null,-1),_hoisted_377=[_hoisted_278];function _sfc_render78(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_178,_hoisted_377)}var delete_filled_default=export_helper_default(_sfc_main78,[["render",_sfc_render78],["__file","delete-filled.vue"]]),_sfc_main79={name:"DeleteLocation"},_hoisted_179={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_279=createBaseVNode("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),_hoisted_378=createBaseVNode("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),_hoisted_429=createBaseVNode("path",{fill:"currentColor",d:"M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1),_hoisted_59$1=[_hoisted_279,_hoisted_378,_hoisted_429];function _sfc_render79(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_179,_hoisted_59$1)}var delete_location_default=export_helper_default(_sfc_main79,[["render",_sfc_render79],["__file","delete-location.vue"]]),_sfc_main80={name:"Delete"},_hoisted_180={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_280=createBaseVNode("path",{fill:"currentColor",d:"M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V256zm448-64v-64H416v64h192zM224 896h576V256H224v640zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32zm192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32z"},null,-1),_hoisted_379=[_hoisted_280];function _sfc_render80(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_180,_hoisted_379)}var delete_default=export_helper_default(_sfc_main80,[["render",_sfc_render80],["__file","delete.vue"]]),_sfc_main81={name:"Dessert"},_hoisted_181={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_281=createBaseVNode("path",{fill:"currentColor",d:"M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416zm287.104-32.064h193.792a143.808 143.808 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.808 143.808 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0h140.48zm339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736zM384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64z"},null,-1),_hoisted_380=[_hoisted_281];function _sfc_render81(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_181,_hoisted_380)}var dessert_default=export_helper_default(_sfc_main81,[["render",_sfc_render81],["__file","dessert.vue"]]),_sfc_main82={name:"Discount"},_hoisted_182={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_282=createBaseVNode("path",{fill:"currentColor",d:"M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336V704zm0 64v128h576V768H224zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),_hoisted_381=createBaseVNode("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),_hoisted_430=[_hoisted_282,_hoisted_381];function _sfc_render82(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_182,_hoisted_430)}var discount_default=export_helper_default(_sfc_main82,[["render",_sfc_render82],["__file","discount.vue"]]),_sfc_main83={name:"DishDot"},_hoisted_183={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_283=createBaseVNode("path",{fill:"currentColor",d:"m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.192 448.192 0 0 1 955.392 768H68.544A448.192 448.192 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-128h768a384 384 0 1 0-768 0zm447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256h127.68z"},null,-1),_hoisted_382=[_hoisted_283];function _sfc_render83(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_183,_hoisted_382)}var dish_dot_default=export_helper_default(_sfc_main83,[["render",_sfc_render83],["__file","dish-dot.vue"]]),_sfc_main84={name:"Dish"},_hoisted_184={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_284=createBaseVNode("path",{fill:"currentColor",d:"M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152zM128 704h768a384 384 0 1 0-768 0zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64z"},null,-1),_hoisted_383=[_hoisted_284];function _sfc_render84(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_184,_hoisted_383)}var dish_default=export_helper_default(_sfc_main84,[["render",_sfc_render84],["__file","dish.vue"]]),_sfc_main85={name:"DocumentAdd"},_hoisted_185={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_285=createBaseVNode("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm320 512V448h64v128h128v64H544v128h-64V640H352v-64h128z"},null,-1),_hoisted_384=[_hoisted_285];function _sfc_render85(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_185,_hoisted_384)}var document_add_default=export_helper_default(_sfc_main85,[["render",_sfc_render85],["__file","document-add.vue"]]),_sfc_main86={name:"DocumentChecked"},_hoisted_186={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_286=createBaseVNode("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312L478.4 646.144z"},null,-1),_hoisted_385=[_hoisted_286];function _sfc_render86(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_186,_hoisted_385)}var document_checked_default=export_helper_default(_sfc_main86,[["render",_sfc_render86],["__file","document-checked.vue"]]),_sfc_main87={name:"DocumentCopy"},_hoisted_187={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_287=createBaseVNode("path",{fill:"currentColor",d:"M128 320v576h576V320H128zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zM960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32zM256 672h320v64H256v-64zm0-192h320v64H256v-64z"},null,-1),_hoisted_386=[_hoisted_287];function _sfc_render87(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_187,_hoisted_386)}var document_copy_default=export_helper_default(_sfc_main87,[["render",_sfc_render87],["__file","document-copy.vue"]]),_sfc_main88={name:"DocumentDelete"},_hoisted_188={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_288=createBaseVNode("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248 90.496-90.496z"},null,-1),_hoisted_387=[_hoisted_288];function _sfc_render88(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_188,_hoisted_387)}var document_delete_default=export_helper_default(_sfc_main88,[["render",_sfc_render88],["__file","document-delete.vue"]]),_sfc_main89={name:"DocumentRemove"},_hoisted_189={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_289=createBaseVNode("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm192 512h320v64H352v-64z"},null,-1),_hoisted_388=[_hoisted_289];function _sfc_render89(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_189,_hoisted_388)}var document_remove_default=export_helper_default(_sfc_main89,[["render",_sfc_render89],["__file","document-remove.vue"]]),_sfc_main90={name:"Document"},_hoisted_190={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_290=createBaseVNode("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h160v64H320v-64zm0 384h384v64H320v-64z"},null,-1),_hoisted_389=[_hoisted_290];function _sfc_render90(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_190,_hoisted_389)}var document_default=export_helper_default(_sfc_main90,[["render",_sfc_render90],["__file","document.vue"]]),_sfc_main91={name:"Download"},_hoisted_191={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_291=createBaseVNode("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64v450.304z"},null,-1),_hoisted_390=[_hoisted_291];function _sfc_render91(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_191,_hoisted_390)}var download_default=export_helper_default(_sfc_main91,[["render",_sfc_render91],["__file","download.vue"]]),_sfc_main92={name:"Drizzling"},_hoisted_192={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_292=createBaseVNode("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM288 800h64v64h-64v-64zm192 0h64v64h-64v-64zm-96 96h64v64h-64v-64zm192 0h64v64h-64v-64zm96-96h64v64h-64v-64z"},null,-1),_hoisted_391=[_hoisted_292];function _sfc_render92(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_192,_hoisted_391)}var drizzling_default=export_helper_default(_sfc_main92,[["render",_sfc_render92],["__file","drizzling.vue"]]),_sfc_main93={name:"EditPen"},_hoisted_193={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_293=createBaseVNode("path",{d:"m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696L175.168 732.8zM455.04 229.248l193.92 112 56.704-98.112-193.984-112-56.64 98.112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336L104.32 708.8zm384 254.272v-64h448v64h-448z",fill:"currentColor"},null,-1),_hoisted_392=[_hoisted_293];function _sfc_render93(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_193,_hoisted_392)}var edit_pen_default=export_helper_default(_sfc_main93,[["render",_sfc_render93],["__file","edit-pen.vue"]]),_sfc_main94={name:"Edit"},_hoisted_194={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_294=createBaseVNode("path",{fill:"currentColor",d:"M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640V512z"},null,-1),_hoisted_393=createBaseVNode("path",{fill:"currentColor",d:"m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"},null,-1),_hoisted_431=[_hoisted_294,_hoisted_393];function _sfc_render94(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_194,_hoisted_431)}var edit_default=export_helper_default(_sfc_main94,[["render",_sfc_render94],["__file","edit.vue"]]),_sfc_main95={name:"ElemeFilled"},_hoisted_195={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_295=createBaseVNode("path",{fill:"currentColor",d:"M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112zm150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.688 330.688 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.552 47.552 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.304 234.304 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.552 47.552 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"},null,-1),_hoisted_394=[_hoisted_295];function _sfc_render95(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_195,_hoisted_394)}var eleme_filled_default=export_helper_default(_sfc_main95,[["render",_sfc_render95],["__file","eleme-filled.vue"]]),_sfc_main96={name:"Eleme"},_hoisted_196={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_296=createBaseVNode("path",{fill:"currentColor",d:"M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24zm526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.232 63.232 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8l71.04-46.08z"},null,-1),_hoisted_395=[_hoisted_296];function _sfc_render96(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_196,_hoisted_395)}var eleme_default=export_helper_default(_sfc_main96,[["render",_sfc_render96],["__file","eleme.vue"]]),_sfc_main97={name:"ElementPlus"},_hoisted_197={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_297=createBaseVNode("path",{d:"M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6c12.8-5.1 25.6-5.1 38.4 0 0 0 279 161.3 309.8 179.2 17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8zM714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4l220.1-128zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64l-2.5-38.4z",fill:"currentColor"},null,-1),_hoisted_396=[_hoisted_297];function _sfc_render97(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_197,_hoisted_396)}var element_plus_default=export_helper_default(_sfc_main97,[["render",_sfc_render97],["__file","element-plus.vue"]]),_sfc_main98={name:"Expand"},_hoisted_198={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_298=createBaseVNode("path",{fill:"currentColor",d:"M128 192h768v128H128V192zm0 256h512v128H128V448zm0 256h768v128H128V704zm576-352 192 160-192 128V352z"},null,-1),_hoisted_397=[_hoisted_298];function _sfc_render98(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_198,_hoisted_397)}var expand_default=export_helper_default(_sfc_main98,[["render",_sfc_render98],["__file","expand.vue"]]),_sfc_main99={name:"Failed"},_hoisted_199={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_299=createBaseVNode("path",{fill:"currentColor",d:"m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384v-64zm-320 0V96h256v96H384z"},null,-1),_hoisted_398=[_hoisted_299];function _sfc_render99(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_199,_hoisted_398)}var failed_default=export_helper_default(_sfc_main99,[["render",_sfc_render99],["__file","failed.vue"]]),_sfc_main100={name:"Female"},_hoisted_1100={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2100=createBaseVNode("path",{fill:"currentColor",d:"M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),_hoisted_399=createBaseVNode("path",{fill:"currentColor",d:"M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32z"},null,-1),_hoisted_432=createBaseVNode("path",{fill:"currentColor",d:"M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1),_hoisted_510=[_hoisted_2100,_hoisted_399,_hoisted_432];function _sfc_render100(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1100,_hoisted_510)}var female_default=export_helper_default(_sfc_main100,[["render",_sfc_render100],["__file","female.vue"]]),_sfc_main101={name:"Files"},_hoisted_1101={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2101=createBaseVNode("path",{fill:"currentColor",d:"M128 384v448h768V384H128zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32zm64-128h704v64H160zm96-128h512v64H256z"},null,-1),_hoisted_3100=[_hoisted_2101];function _sfc_render101(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1101,_hoisted_3100)}var files_default=export_helper_default(_sfc_main101,[["render",_sfc_render101],["__file","files.vue"]]),_sfc_main102={name:"Film"},_hoisted_1102={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2102=createBaseVNode("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),_hoisted_3101=createBaseVNode("path",{fill:"currentColor",d:"M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64h192z"},null,-1),_hoisted_433=[_hoisted_2102,_hoisted_3101];function _sfc_render102(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1102,_hoisted_433)}var film_default=export_helper_default(_sfc_main102,[["render",_sfc_render102],["__file","film.vue"]]),_sfc_main103={name:"Filter"},_hoisted_1103={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2103=createBaseVNode("path",{fill:"currentColor",d:"M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288L384 523.392z"},null,-1),_hoisted_3102=[_hoisted_2103];function _sfc_render103(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1103,_hoisted_3102)}var filter_default=export_helper_default(_sfc_main103,[["render",_sfc_render103],["__file","filter.vue"]]),_sfc_main104={name:"Finished"},_hoisted_1104={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2104=createBaseVNode("path",{fill:"currentColor",d:"M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2l203.968 152.96zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64H736zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64H608zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64H480z"},null,-1),_hoisted_3103=[_hoisted_2104];function _sfc_render104(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1104,_hoisted_3103)}var finished_default=export_helper_default(_sfc_main104,[["render",_sfc_render104],["__file","finished.vue"]]),_sfc_main105={name:"FirstAidKit"},_hoisted_1105={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2105=createBaseVNode("path",{fill:"currentColor",d:"M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H192zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),_hoisted_3104=createBaseVNode("path",{fill:"currentColor",d:"M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0v96zM352 128v64h320v-64H352zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),_hoisted_434=[_hoisted_2105,_hoisted_3104];function _sfc_render105(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1105,_hoisted_434)}var first_aid_kit_default=export_helper_default(_sfc_main105,[["render",_sfc_render105],["__file","first-aid-kit.vue"]]),_sfc_main106={name:"Flag"},_hoisted_1106={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2106=createBaseVNode("path",{fill:"currentColor",d:"M288 128h608L736 384l160 256H288v320h-96V64h96v64z"},null,-1),_hoisted_3105=[_hoisted_2106];function _sfc_render106(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1106,_hoisted_3105)}var flag_default=export_helper_default(_sfc_main106,[["render",_sfc_render106],["__file","flag.vue"]]),_sfc_main107={name:"Fold"},_hoisted_1107={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2107=createBaseVNode("path",{fill:"currentColor",d:"M896 192H128v128h768V192zm0 256H384v128h512V448zm0 256H128v128h768V704zM320 384 128 512l192 128V384z"},null,-1),_hoisted_3106=[_hoisted_2107];function _sfc_render107(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1107,_hoisted_3106)}var fold_default=export_helper_default(_sfc_main107,[["render",_sfc_render107],["__file","fold.vue"]]),_sfc_main108={name:"FolderAdd"},_hoisted_1108={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2108=createBaseVNode("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm384 416V416h64v128h128v64H544v128h-64V608H352v-64h128z"},null,-1),_hoisted_3107=[_hoisted_2108];function _sfc_render108(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1108,_hoisted_3107)}var folder_add_default=export_helper_default(_sfc_main108,[["render",_sfc_render108],["__file","folder-add.vue"]]),_sfc_main109={name:"FolderChecked"},_hoisted_1109={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2109=createBaseVNode("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312L510.08 630.144z"},null,-1),_hoisted_3108=[_hoisted_2109];function _sfc_render109(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1109,_hoisted_3108)}var folder_checked_default=export_helper_default(_sfc_main109,[["render",_sfc_render109],["__file","folder-checked.vue"]]),_sfc_main110={name:"FolderDelete"},_hoisted_1110={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2110=createBaseVNode("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248L466.752 576z"},null,-1),_hoisted_3109=[_hoisted_2110];function _sfc_render110(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1110,_hoisted_3109)}var folder_delete_default=export_helper_default(_sfc_main110,[["render",_sfc_render110],["__file","folder-delete.vue"]]),_sfc_main111={name:"FolderOpened"},_hoisted_1111={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2111=createBaseVNode("path",{fill:"currentColor",d:"M878.08 448H241.92l-96 384h636.16l96-384zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384H832zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896z"},null,-1),_hoisted_3110=[_hoisted_2111];function _sfc_render111(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1111,_hoisted_3110)}var folder_opened_default=export_helper_default(_sfc_main111,[["render",_sfc_render111],["__file","folder-opened.vue"]]),_sfc_main112={name:"FolderRemove"},_hoisted_1112={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2112=createBaseVNode("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm256 416h320v64H352v-64z"},null,-1),_hoisted_3111=[_hoisted_2112];function _sfc_render112(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1112,_hoisted_3111)}var folder_remove_default=export_helper_default(_sfc_main112,[["render",_sfc_render112],["__file","folder-remove.vue"]]),_sfc_main113={name:"Folder"},_hoisted_1113={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2113=createBaseVNode("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32z"},null,-1),_hoisted_3112=[_hoisted_2113];function _sfc_render113(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1113,_hoisted_3112)}var folder_default=export_helper_default(_sfc_main113,[["render",_sfc_render113],["__file","folder.vue"]]),_sfc_main114={name:"Food"},_hoisted_1114={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2114=createBaseVNode("path",{fill:"currentColor",d:"M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0zm128 0h192a96 96 0 0 0-192 0zm439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352zM672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32v-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288z"},null,-1),_hoisted_3113=[_hoisted_2114];function _sfc_render114(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1114,_hoisted_3113)}var food_default=export_helper_default(_sfc_main114,[["render",_sfc_render114],["__file","food.vue"]]),_sfc_main115={name:"Football"},_hoisted_1115={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2115=createBaseVNode("path",{fill:"currentColor",d:"M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768z"},null,-1),_hoisted_3114=createBaseVNode("path",{fill:"currentColor",d:"M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a385.984 385.984 0 0 1-80.448-91.648zm653.696-5.312a385.92 385.92 0 0 1-83.776 96.96l-32.512-56.384a322.923 322.923 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184zM465.984 445.248l11.136-63.104a323.584 323.584 0 0 0 69.76 0l11.136 63.104a387.968 387.968 0 0 1-92.032 0zm-62.72-12.8A381.824 381.824 0 0 1 320 396.544l32-55.424a319.885 319.885 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.824 381.824 0 0 1-83.328 35.84l-11.2-63.552A319.885 319.885 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.92 385.92 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072zm657.536.128a1442.759 1442.759 0 0 1-49.024 43.072 321.408 321.408 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408zM465.92 578.752a387.968 387.968 0 0 1 92.032 0l-11.136 63.104a323.584 323.584 0 0 0-69.76 0l-11.136-63.104zm-62.72 12.8 11.2 63.552a319.885 319.885 0 0 0-62.464 27.712L320 627.392a381.824 381.824 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.272 318.272 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"},null,-1),_hoisted_435=[_hoisted_2115,_hoisted_3114];function _sfc_render115(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1115,_hoisted_435)}var football_default=export_helper_default(_sfc_main115,[["render",_sfc_render115],["__file","football.vue"]]),_sfc_main116={name:"ForkSpoon"},_hoisted_1116={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2116=createBaseVNode("path",{fill:"currentColor",d:"M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56zM672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0V572.48zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192z"},null,-1),_hoisted_3115=[_hoisted_2116];function _sfc_render116(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1116,_hoisted_3115)}var fork_spoon_default=export_helper_default(_sfc_main116,[["render",_sfc_render116],["__file","fork-spoon.vue"]]),_sfc_main117={name:"Fries"},_hoisted_1117={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2117=createBaseVNode("path",{fill:"currentColor",d:"M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096V224zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160h37.12zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.744 95.744 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160h-16zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128.128 128.128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132.405 132.405 0 0 1 672 510.464V512h-1.216zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480V288zm-128 96V224a32 32 0 0 0-64 0v160h64-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704H253.12z"},null,-1),_hoisted_3116=[_hoisted_2117];function _sfc_render117(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1117,_hoisted_3116)}var fries_default=export_helper_default(_sfc_main117,[["render",_sfc_render117],["__file","fries.vue"]]),_sfc_main118={name:"FullScreen"},_hoisted_1118={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2118=createBaseVNode("path",{fill:"currentColor",d:"m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64v.064zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64l-192 .192zM864 96.064V96h64v256a32 32 0 1 1-64 0V160.064l-192 .192a32 32 0 1 1 0-64l192-.192zm0 831.872-192-.192a32 32 0 0 1 0-64l192 .192V672a32 32 0 1 1 64 0v256h-64v-.064z"},null,-1),_hoisted_3117=[_hoisted_2118];function _sfc_render118(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1118,_hoisted_3117)}var full_screen_default=export_helper_default(_sfc_main118,[["render",_sfc_render118],["__file","full-screen.vue"]]),_sfc_main119={name:"GobletFull"},_hoisted_1119={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2119=createBaseVNode("path",{fill:"currentColor",d:"M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320zm503.936 64H264.064a256.128 256.128 0 0 0 495.872 0zM544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4z"},null,-1),_hoisted_3118=[_hoisted_2119];function _sfc_render119(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1119,_hoisted_3118)}var goblet_full_default=export_helper_default(_sfc_main119,[["render",_sfc_render119],["__file","goblet-full.vue"]]),_sfc_main120={name:"GobletSquareFull"},_hoisted_1120={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2120=createBaseVNode("path",{fill:"currentColor",d:"M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256v142.912zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952.32 952.32 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848z"},null,-1),_hoisted_3119=[_hoisted_2120];function _sfc_render120(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1120,_hoisted_3119)}var goblet_square_full_default=export_helper_default(_sfc_main120,[["render",_sfc_render120],["__file","goblet-square-full.vue"]]),_sfc_main121={name:"GobletSquare"},_hoisted_1121={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2121=createBaseVNode("path",{fill:"currentColor",d:"M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912zM256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256v191.68z"},null,-1),_hoisted_3120=[_hoisted_2121];function _sfc_render121(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1121,_hoisted_3120)}var goblet_square_default=export_helper_default(_sfc_main121,[["render",_sfc_render121],["__file","goblet-square.vue"]]),_sfc_main122={name:"Goblet"},_hoisted_1122={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2122=createBaseVNode("path",{fill:"currentColor",d:"M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4zM256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320z"},null,-1),_hoisted_3121=[_hoisted_2122];function _sfc_render122(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1122,_hoisted_3121)}var goblet_default=export_helper_default(_sfc_main122,[["render",_sfc_render122],["__file","goblet.vue"]]),_sfc_main123={name:"GoldMedal"},_hoisted_1123={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_2123=createBaseVNode("path",{d:"m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16zM640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128h.01zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a359.844 359.844 0 0 0-32.36 4.79V128h128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128H384zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98z",fill:"currentColor"},null,-1),_hoisted_3122=createBaseVNode("path",{d:"M544 480H416v64h64v192h-64v64h192v-64h-64z",fill:"currentColor"},null,-1),_hoisted_436=[_hoisted_2123,_hoisted_3122];function _sfc_render123(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1123,_hoisted_436)}var gold_medal_default=export_helper_default(_sfc_main123,[["render",_sfc_render123],["__file","gold-medal.vue"]]),_sfc_main124={name:"GoodsFilled"},_hoisted_1124={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2124=createBaseVNode("path",{fill:"currentColor",d:"M192 352h640l64 544H128l64-544zm128 224h64V448h-64v128zm320 0h64V448h-64v128zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0z"},null,-1),_hoisted_3123=[_hoisted_2124];function _sfc_render124(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1124,_hoisted_3123)}var goods_filled_default=export_helper_default(_sfc_main124,[["render",_sfc_render124],["__file","goods-filled.vue"]]),_sfc_main125={name:"Goods"},_hoisted_1125={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2125=createBaseVNode("path",{fill:"currentColor",d:"M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96z"},null,-1),_hoisted_3124=[_hoisted_2125];function _sfc_render125(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1125,_hoisted_3124)}var goods_default=export_helper_default(_sfc_main125,[["render",_sfc_render125],["__file","goods.vue"]]),_sfc_main126={name:"Grape"},_hoisted_1126={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2126=createBaseVNode("path",{fill:"currentColor",d:"M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64v67.2zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1),_hoisted_3125=[_hoisted_2126];function _sfc_render126(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1126,_hoisted_3125)}var grape_default=export_helper_default(_sfc_main126,[["render",_sfc_render126],["__file","grape.vue"]]),_sfc_main127={name:"Grid"},_hoisted_1127={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2127=createBaseVNode("path",{fill:"currentColor",d:"M640 384v256H384V384h256zm64 0h192v256H704V384zm-64 512H384V704h256v192zm64 0V704h192v192H704zm-64-768v192H384V128h256zm64 0h192v192H704V128zM320 384v256H128V384h192zm0 512H128V704h192v192zm0-768v192H128V128h192z"},null,-1),_hoisted_3126=[_hoisted_2127];function _sfc_render127(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1127,_hoisted_3126)}var grid_default=export_helper_default(_sfc_main127,[["render",_sfc_render127],["__file","grid.vue"]]),_sfc_main128={name:"Guide"},_hoisted_1128={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2128=createBaseVNode("path",{fill:"currentColor",d:"M640 608h-64V416h64v192zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768h64zM384 608V416h64v192h-64zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32v160z"},null,-1),_hoisted_3127=createBaseVNode("path",{fill:"currentColor",d:"m220.8 256-71.232 80 71.168 80H768V256H220.8zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192zm678.784 496-71.104 80H266.816V608h547.2l71.168 80zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"},null,-1),_hoisted_437=[_hoisted_2128,_hoisted_3127];function _sfc_render128(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1128,_hoisted_437)}var guide_default=export_helper_default(_sfc_main128,[["render",_sfc_render128],["__file","guide.vue"]]),_sfc_main129={name:"Handbag"},_hoisted_1129={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_2129=createBaseVNode("path",{d:"M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01zM421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5zM832 896H192V320h128v128h64V320h256v128h64V320h128v576z",fill:"currentColor"},null,-1),_hoisted_3128=[_hoisted_2129];function _sfc_render129(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1129,_hoisted_3128)}var handbag_default=export_helper_default(_sfc_main129,[["render",_sfc_render129],["__file","handbag.vue"]]),_sfc_main130={name:"Headset"},_hoisted_1130={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2130=createBaseVNode("path",{fill:"currentColor",d:"M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848zM896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0V640zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0z"},null,-1),_hoisted_3129=[_hoisted_2130];function _sfc_render130(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1130,_hoisted_3129)}var headset_default=export_helper_default(_sfc_main130,[["render",_sfc_render130],["__file","headset.vue"]]),_sfc_main131={name:"HelpFilled"},_hoisted_1131={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2131=createBaseVNode("path",{fill:"currentColor",d:"M926.784 480H701.312A192.512 192.512 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480zm0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.512 192.512 0 0 0 701.312 544h225.472zM97.28 544h225.472A192.512 192.512 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.512 192.512 0 0 0 322.688 480H97.216z"},null,-1),_hoisted_3130=[_hoisted_2131];function _sfc_render131(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1131,_hoisted_3130)}var help_filled_default=export_helper_default(_sfc_main131,[["render",_sfc_render131],["__file","help-filled.vue"]]),_sfc_main132={name:"Help"},_hoisted_1132={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2132=createBaseVNode("path",{fill:"currentColor",d:"m759.936 805.248-90.944-91.008A254.912 254.912 0 0 1 512 768a254.912 254.912 0 0 1-156.992-53.76l-90.944 91.008A382.464 382.464 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752zm45.312-45.312A382.464 382.464 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512c0 59.136-20.096 113.6-53.76 156.992l91.008 90.944zm-45.312-541.184A382.464 382.464 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.912 254.912 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76l90.944-91.008zm-541.184 45.312A382.464 382.464 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.912 254.912 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992l-91.008-90.944zm417.28 394.496a194.56 194.56 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.232 191.232 0 0 0-67.968-146.56A191.296 191.296 0 0 0 512 320a191.232 191.232 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.232 191.232 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_3131=[_hoisted_2132];function _sfc_render132(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1132,_hoisted_3131)}var help_default=export_helper_default(_sfc_main132,[["render",_sfc_render132],["__file","help.vue"]]),_sfc_main133={name:"Hide"},_hoisted_1133={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2133=createBaseVNode("path",{d:"M876.8 156.8c0-9.6-3.2-16-9.6-22.4-6.4-6.4-12.8-9.6-22.4-9.6-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4 0 9.6 3.2 16 9.6 22.4 6.4 6.4 12.8 9.6 22.4 9.6 9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8 28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8 0-44.8 16-83.2 48-112 32-28.8 67.2-48 112-48 28.8 0 54.4 6.4 73.6 19.2L371.2 588.8ZM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6-28.8 48-80 105.6-153.6 172.8-73.6 67.2-172.8 108.8-284.8 115.2-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8 160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z",fill:"currentColor"},null,-1),_hoisted_3132=createBaseVNode("path",{d:"M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2 64 0 115.2-22.4 160-64 41.6-41.6 64-96 64-160 0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4 0 44.8-16 83.2-48 112-32 28.8-67.2 48-112 48Z",fill:"currentColor"},null,-1),_hoisted_438=[_hoisted_2133,_hoisted_3132];function _sfc_render133(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1133,_hoisted_438)}var hide_default=export_helper_default(_sfc_main133,[["render",_sfc_render133],["__file","hide.vue"]]),_sfc_main134={name:"Histogram"},_hoisted_1134={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2134=createBaseVNode("path",{fill:"currentColor",d:"M416 896V128h192v768H416zm-288 0V448h192v448H128zm576 0V320h192v576H704z"},null,-1),_hoisted_3133=[_hoisted_2134];function _sfc_render134(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1134,_hoisted_3133)}var histogram_default=export_helper_default(_sfc_main134,[["render",_sfc_render134],["__file","histogram.vue"]]),_sfc_main135={name:"HomeFilled"},_hoisted_1135={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2135=createBaseVNode("path",{fill:"currentColor",d:"M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"},null,-1),_hoisted_3134=[_hoisted_2135];function _sfc_render135(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1135,_hoisted_3134)}var home_filled_default=export_helper_default(_sfc_main135,[["render",_sfc_render135],["__file","home-filled.vue"]]),_sfc_main136={name:"HotWater"},_hoisted_1136={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2136=createBaseVNode("path",{fill:"currentColor",d:"M273.067 477.867h477.866V409.6H273.067v68.267zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2H273.067zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134zM512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133zM375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133zm273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133zM170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267z"},null,-1),_hoisted_3135=[_hoisted_2136];function _sfc_render136(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1136,_hoisted_3135)}var hot_water_default=export_helper_default(_sfc_main136,[["render",_sfc_render136],["__file","hot-water.vue"]]),_sfc_main137={name:"House"},_hoisted_1137={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2137=createBaseVNode("path",{fill:"currentColor",d:"M192 413.952V896h640V413.952L512 147.328 192 413.952zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576z"},null,-1),_hoisted_3136=[_hoisted_2137];function _sfc_render137(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1137,_hoisted_3136)}var house_default=export_helper_default(_sfc_main137,[["render",_sfc_render137],["__file","house.vue"]]),_sfc_main138={name:"IceCreamRound"},_hoisted_1138={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2138=createBaseVNode("path",{fill:"currentColor",d:"m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248L398.848 670.4zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0z"},null,-1),_hoisted_3137=[_hoisted_2138];function _sfc_render138(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1138,_hoisted_3137)}var ice_cream_round_default=export_helper_default(_sfc_main138,[["render",_sfc_render138],["__file","ice-cream-round.vue"]]),_sfc_main139={name:"IceCreamSquare"},_hoisted_1139={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2139=createBaseVNode("path",{fill:"currentColor",d:"M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h64zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96h-64zm-64 0h-64v160a32 32 0 1 0 64 0V704z"},null,-1),_hoisted_3138=[_hoisted_2139];function _sfc_render139(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1139,_hoisted_3138)}var ice_cream_square_default=export_helper_default(_sfc_main139,[["render",_sfc_render139],["__file","ice-cream-square.vue"]]),_sfc_main140={name:"IceCream"},_hoisted_1140={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2140=createBaseVNode("path",{fill:"currentColor",d:"M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.128 208.128 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448h.64zm64.256 0h286.208a144 144 0 0 0-286.208 0zm351.36 0h286.272a144 144 0 0 0-286.272 0zm-294.848 64 271.808 396.608L778.24 512H249.408zM511.68 352.64a207.872 207.872 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56z"},null,-1),_hoisted_3139=[_hoisted_2140];function _sfc_render140(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1140,_hoisted_3139)}var ice_cream_default=export_helper_default(_sfc_main140,[["render",_sfc_render140],["__file","ice-cream.vue"]]),_sfc_main141={name:"IceDrink"},_hoisted_1141={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2141=createBaseVNode("path",{fill:"currentColor",d:"M512 448v128h239.68l16.064-128H512zm-64 0H256.256l16.064 128H448V448zm64-255.36V384h247.744A256.128 256.128 0 0 0 512 192.64zm-64 8.064A256.448 256.448 0 0 0 264.256 384H448V200.704zm64-72.064A320.128 320.128 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.384 320.384 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32v32.64zM743.68 640H280.32l32.128 256h399.104l32.128-256z"},null,-1),_hoisted_3140=[_hoisted_2141];function _sfc_render141(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1141,_hoisted_3140)}var ice_drink_default=export_helper_default(_sfc_main141,[["render",_sfc_render141],["__file","ice-drink.vue"]]),_sfc_main142={name:"IceTea"},_hoisted_1142={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2142=createBaseVNode("path",{fill:"currentColor",d:"M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352zM264.064 256h495.872a256.128 256.128 0 0 0-495.872 0zm495.424 256H264.512l48 384h398.976l48-384zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32zm160 192h64v64h-64v-64zm192 64h64v64h-64v-64zm-128 64h64v64h-64v-64zm64-192h64v64h-64v-64z"},null,-1),_hoisted_3141=[_hoisted_2142];function _sfc_render142(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1142,_hoisted_3141)}var ice_tea_default=export_helper_default(_sfc_main142,[["render",_sfc_render142],["__file","ice-tea.vue"]]),_sfc_main143={name:"InfoFilled"},_hoisted_1143={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2143=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64zm67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344zM590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.992 12.992 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"},null,-1),_hoisted_3142=[_hoisted_2143];function _sfc_render143(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1143,_hoisted_3142)}var info_filled_default=export_helper_default(_sfc_main143,[["render",_sfc_render143],["__file","info-filled.vue"]]),_sfc_main144={name:"Iphone"},_hoisted_1144={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2144=createBaseVNode("path",{fill:"currentColor",d:"M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768H224zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64v544zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96H256zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0z"},null,-1),_hoisted_3143=[_hoisted_2144];function _sfc_render144(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1144,_hoisted_3143)}var iphone_default=export_helper_default(_sfc_main144,[["render",_sfc_render144],["__file","iphone.vue"]]),_sfc_main145={name:"Key"},_hoisted_1145={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2145=createBaseVNode("path",{fill:"currentColor",d:"M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064zM512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384z"},null,-1),_hoisted_3144=[_hoisted_2145];function _sfc_render145(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1145,_hoisted_3144)}var key_default=export_helper_default(_sfc_main145,[["render",_sfc_render145],["__file","key.vue"]]),_sfc_main146={name:"KnifeFork"},_hoisted_1146={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2146=createBaseVNode("path",{fill:"currentColor",d:"M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56zm384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256 21.312 81.152 32 177.152 32 288H640z"},null,-1),_hoisted_3145=[_hoisted_2146];function _sfc_render146(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1146,_hoisted_3145)}var knife_fork_default=export_helper_default(_sfc_main146,[["render",_sfc_render146],["__file","knife-fork.vue"]]),_sfc_main147={name:"Lightning"},_hoisted_1147={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2147=createBaseVNode("path",{fill:"currentColor",d:"M288 671.36v64.128A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"},null,-1),_hoisted_3146=createBaseVNode("path",{fill:"currentColor",d:"M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736H416z"},null,-1),_hoisted_439=[_hoisted_2147,_hoisted_3146];function _sfc_render147(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1147,_hoisted_439)}var lightning_default=export_helper_default(_sfc_main147,[["render",_sfc_render147],["__file","lightning.vue"]]),_sfc_main148={name:"Link"},_hoisted_1148={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2148=createBaseVNode("path",{fill:"currentColor",d:"M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496 45.248 45.248zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152 625.152 353.6z"},null,-1),_hoisted_3147=[_hoisted_2148];function _sfc_render148(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1148,_hoisted_3147)}var link_default=export_helper_default(_sfc_main148,[["render",_sfc_render148],["__file","link.vue"]]),_sfc_main149={name:"List"},_hoisted_1149={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2149=createBaseVNode("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160v64h384v-64zM288 512h448v-64H288v64zm0 256h448v-64H288v64zm96-576V96h256v96H384z"},null,-1),_hoisted_3148=[_hoisted_2149];function _sfc_render149(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1149,_hoisted_3148)}var list_default=export_helper_default(_sfc_main149,[["render",_sfc_render149],["__file","list.vue"]]),_sfc_main150={name:"Loading"},_hoisted_1150={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2150=createBaseVNode("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32zm448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32zm-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32zM195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0zm-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"},null,-1),_hoisted_3149=[_hoisted_2150];function _sfc_render150(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1150,_hoisted_3149)}var loading_default=export_helper_default(_sfc_main150,[["render",_sfc_render150],["__file","loading.vue"]]),_sfc_main151={name:"LocationFilled"},_hoisted_1151={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2151=createBaseVNode("path",{fill:"currentColor",d:"M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928zm0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6z"},null,-1),_hoisted_3150=[_hoisted_2151];function _sfc_render151(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1151,_hoisted_3150)}var location_filled_default=export_helper_default(_sfc_main151,[["render",_sfc_render151],["__file","location-filled.vue"]]),_sfc_main152={name:"LocationInformation"},_hoisted_1152={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2152=createBaseVNode("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),_hoisted_3151=createBaseVNode("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),_hoisted_440=createBaseVNode("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1),_hoisted_511=[_hoisted_2152,_hoisted_3151,_hoisted_440];function _sfc_render152(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1152,_hoisted_511)}var location_information_default=export_helper_default(_sfc_main152,[["render",_sfc_render152],["__file","location-information.vue"]]),_sfc_main153={name:"Location"},_hoisted_1153={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2153=createBaseVNode("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),_hoisted_3152=createBaseVNode("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1),_hoisted_441=[_hoisted_2153,_hoisted_3152];function _sfc_render153(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1153,_hoisted_441)}var location_default=export_helper_default(_sfc_main153,[["render",_sfc_render153],["__file","location.vue"]]),_sfc_main154={name:"Lock"},_hoisted_1154={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2154=createBaseVNode("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),_hoisted_3153=createBaseVNode("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm192-160v-64a192 192 0 1 0-384 0v64h384zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64z"},null,-1),_hoisted_442=[_hoisted_2154,_hoisted_3153];function _sfc_render154(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1154,_hoisted_442)}var lock_default=export_helper_default(_sfc_main154,[["render",_sfc_render154],["__file","lock.vue"]]),_sfc_main155={name:"Lollipop"},_hoisted_1155={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2155=createBaseVNode("path",{fill:"currentColor",d:"M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0h1.28zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696zm105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744zm-54.464-36.032a321.92 321.92 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"},null,-1),_hoisted_3154=[_hoisted_2155];function _sfc_render155(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1155,_hoisted_3154)}var lollipop_default=export_helper_default(_sfc_main155,[["render",_sfc_render155],["__file","lollipop.vue"]]),_sfc_main156={name:"MagicStick"},_hoisted_1156={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2156=createBaseVNode("path",{fill:"currentColor",d:"M512 64h64v192h-64V64zm0 576h64v192h-64V640zM160 480v-64h192v64H160zm576 0v-64h192v64H736zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248L657.152 606.4zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248-316.8 316.8zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248L702.4 334.848z"},null,-1),_hoisted_3155=[_hoisted_2156];function _sfc_render156(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1156,_hoisted_3155)}var magic_stick_default=export_helper_default(_sfc_main156,[["render",_sfc_render156],["__file","magic-stick.vue"]]),_sfc_main157={name:"Magnet"},_hoisted_1157={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2157=createBaseVNode("path",{fill:"currentColor",d:"M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64h128zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0z"},null,-1),_hoisted_3156=[_hoisted_2157];function _sfc_render157(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1157,_hoisted_3156)}var magnet_default=export_helper_default(_sfc_main157,[["render",_sfc_render157],["__file","magnet.vue"]]),_sfc_main158={name:"Male"},_hoisted_1158={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2158=createBaseVNode("path",{fill:"currentColor",d:"M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450zm0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5zm253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125z"},null,-1),_hoisted_3157=createBaseVNode("path",{fill:"currentColor",d:"M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125z"},null,-1),_hoisted_443=createBaseVNode("path",{fill:"currentColor",d:"M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"},null,-1),_hoisted_512=[_hoisted_2158,_hoisted_3157,_hoisted_443];function _sfc_render158(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1158,_hoisted_512)}var male_default=export_helper_default(_sfc_main158,[["render",_sfc_render158],["__file","male.vue"]]),_sfc_main159={name:"Management"},_hoisted_1159={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2159=createBaseVNode("path",{fill:"currentColor",d:"M576 128v288l96-96 96 96V128h128v768H320V128h256zm-448 0h128v768H128V128z"},null,-1),_hoisted_3158=[_hoisted_2159];function _sfc_render159(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1159,_hoisted_3158)}var management_default=export_helper_default(_sfc_main159,[["render",_sfc_render159],["__file","management.vue"]]),_sfc_main160={name:"MapLocation"},_hoisted_1160={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2160=createBaseVNode("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),_hoisted_3159=createBaseVNode("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256zm345.6 192L960 960H672v-64H352v64H64l102.4-256h691.2zm-68.928 0H235.328l-76.8 192h706.944l-76.8-192z"},null,-1),_hoisted_444=[_hoisted_2160,_hoisted_3159];function _sfc_render160(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1160,_hoisted_444)}var map_location_default=export_helper_default(_sfc_main160,[["render",_sfc_render160],["__file","map-location.vue"]]),_sfc_main161={name:"Medal"},_hoisted_1161={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2161=createBaseVNode("path",{fill:"currentColor",d:"M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),_hoisted_3160=createBaseVNode("path",{fill:"currentColor",d:"M576 128H448v200a286.72 286.72 0 0 1 64-8c19.52 0 40.832 2.688 64 8V128zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128H640zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92V128zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96-56.896 0-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64z"},null,-1),_hoisted_445=[_hoisted_2161,_hoisted_3160];function _sfc_render161(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1161,_hoisted_445)}var medal_default=export_helper_default(_sfc_main161,[["render",_sfc_render161],["__file","medal.vue"]]),_sfc_main162={name:"Memo"},_hoisted_1162={version:"1.1",id:"a",xmlns:"http://www.w3.org/2000/svg",x:"0",y:"0",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_2162=createBaseVNode("path",{d:"M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z",fill:"currentColor"},null,-1),_hoisted_3161=createBaseVNode("path",{d:"M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01zM192 896V128h96v768h-96zm640 0H352V128h480v768z",fill:"currentColor"},null,-1),_hoisted_446=createBaseVNode("path",{d:"M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32zM480 704h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z",fill:"currentColor"},null,-1),_hoisted_513=[_hoisted_2162,_hoisted_3161,_hoisted_446];function _sfc_render162(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1162,_hoisted_513)}var memo_default=export_helper_default(_sfc_main162,[["render",_sfc_render162],["__file","memo.vue"]]),_sfc_main163={name:"Menu"},_hoisted_1163={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2163=createBaseVNode("path",{fill:"currentColor",d:"M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H608zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H608z"},null,-1),_hoisted_3162=[_hoisted_2163];function _sfc_render163(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1163,_hoisted_3162)}var menu_default=export_helper_default(_sfc_main163,[["render",_sfc_render163],["__file","menu.vue"]]),_sfc_main164={name:"MessageBox"},_hoisted_1164={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2164=createBaseVNode("path",{fill:"currentColor",d:"M288 384h448v64H288v-64zm96-128h256v64H384v-64zM131.456 512H384v128h256V512h252.544L721.856 192H302.144L131.456 512zM896 576H704v128H320V576H128v256h768V576zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128z"},null,-1),_hoisted_3163=[_hoisted_2164];function _sfc_render164(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1164,_hoisted_3163)}var message_box_default=export_helper_default(_sfc_main164,[["render",_sfc_render164],["__file","message-box.vue"]]),_sfc_main165={name:"Message"},_hoisted_1165={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2165=createBaseVNode("path",{fill:"currentColor",d:"M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224H128zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64z"},null,-1),_hoisted_3164=createBaseVNode("path",{fill:"currentColor",d:"M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224h784zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224H205.056z"},null,-1),_hoisted_447=[_hoisted_2165,_hoisted_3164];function _sfc_render165(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1165,_hoisted_447)}var message_default=export_helper_default(_sfc_main165,[["render",_sfc_render165],["__file","message.vue"]]),_sfc_main166={name:"Mic"},_hoisted_1166={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2166=createBaseVNode("path",{fill:"currentColor",d:"M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64h96zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128h-96z"},null,-1),_hoisted_3165=[_hoisted_2166];function _sfc_render166(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1166,_hoisted_3165)}var mic_default=export_helper_default(_sfc_main166,[["render",_sfc_render166],["__file","mic.vue"]]),_sfc_main167={name:"Microphone"},_hoisted_1167={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2167=createBaseVNode("path",{fill:"currentColor",d:"M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128zm0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64zm-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64z"},null,-1),_hoisted_3166=[_hoisted_2167];function _sfc_render167(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1167,_hoisted_3166)}var microphone_default=export_helper_default(_sfc_main167,[["render",_sfc_render167],["__file","microphone.vue"]]),_sfc_main168={name:"MilkTea"},_hoisted_1168={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2168=createBaseVNode("path",{fill:"currentColor",d:"M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128h192zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320H276.48zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64zm493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12z"},null,-1),_hoisted_3167=[_hoisted_2168];function _sfc_render168(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1168,_hoisted_3167)}var milk_tea_default=export_helper_default(_sfc_main168,[["render",_sfc_render168],["__file","milk-tea.vue"]]),_sfc_main169={name:"Minus"},_hoisted_1169={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2169=createBaseVNode("path",{fill:"currentColor",d:"M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64z"},null,-1),_hoisted_3168=[_hoisted_2169];function _sfc_render169(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1169,_hoisted_3168)}var minus_default=export_helper_default(_sfc_main169,[["render",_sfc_render169],["__file","minus.vue"]]),_sfc_main170={name:"Money"},_hoisted_1170={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2170=createBaseVNode("path",{fill:"currentColor",d:"M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640h64z"},null,-1),_hoisted_3169=createBaseVNode("path",{fill:"currentColor",d:"M768 192H128v448h640V192zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.056 29.056 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"},null,-1),_hoisted_448=createBaseVNode("path",{fill:"currentColor",d:"M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320zm0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1),_hoisted_514=[_hoisted_2170,_hoisted_3169,_hoisted_448];function _sfc_render170(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1170,_hoisted_514)}var money_default=export_helper_default(_sfc_main170,[["render",_sfc_render170],["__file","money.vue"]]),_sfc_main171={name:"Monitor"},_hoisted_1171={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2171=createBaseVNode("path",{fill:"currentColor",d:"M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H544zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H192z"},null,-1),_hoisted_3170=[_hoisted_2171];function _sfc_render171(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1171,_hoisted_3170)}var monitor_default=export_helper_default(_sfc_main171,[["render",_sfc_render171],["__file","monitor.vue"]]),_sfc_main172={name:"MoonNight"},_hoisted_1172={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2172=createBaseVNode("path",{fill:"currentColor",d:"M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.256 448.256 0 0 1 384 512zM171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"},null,-1),_hoisted_3171=createBaseVNode("path",{fill:"currentColor",d:"M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"},null,-1),_hoisted_449=[_hoisted_2172,_hoisted_3171];function _sfc_render172(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1172,_hoisted_449)}var moon_night_default=export_helper_default(_sfc_main172,[["render",_sfc_render172],["__file","moon-night.vue"]]),_sfc_main173={name:"Moon"},_hoisted_1173={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2173=createBaseVNode("path",{fill:"currentColor",d:"M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 390.592 390.592 0 0 0-17.408 16.384zm181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696z"},null,-1),_hoisted_3172=[_hoisted_2173];function _sfc_render173(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1173,_hoisted_3172)}var moon_default=export_helper_default(_sfc_main173,[["render",_sfc_render173],["__file","moon.vue"]]),_sfc_main174={name:"MoreFilled"},_hoisted_1174={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2174=createBaseVNode("path",{fill:"currentColor",d:"M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224z"},null,-1),_hoisted_3173=[_hoisted_2174];function _sfc_render174(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1174,_hoisted_3173)}var more_filled_default=export_helper_default(_sfc_main174,[["render",_sfc_render174],["__file","more-filled.vue"]]),_sfc_main175={name:"More"},_hoisted_1175={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2175=createBaseVNode("path",{fill:"currentColor",d:"M176 416a112 112 0 1 0 0 224 112 112 0 0 0 0-224m0 64a48 48 0 1 1 0 96 48 48 0 0 1 0-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"},null,-1),_hoisted_3174=[_hoisted_2175];function _sfc_render175(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1175,_hoisted_3174)}var more_default=export_helper_default(_sfc_main175,[["render",_sfc_render175],["__file","more.vue"]]),_sfc_main176={name:"MostlyCloudy"},_hoisted_1176={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2176=createBaseVNode("path",{fill:"currentColor",d:"M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.808 207.808 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048zm15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.808 271.808 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72z"},null,-1),_hoisted_3175=[_hoisted_2176];function _sfc_render176(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1176,_hoisted_3175)}var mostly_cloudy_default=export_helper_default(_sfc_main176,[["render",_sfc_render176],["__file","mostly-cloudy.vue"]]),_sfc_main177={name:"Mouse"},_hoisted_1177={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2177=createBaseVNode("path",{fill:"currentColor",d:"M438.144 256c-68.352 0-92.736 4.672-117.76 18.112-20.096 10.752-35.52 26.176-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76 10.752 20.096 26.176 35.52 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112 20.096-10.752 35.52-26.176 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.464 110.464 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256H438.144zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.464 174.464 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.464 174.464 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.464 174.464 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"},null,-1),_hoisted_3176=createBaseVNode("path",{fill:"currentColor",d:"M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32zm32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96v64z"},null,-1),_hoisted_450=[_hoisted_2177,_hoisted_3176];function _sfc_render177(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1177,_hoisted_450)}var mouse_default=export_helper_default(_sfc_main177,[["render",_sfc_render177],["__file","mouse.vue"]]),_sfc_main178={name:"Mug"},_hoisted_1178={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2178=createBaseVNode("path",{fill:"currentColor",d:"M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64zm64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32H800z"},null,-1),_hoisted_3177=[_hoisted_2178];function _sfc_render178(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1178,_hoisted_3177)}var mug_default=export_helper_default(_sfc_main178,[["render",_sfc_render178],["__file","mug.vue"]]),_sfc_main179={name:"MuteNotification"},_hoisted_1179={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2179=createBaseVNode("path",{fill:"currentColor",d:"m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64H241.216zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.128 320.128 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.552 319.552 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0z"},null,-1),_hoisted_3178=createBaseVNode("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1),_hoisted_451=[_hoisted_2179,_hoisted_3178];function _sfc_render179(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1179,_hoisted_451)}var mute_notification_default=export_helper_default(_sfc_main179,[["render",_sfc_render179],["__file","mute-notification.vue"]]),_sfc_main180={name:"Mute"},_hoisted_1180={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2180=createBaseVNode("path",{fill:"currentColor",d:"m412.16 592.128-45.44 45.44A191.232 191.232 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128zm51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528l47.808-47.808zM314.88 779.968l46.144-46.08A222.976 222.976 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032zM266.752 737.6A286.976 286.976 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288L266.752 737.6z"},null,-1),_hoisted_3179=createBaseVNode("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1),_hoisted_452=[_hoisted_2180,_hoisted_3179];function _sfc_render180(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1180,_hoisted_452)}var mute_default=export_helper_default(_sfc_main180,[["render",_sfc_render180],["__file","mute.vue"]]),_sfc_main181={name:"NoSmoking"},_hoisted_1181={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2181=createBaseVNode("path",{fill:"currentColor",d:"M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256l-64 64zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744l64-64zM768 576v128h128V576H768zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1),_hoisted_3180=[_hoisted_2181];function _sfc_render181(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1181,_hoisted_3180)}var no_smoking_default=export_helper_default(_sfc_main181,[["render",_sfc_render181],["__file","no-smoking.vue"]]),_sfc_main182={name:"Notebook"},_hoisted_1182={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2182=createBaseVNode("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),_hoisted_3181=createBaseVNode("path",{fill:"currentColor",d:"M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1),_hoisted_453=[_hoisted_2182,_hoisted_3181];function _sfc_render182(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1182,_hoisted_453)}var notebook_default=export_helper_default(_sfc_main182,[["render",_sfc_render182],["__file","notebook.vue"]]),_sfc_main183={name:"Notification"},_hoisted_1183={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2183=createBaseVNode("path",{fill:"currentColor",d:"M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128h256z"},null,-1),_hoisted_3182=createBaseVNode("path",{fill:"currentColor",d:"M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256zm0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384z"},null,-1),_hoisted_454=[_hoisted_2183,_hoisted_3182];function _sfc_render183(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1183,_hoisted_454)}var notification_default=export_helper_default(_sfc_main183,[["render",_sfc_render183],["__file","notification.vue"]]),_sfc_main184={name:"Odometer"},_hoisted_1184={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2184=createBaseVNode("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_3183=createBaseVNode("path",{fill:"currentColor",d:"M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0z"},null,-1),_hoisted_455=createBaseVNode("path",{fill:"currentColor",d:"M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928z"},null,-1),_hoisted_515=[_hoisted_2184,_hoisted_3183,_hoisted_455];function _sfc_render184(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1184,_hoisted_515)}var odometer_default=export_helper_default(_sfc_main184,[["render",_sfc_render184],["__file","odometer.vue"]]),_sfc_main185={name:"OfficeBuilding"},_hoisted_1185={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2185=createBaseVNode("path",{fill:"currentColor",d:"M192 128v704h384V128H192zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),_hoisted_3184=createBaseVNode("path",{fill:"currentColor",d:"M256 256h256v64H256v-64zm0 192h256v64H256v-64zm0 192h256v64H256v-64zm384-128h128v64H640v-64zm0 128h128v64H640v-64zM64 832h896v64H64v-64z"},null,-1),_hoisted_456=createBaseVNode("path",{fill:"currentColor",d:"M640 384v448h192V384H640zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32z"},null,-1),_hoisted_516=[_hoisted_2185,_hoisted_3184,_hoisted_456];function _sfc_render185(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1185,_hoisted_516)}var office_building_default=export_helper_default(_sfc_main185,[["render",_sfc_render185],["__file","office-building.vue"]]),_sfc_main186={name:"Open"},_hoisted_1186={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2186=createBaseVNode("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),_hoisted_3185=createBaseVNode("path",{fill:"currentColor",d:"M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1),_hoisted_457=[_hoisted_2186,_hoisted_3185];function _sfc_render186(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1186,_hoisted_457)}var open_default=export_helper_default(_sfc_main186,[["render",_sfc_render186],["__file","open.vue"]]),_sfc_main187={name:"Operation"},_hoisted_1187={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2187=createBaseVNode("path",{fill:"currentColor",d:"M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64h261.44zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64h453.44zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64h133.44z"},null,-1),_hoisted_3186=[_hoisted_2187];function _sfc_render187(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1187,_hoisted_3186)}var operation_default=export_helper_default(_sfc_main187,[["render",_sfc_render187],["__file","operation.vue"]]),_sfc_main188={name:"Opportunity"},_hoisted_1188={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2188=createBaseVNode("path",{fill:"currentColor",d:"M384 960v-64h192.064v64H384zm448-544a350.656 350.656 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.552 351.552 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416zm-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288h64z"},null,-1),_hoisted_3187=[_hoisted_2188];function _sfc_render188(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1188,_hoisted_3187)}var opportunity_default=export_helper_default(_sfc_main188,[["render",_sfc_render188],["__file","opportunity.vue"]]),_sfc_main189={name:"Orange"},_hoisted_1189={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2189=createBaseVNode("path",{fill:"currentColor",d:"M544 894.72a382.336 382.336 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.336 382.336 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024l182.976 182.912zM894.656 480a382.336 382.336 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024h258.688zm-134.72-261.248A382.336 382.336 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696l182.912-182.976zM480 129.344a382.336 382.336 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696V129.344zm-261.248 134.72A382.336 382.336 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024L218.752 264.064zM129.344 544a382.336 382.336 0 0 0 89.408 215.936l182.976-182.912A127.232 127.232 0 0 1 388.032 544H129.344zm134.72 261.248A382.336 382.336 0 0 0 480 894.656V635.968a127.232 127.232 0 0 1-33.024-13.696L264.064 805.248zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128z"},null,-1),_hoisted_3188=[_hoisted_2189];function _sfc_render189(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1189,_hoisted_3188)}var orange_default=export_helper_default(_sfc_main189,[["render",_sfc_render189],["__file","orange.vue"]]),_sfc_main190={name:"Paperclip"},_hoisted_1190={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2190=createBaseVNode("path",{fill:"currentColor",d:"M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744l294.144-294.208z"},null,-1),_hoisted_3189=[_hoisted_2190];function _sfc_render190(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1190,_hoisted_3189)}var paperclip_default=export_helper_default(_sfc_main190,[["render",_sfc_render190],["__file","paperclip.vue"]]),_sfc_main191={name:"PartlyCloudy"},_hoisted_1191={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2191=createBaseVNode("path",{fill:"currentColor",d:"M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1),_hoisted_3190=createBaseVNode("path",{fill:"currentColor",d:"M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6003.84 6003.84 0 0 0-49.28 41.408z"},null,-1),_hoisted_458=[_hoisted_2191,_hoisted_3190];function _sfc_render191(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1191,_hoisted_458)}var partly_cloudy_default=export_helper_default(_sfc_main191,[["render",_sfc_render191],["__file","partly-cloudy.vue"]]),_sfc_main192={name:"Pear"},_hoisted_1192={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2192=createBaseVNode("path",{fill:"currentColor",d:"M542.336 258.816a443.255 443.255 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.688 162.688 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.688 162.688 0 0 0-130.112-133.12zm-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a316.608 316.608 0 0 0-9.792 15.104 226.688 226.688 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"},null,-1),_hoisted_3191=[_hoisted_2192];function _sfc_render192(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1192,_hoisted_3191)}var pear_default=export_helper_default(_sfc_main192,[["render",_sfc_render192],["__file","pear.vue"]]),_sfc_main193={name:"PhoneFilled"},_hoisted_1193={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2193=createBaseVNode("path",{fill:"currentColor",d:"M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048z"},null,-1),_hoisted_3192=[_hoisted_2193];function _sfc_render193(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1193,_hoisted_3192)}var phone_filled_default=export_helper_default(_sfc_main193,[["render",_sfc_render193],["__file","phone-filled.vue"]]),_sfc_main194={name:"Phone"},_hoisted_1194={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2194=createBaseVNode("path",{fill:"currentColor",d:"M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472L139.84 402.304zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192zm0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384z"},null,-1),_hoisted_3193=[_hoisted_2194];function _sfc_render194(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1194,_hoisted_3193)}var phone_default=export_helper_default(_sfc_main194,[["render",_sfc_render194],["__file","phone.vue"]]),_sfc_main195={name:"PictureFilled"},_hoisted_1195={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2195=createBaseVNode("path",{fill:"currentColor",d:"M96 896a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h832a32 32 0 0 1 32 32v704a32 32 0 0 1-32 32H96zm315.52-228.48-68.928-68.928a32 32 0 0 0-45.248 0L128 768.064h778.688l-242.112-290.56a32 32 0 0 0-49.216 0L458.752 665.408a32 32 0 0 1-47.232 2.112zM256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384z"},null,-1),_hoisted_3194=[_hoisted_2195];function _sfc_render195(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1195,_hoisted_3194)}var picture_filled_default=export_helper_default(_sfc_main195,[["render",_sfc_render195],["__file","picture-filled.vue"]]),_sfc_main196={name:"PictureRounded"},_hoisted_1196={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2196=createBaseVNode("path",{fill:"currentColor",d:"M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768zm0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896z"},null,-1),_hoisted_3195=createBaseVNode("path",{fill:"currentColor",d:"M640 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"},null,-1),_hoisted_459=[_hoisted_2196,_hoisted_3195];function _sfc_render196(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1196,_hoisted_459)}var picture_rounded_default=export_helper_default(_sfc_main196,[["render",_sfc_render196],["__file","picture-rounded.vue"]]),_sfc_main197={name:"Picture"},_hoisted_1197={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2197=createBaseVNode("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),_hoisted_3196=createBaseVNode("path",{fill:"currentColor",d:"M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952L185.408 876.992z"},null,-1),_hoisted_460=[_hoisted_2197,_hoisted_3196];function _sfc_render197(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1197,_hoisted_460)}var picture_default=export_helper_default(_sfc_main197,[["render",_sfc_render197],["__file","picture.vue"]]),_sfc_main198={name:"PieChart"},_hoisted_1198={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2198=createBaseVNode("path",{fill:"currentColor",d:"M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.128 384.128 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.128 448.128 0 0 1 448 68.48z"},null,-1),_hoisted_3197=createBaseVNode("path",{fill:"currentColor",d:"M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28zM512 64V33.152A448 448 0 0 1 990.848 512H512V64z"},null,-1),_hoisted_461=[_hoisted_2198,_hoisted_3197];function _sfc_render198(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1198,_hoisted_461)}var pie_chart_default=export_helper_default(_sfc_main198,[["render",_sfc_render198],["__file","pie-chart.vue"]]),_sfc_main199={name:"Place"},_hoisted_1199={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2199=createBaseVNode("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),_hoisted_3198=createBaseVNode("path",{fill:"currentColor",d:"M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32z"},null,-1),_hoisted_462=createBaseVNode("path",{fill:"currentColor",d:"M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912z"},null,-1),_hoisted_517=[_hoisted_2199,_hoisted_3198,_hoisted_462];function _sfc_render199(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1199,_hoisted_517)}var place_default=export_helper_default(_sfc_main199,[["render",_sfc_render199],["__file","place.vue"]]),_sfc_main200={name:"Platform"},_hoisted_1200={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2200=createBaseVNode("path",{fill:"currentColor",d:"M448 832v-64h128v64h192v64H256v-64h192zM128 704V128h768v576H128z"},null,-1),_hoisted_3199=[_hoisted_2200];function _sfc_render200(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1200,_hoisted_3199)}var platform_default=export_helper_default(_sfc_main200,[["render",_sfc_render200],["__file","platform.vue"]]),_sfc_main201={name:"Plus"},_hoisted_1201={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2201=createBaseVNode("path",{fill:"currentColor",d:"M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64h352z"},null,-1),_hoisted_3200=[_hoisted_2201];function _sfc_render201(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1201,_hoisted_3200)}var plus_default=export_helper_default(_sfc_main201,[["render",_sfc_render201],["__file","plus.vue"]]),_sfc_main202={name:"Pointer"},_hoisted_1202={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2202=createBaseVNode("path",{fill:"currentColor",d:"M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.272 94.272 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128zM359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.272 158.272 0 0 1 185.984 8.32L359.04 556.8z"},null,-1),_hoisted_3201=[_hoisted_2202];function _sfc_render202(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1202,_hoisted_3201)}var pointer_default=export_helper_default(_sfc_main202,[["render",_sfc_render202],["__file","pointer.vue"]]),_sfc_main203={name:"Position"},_hoisted_1203={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2203=createBaseVNode("path",{fill:"currentColor",d:"m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88 249.6 417.088zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992l-391.424-52.736z"},null,-1),_hoisted_3202=[_hoisted_2203];function _sfc_render203(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1203,_hoisted_3202)}var position_default=export_helper_default(_sfc_main203,[["render",_sfc_render203],["__file","position.vue"]]),_sfc_main204={name:"Postcard"},_hoisted_1204={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2204=createBaseVNode("path",{fill:"currentColor",d:"M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32H160zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96z"},null,-1),_hoisted_3203=createBaseVNode("path",{fill:"currentColor",d:"M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128zM288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32zm0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),_hoisted_463=[_hoisted_2204,_hoisted_3203];function _sfc_render204(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1204,_hoisted_463)}var postcard_default=export_helper_default(_sfc_main204,[["render",_sfc_render204],["__file","postcard.vue"]]),_sfc_main205={name:"Pouring"},_hoisted_1205={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2205=createBaseVNode("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32z"},null,-1),_hoisted_3204=[_hoisted_2205];function _sfc_render205(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1205,_hoisted_3204)}var pouring_default=export_helper_default(_sfc_main205,[["render",_sfc_render205],["__file","pouring.vue"]]),_sfc_main206={name:"Present"},_hoisted_1206={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2206=createBaseVNode("path",{fill:"currentColor",d:"M480 896V640H192v-64h288V320H192v576h288zm64 0h288V320H544v256h288v64H544v256zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V256z"},null,-1),_hoisted_3205=createBaseVNode("path",{fill:"currentColor",d:"M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1),_hoisted_464=createBaseVNode("path",{fill:"currentColor",d:"M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),_hoisted_518=createBaseVNode("path",{fill:"currentColor",d:"M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),_hoisted_6$4=[_hoisted_2206,_hoisted_3205,_hoisted_464,_hoisted_518];function _sfc_render206(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1206,_hoisted_6$4)}var present_default=export_helper_default(_sfc_main206,[["render",_sfc_render206],["__file","present.vue"]]),_sfc_main207={name:"PriceTag"},_hoisted_1207={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2207=createBaseVNode("path",{fill:"currentColor",d:"M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),_hoisted_3206=createBaseVNode("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),_hoisted_465=[_hoisted_2207,_hoisted_3206];function _sfc_render207(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1207,_hoisted_465)}var price_tag_default=export_helper_default(_sfc_main207,[["render",_sfc_render207],["__file","price-tag.vue"]]),_sfc_main208={name:"Printer"},_hoisted_1208={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2208=createBaseVNode("path",{fill:"currentColor",d:"M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256V768zm64-192v320h384V576H320zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.296 23.296 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.296 23.296 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704h128zm64-448h384V128H320v128zm-64 128h64v64h-64v-64zm128 0h64v64h-64v-64z"},null,-1),_hoisted_3207=[_hoisted_2208];function _sfc_render208(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1208,_hoisted_3207)}var printer_default=export_helper_default(_sfc_main208,[["render",_sfc_render208],["__file","printer.vue"]]),_sfc_main209={name:"Promotion"},_hoisted_1209={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2209=createBaseVNode("path",{fill:"currentColor",d:"m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472 64 448zm256 512V657.024L512 768 320 960z"},null,-1),_hoisted_3208=[_hoisted_2209];function _sfc_render209(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1209,_hoisted_3208)}var promotion_default=export_helper_default(_sfc_main209,[["render",_sfc_render209],["__file","promotion.vue"]]),_sfc_main210={name:"QuartzWatch"},_hoisted_1210={version:"1.1",id:"a",xmlns:"http://www.w3.org/2000/svg",x:"0",y:"0",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_2210=createBaseVNode("path",{d:"M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51-8.67.32-16.17 3.66-22.5 10.02-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5c3.01-11.65.51-22.15-7.49-31.49v-.01zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.67 8.99-23.01zM390.53 429.51c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01-.32-8.67-3.66-16.16-10.02-22.5-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01 3.35 11.99 10.85 19.49 22.5 22.5zM633.47 429.51c11.67-3.03 19.01-10.37 22.02-22.02 3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5c-6.36 6.34-9.7 13.84-10.02 22.5-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49zM512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99zM695.01 488.99c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01z",fill:"currentColor"},null,-1),_hoisted_3209=createBaseVNode("path",{d:"M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5zM416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68V128zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68V896zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768z",fill:"currentColor"},null,-1),_hoisted_466=createBaseVNode("path",{d:"M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01 0 9.35 3 17.02 8.99 23.01 6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01 0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99zM624.99 593.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02z",fill:"currentColor"},null,-1),_hoisted_519=[_hoisted_2210,_hoisted_3209,_hoisted_466];function _sfc_render210(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1210,_hoisted_519)}var quartz_watch_default=export_helper_default(_sfc_main210,[["render",_sfc_render210],["__file","quartz-watch.vue"]]),_sfc_main211={name:"QuestionFilled"},_hoisted_1211={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2211=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm23.744 191.488c-52.096 0-92.928 14.784-123.2 44.352-30.976 29.568-45.76 70.4-45.76 122.496h80.256c0-29.568 5.632-52.8 17.6-68.992 13.376-19.712 35.2-28.864 66.176-28.864 23.936 0 42.944 6.336 56.32 19.712 12.672 13.376 19.712 31.68 19.712 54.912 0 17.6-6.336 34.496-19.008 49.984l-8.448 9.856c-45.76 40.832-73.216 70.4-82.368 89.408-9.856 19.008-14.08 42.24-14.08 68.992v9.856h80.96v-9.856c0-16.896 3.52-31.68 10.56-45.76 6.336-12.672 15.488-24.64 28.16-35.2 33.792-29.568 54.208-48.576 60.544-55.616 16.896-22.528 26.048-51.392 26.048-86.592 0-42.944-14.08-76.736-42.24-101.376-28.16-25.344-65.472-37.312-111.232-37.312zm-12.672 406.208a54.272 54.272 0 0 0-38.72 14.784 49.408 49.408 0 0 0-15.488 38.016c0 15.488 4.928 28.16 15.488 38.016A54.848 54.848 0 0 0 523.072 768c15.488 0 28.16-4.928 38.72-14.784a51.52 51.52 0 0 0 16.192-38.72 51.968 51.968 0 0 0-15.488-38.016 55.936 55.936 0 0 0-39.424-14.784z"},null,-1),_hoisted_3210=[_hoisted_2211];function _sfc_render211(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1211,_hoisted_3210)}var question_filled_default=export_helper_default(_sfc_main211,[["render",_sfc_render211],["__file","question-filled.vue"]]),_sfc_main212={name:"Rank"},_hoisted_1212={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2212=createBaseVNode("path",{fill:"currentColor",d:"m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544H186.496z"},null,-1),_hoisted_3211=[_hoisted_2212];function _sfc_render212(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1212,_hoisted_3211)}var rank_default=export_helper_default(_sfc_main212,[["render",_sfc_render212],["__file","rank.vue"]]),_sfc_main213={name:"ReadingLamp"},_hoisted_1213={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2213=createBaseVNode("path",{fill:"currentColor",d:"M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm-44.672-768-99.52 448h608.384l-99.52-448H307.328zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"},null,-1),_hoisted_3212=createBaseVNode("path",{fill:"currentColor",d:"M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32zm-192-.064h64V960h-64z"},null,-1),_hoisted_467=[_hoisted_2213,_hoisted_3212];function _sfc_render213(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1213,_hoisted_467)}var reading_lamp_default=export_helper_default(_sfc_main213,[["render",_sfc_render213],["__file","reading-lamp.vue"]]),_sfc_main214={name:"Reading"},_hoisted_1214={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2214=createBaseVNode("path",{fill:"currentColor",d:"m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72l384 54.848zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36z"},null,-1),_hoisted_3213=createBaseVNode("path",{fill:"currentColor",d:"M480 192h64v704h-64z"},null,-1),_hoisted_468=[_hoisted_2214,_hoisted_3213];function _sfc_render214(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1214,_hoisted_468)}var reading_default=export_helper_default(_sfc_main214,[["render",_sfc_render214],["__file","reading.vue"]]),_sfc_main215={name:"RefreshLeft"},_hoisted_1215={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2215=createBaseVNode("path",{fill:"currentColor",d:"M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88 384 384 0 0 1-383.936 384 384 384 0 0 1-384-384h64a320 320 0 1 0 640 0 320 320 0 0 0-555.712-216.448z"},null,-1),_hoisted_3214=[_hoisted_2215];function _sfc_render215(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1215,_hoisted_3214)}var refresh_left_default=export_helper_default(_sfc_main215,[["render",_sfc_render215],["__file","refresh-left.vue"]]),_sfc_main216={name:"RefreshRight"},_hoisted_1216={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2216=createBaseVNode("path",{fill:"currentColor",d:"M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384 384 384 0 0 1-384-384 384 384 0 0 1 643.712-282.88z"},null,-1),_hoisted_3215=[_hoisted_2216];function _sfc_render216(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1216,_hoisted_3215)}var refresh_right_default=export_helper_default(_sfc_main216,[["render",_sfc_render216],["__file","refresh-right.vue"]]),_sfc_main217={name:"Refresh"},_hoisted_1217={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2217=createBaseVNode("path",{fill:"currentColor",d:"M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"},null,-1),_hoisted_3216=[_hoisted_2217];function _sfc_render217(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1217,_hoisted_3216)}var refresh_default=export_helper_default(_sfc_main217,[["render",_sfc_render217],["__file","refresh.vue"]]),_sfc_main218={name:"Refrigerator"},_hoisted_1218={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2218=createBaseVNode("path",{fill:"currentColor",d:"M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32v288zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512H256zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96zm32 224h64v96h-64v-96zm0 288h64v96h-64v-96z"},null,-1),_hoisted_3217=[_hoisted_2218];function _sfc_render218(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1218,_hoisted_3217)}var refrigerator_default=export_helper_default(_sfc_main218,[["render",_sfc_render218],["__file","refrigerator.vue"]]),_sfc_main219={name:"RemoveFilled"},_hoisted_1219={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2219=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zM288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512z"},null,-1),_hoisted_3218=[_hoisted_2219];function _sfc_render219(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1219,_hoisted_3218)}var remove_filled_default=export_helper_default(_sfc_main219,[["render",_sfc_render219],["__file","remove-filled.vue"]]),_sfc_main220={name:"Remove"},_hoisted_1220={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2220=createBaseVNode("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),_hoisted_3219=createBaseVNode("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_469=[_hoisted_2220,_hoisted_3219];function _sfc_render220(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1220,_hoisted_469)}var remove_default=export_helper_default(_sfc_main220,[["render",_sfc_render220],["__file","remove.vue"]]),_sfc_main221={name:"Right"},_hoisted_1221={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2221=createBaseVNode("path",{fill:"currentColor",d:"M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312L754.752 480z"},null,-1),_hoisted_3220=[_hoisted_2221];function _sfc_render221(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1221,_hoisted_3220)}var right_default=export_helper_default(_sfc_main221,[["render",_sfc_render221],["__file","right.vue"]]),_sfc_main222={name:"ScaleToOriginal"},_hoisted_1222={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2222=createBaseVNode("path",{fill:"currentColor",d:"M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zM512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412zM512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512z"},null,-1),_hoisted_3221=[_hoisted_2222];function _sfc_render222(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1222,_hoisted_3221)}var scale_to_original_default=export_helper_default(_sfc_main222,[["render",_sfc_render222],["__file","scale-to-original.vue"]]),_sfc_main223={name:"School"},_hoisted_1223={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2223=createBaseVNode("path",{fill:"currentColor",d:"M224 128v704h576V128H224zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),_hoisted_3222=createBaseVNode("path",{fill:"currentColor",d:"M64 832h896v64H64zm256-640h128v96H320z"},null,-1),_hoisted_470=createBaseVNode("path",{fill:"currentColor",d:"M384 832h256v-64a128 128 0 1 0-256 0v64zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192zM320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"},null,-1),_hoisted_520=[_hoisted_2223,_hoisted_3222,_hoisted_470];function _sfc_render223(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1223,_hoisted_520)}var school_default=export_helper_default(_sfc_main223,[["render",_sfc_render223],["__file","school.vue"]]),_sfc_main224={name:"Scissor"},_hoisted_1224={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2224=createBaseVNode("path",{fill:"currentColor",d:"m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248z"},null,-1),_hoisted_3223=[_hoisted_2224];function _sfc_render224(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1224,_hoisted_3223)}var scissor_default=export_helper_default(_sfc_main224,[["render",_sfc_render224],["__file","scissor.vue"]]),_sfc_main225={name:"Search"},_hoisted_1225={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2225=createBaseVNode("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704z"},null,-1),_hoisted_3224=[_hoisted_2225];function _sfc_render225(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1225,_hoisted_3224)}var search_default=export_helper_default(_sfc_main225,[["render",_sfc_render225],["__file","search.vue"]]),_sfc_main226={name:"Select"},_hoisted_1226={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2226=createBaseVNode("path",{fill:"currentColor",d:"M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"},null,-1),_hoisted_3225=[_hoisted_2226];function _sfc_render226(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1226,_hoisted_3225)}var select_default=export_helper_default(_sfc_main226,[["render",_sfc_render226],["__file","select.vue"]]),_sfc_main227={name:"Sell"},_hoisted_1227={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2227=createBaseVNode("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248z"},null,-1),_hoisted_3226=[_hoisted_2227];function _sfc_render227(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1227,_hoisted_3226)}var sell_default=export_helper_default(_sfc_main227,[["render",_sfc_render227],["__file","sell.vue"]]),_sfc_main228={name:"SemiSelect"},_hoisted_1228={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2228=createBaseVNode("path",{fill:"currentColor",d:"M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64z"},null,-1),_hoisted_3227=[_hoisted_2228];function _sfc_render228(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1228,_hoisted_3227)}var semi_select_default=export_helper_default(_sfc_main228,[["render",_sfc_render228],["__file","semi-select.vue"]]),_sfc_main229={name:"Service"},_hoisted_1229={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2229=createBaseVNode("path",{fill:"currentColor",d:"M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.064 192.064 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193.235 193.235 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0zM256 448a128 128 0 1 0 0 256V448zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128z"},null,-1),_hoisted_3228=[_hoisted_2229];function _sfc_render229(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1229,_hoisted_3228)}var service_default=export_helper_default(_sfc_main229,[["render",_sfc_render229],["__file","service.vue"]]),_sfc_main230={name:"SetUp"},_hoisted_1230={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2230=createBaseVNode("path",{fill:"currentColor",d:"M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64H224zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96z"},null,-1),_hoisted_3229=createBaseVNode("path",{fill:"currentColor",d:"M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),_hoisted_471=createBaseVNode("path",{fill:"currentColor",d:"M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),_hoisted_521=createBaseVNode("path",{fill:"currentColor",d:"M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),_hoisted_62$1=[_hoisted_2230,_hoisted_3229,_hoisted_471,_hoisted_521];function _sfc_render230(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1230,_hoisted_62$1)}var set_up_default=export_helper_default(_sfc_main230,[["render",_sfc_render230],["__file","set-up.vue"]]),_sfc_main231={name:"Setting"},_hoisted_1231={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2231=createBaseVNode("path",{fill:"currentColor",d:"M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357.12 357.12 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a351.616 351.616 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357.12 357.12 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294.113 294.113 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293.12 293.12 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294.113 294.113 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288.282 288.282 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293.12 293.12 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a287.616 287.616 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384zm0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256z"},null,-1),_hoisted_3230=[_hoisted_2231];function _sfc_render231(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1231,_hoisted_3230)}var setting_default=export_helper_default(_sfc_main231,[["render",_sfc_render231],["__file","setting.vue"]]),_sfc_main232={name:"Share"},_hoisted_1232={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2232=createBaseVNode("path",{fill:"currentColor",d:"m679.872 348.8-301.76 188.608a127.808 127.808 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"},null,-1),_hoisted_3231=[_hoisted_2232];function _sfc_render232(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1232,_hoisted_3231)}var share_default=export_helper_default(_sfc_main232,[["render",_sfc_render232],["__file","share.vue"]]),_sfc_main233={name:"Ship"},_hoisted_1233={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2233=createBaseVNode("path",{fill:"currentColor",d:"M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216L512 386.88zm0-70.272 144.768-65.792L512 171.84v144.768zM512 512H148.864l18.24 64H856.96l18.24-64H512zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2H185.408z"},null,-1),_hoisted_3232=[_hoisted_2233];function _sfc_render233(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1233,_hoisted_3232)}var ship_default=export_helper_default(_sfc_main233,[["render",_sfc_render233],["__file","ship.vue"]]),_sfc_main234={name:"Shop"},_hoisted_1234={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2234=createBaseVNode("path",{fill:"currentColor",d:"M704 704h64v192H256V704h64v64h384v-64zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640l60.544 423.808z"},null,-1),_hoisted_3233=[_hoisted_2234];function _sfc_render234(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1234,_hoisted_3233)}var shop_default=export_helper_default(_sfc_main234,[["render",_sfc_render234],["__file","shop.vue"]]),_sfc_main235={name:"ShoppingBag"},_hoisted_1235={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2235=createBaseVNode("path",{fill:"currentColor",d:"M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320H704zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32h160zm64 0h256a128 128 0 1 0-256 0z"},null,-1),_hoisted_3234=createBaseVNode("path",{fill:"currentColor",d:"M192 704h640v64H192z"},null,-1),_hoisted_472=[_hoisted_2235,_hoisted_3234];function _sfc_render235(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1235,_hoisted_472)}var shopping_bag_default=export_helper_default(_sfc_main235,[["render",_sfc_render235],["__file","shopping-bag.vue"]]),_sfc_main236={name:"ShoppingCartFull"},_hoisted_1236={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2236=createBaseVNode("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1),_hoisted_3235=createBaseVNode("path",{fill:"currentColor",d:"M699.648 256 608 145.984 516.352 256h183.296zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648l179.2-215.04z"},null,-1),_hoisted_473=[_hoisted_2236,_hoisted_3235];function _sfc_render236(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1236,_hoisted_473)}var shopping_cart_full_default=export_helper_default(_sfc_main236,[["render",_sfc_render236],["__file","shopping-cart-full.vue"]]),_sfc_main237={name:"ShoppingCart"},_hoisted_1237={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2237=createBaseVNode("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1),_hoisted_3236=[_hoisted_2237];function _sfc_render237(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1237,_hoisted_3236)}var shopping_cart_default=export_helper_default(_sfc_main237,[["render",_sfc_render237],["__file","shopping-cart.vue"]]),_sfc_main238={name:"ShoppingTrolley"},_hoisted_1238={version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0",y:"0",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_2238=createBaseVNode("path",{d:"M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833zM807 640c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64h551zM256 192h622l-96 384H256V192zM688 833c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833z",fill:"currentColor"},null,-1),_hoisted_3237=[_hoisted_2238];function _sfc_render238(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1238,_hoisted_3237)}var shopping_trolley_default=export_helper_default(_sfc_main238,[["render",_sfc_render238],["__file","shopping-trolley.vue"]]),_sfc_main239={name:"Smoking"},_hoisted_1239={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2239=createBaseVNode("path",{fill:"currentColor",d:"M256 576v128h640V576H256zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32z"},null,-1),_hoisted_3238=createBaseVNode("path",{fill:"currentColor",d:"M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1),_hoisted_474=[_hoisted_2239,_hoisted_3238];function _sfc_render239(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1239,_hoisted_474)}var smoking_default=export_helper_default(_sfc_main239,[["render",_sfc_render239],["__file","smoking.vue"]]),_sfc_main240={name:"Soccer"},_hoisted_1240={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2240=createBaseVNode("path",{fill:"currentColor",d:"M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24zm72.32-18.176a573.056 573.056 0 0 0 224.832-137.216 573.12 573.12 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.68 567.68 0 0 0 170.432 532.48l320.384 320.384zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536L871.04 418.496zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944-199.936 199.936-497.92 226.112-610.944 113.152zm452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248l45.248 45.248z"},null,-1),_hoisted_3239=[_hoisted_2240];function _sfc_render240(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1240,_hoisted_3239)}var soccer_default=export_helper_default(_sfc_main240,[["render",_sfc_render240],["__file","soccer.vue"]]),_sfc_main241={name:"SoldOut"},_hoisted_1241={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2241=createBaseVNode("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"},null,-1),_hoisted_3240=[_hoisted_2241];function _sfc_render241(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1241,_hoisted_3240)}var sold_out_default=export_helper_default(_sfc_main241,[["render",_sfc_render241],["__file","sold-out.vue"]]),_sfc_main242={name:"SortDown"},_hoisted_1242={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2242=createBaseVNode("path",{fill:"currentColor",d:"M576 96v709.568L333.312 562.816A32 32 0 1 0 288 608l297.408 297.344A32 32 0 0 0 640 882.688V96a32 32 0 0 0-64 0z"},null,-1),_hoisted_3241=[_hoisted_2242];function _sfc_render242(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1242,_hoisted_3241)}var sort_down_default=export_helper_default(_sfc_main242,[["render",_sfc_render242],["__file","sort-down.vue"]]),_sfc_main243={name:"SortUp"},_hoisted_1243={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2243=createBaseVNode("path",{fill:"currentColor",d:"M384 141.248V928a32 32 0 1 0 64 0V218.56l242.688 242.688A32 32 0 1 0 736 416L438.592 118.656A32 32 0 0 0 384 141.248z"},null,-1),_hoisted_3242=[_hoisted_2243];function _sfc_render243(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1243,_hoisted_3242)}var sort_up_default=export_helper_default(_sfc_main243,[["render",_sfc_render243],["__file","sort-up.vue"]]),_sfc_main244={name:"Sort"},_hoisted_1244={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2244=createBaseVNode("path",{fill:"currentColor",d:"M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632V96zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0V141.248z"},null,-1),_hoisted_3243=[_hoisted_2244];function _sfc_render244(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1244,_hoisted_3243)}var sort_default=export_helper_default(_sfc_main244,[["render",_sfc_render244],["__file","sort.vue"]]),_sfc_main245={name:"Stamp"},_hoisted_1245={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2245=createBaseVNode("path",{fill:"currentColor",d:"M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0zM128 896v-64h768v64H128z"},null,-1),_hoisted_3244=[_hoisted_2245];function _sfc_render245(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1245,_hoisted_3244)}var stamp_default=export_helper_default(_sfc_main245,[["render",_sfc_render245],["__file","stamp.vue"]]),_sfc_main246={name:"StarFilled"},_hoisted_1246={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2246=createBaseVNode("path",{fill:"currentColor",d:"M283.84 867.84 512 747.776l228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72z"},null,-1),_hoisted_3245=[_hoisted_2246];function _sfc_render246(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1246,_hoisted_3245)}var star_filled_default=export_helper_default(_sfc_main246,[["render",_sfc_render246],["__file","star-filled.vue"]]),_sfc_main247={name:"Star"},_hoisted_1247={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2247=createBaseVNode("path",{fill:"currentColor",d:"m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72L512 747.84zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"},null,-1),_hoisted_3246=[_hoisted_2247];function _sfc_render247(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1247,_hoisted_3246)}var star_default=export_helper_default(_sfc_main247,[["render",_sfc_render247],["__file","star.vue"]]),_sfc_main248={name:"Stopwatch"},_hoisted_1248={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2248=createBaseVNode("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),_hoisted_3247=createBaseVNode("path",{fill:"currentColor",d:"M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"},null,-1),_hoisted_475=[_hoisted_2248,_hoisted_3247];function _sfc_render248(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1248,_hoisted_475)}var stopwatch_default=export_helper_default(_sfc_main248,[["render",_sfc_render248],["__file","stopwatch.vue"]]),_sfc_main249={name:"SuccessFilled"},_hoisted_1249={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2249=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336L456.192 600.384z"},null,-1),_hoisted_3248=[_hoisted_2249];function _sfc_render249(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1249,_hoisted_3248)}var success_filled_default=export_helper_default(_sfc_main249,[["render",_sfc_render249],["__file","success-filled.vue"]]),_sfc_main250={name:"Sugar"},_hoisted_1250={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2250=createBaseVNode("path",{fill:"currentColor",d:"m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16l-109.248 19.2zm-548.8 198.72h447.168v2.24l60.8-60.8a63.808 63.808 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64.064 64.064 0 0 0-10.24 13.248zm0 64c2.752 4.736 6.144 9.152 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904H252.928zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928h326.208zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632l-137.6 24.256zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"},null,-1),_hoisted_3249=[_hoisted_2250];function _sfc_render250(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1250,_hoisted_3249)}var sugar_default=export_helper_default(_sfc_main250,[["render",_sfc_render250],["__file","sugar.vue"]]),_sfc_main251={name:"SuitcaseLine"},_hoisted_1251={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_2251=createBaseVNode("path",{d:"M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5C77.16 253.82 64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5zM384 128h256v64H384v-64zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128v384zm448 0H320V448h384v384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128v320zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320v64z",fill:"currentColor"},null,-1),_hoisted_3250=[_hoisted_2251];function _sfc_render251(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1251,_hoisted_3250)}var suitcase_line_default=export_helper_default(_sfc_main251,[["render",_sfc_render251],["__file","suitcase-line.vue"]]),_sfc_main252={name:"Suitcase"},_hoisted_1252={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2252=createBaseVNode("path",{fill:"currentColor",d:"M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64v64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448H128zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),_hoisted_3251=createBaseVNode("path",{fill:"currentColor",d:"M384 128v64h256v-64H384zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64z"},null,-1),_hoisted_476=[_hoisted_2252,_hoisted_3251];function _sfc_render252(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1252,_hoisted_476)}var suitcase_default=export_helper_default(_sfc_main252,[["render",_sfc_render252],["__file","suitcase.vue"]]),_sfc_main253={name:"Sunny"},_hoisted_1253={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2253=createBaseVNode("path",{fill:"currentColor",d:"M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32zM195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248zM64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32zm768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32zM195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0zm543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0z"},null,-1),_hoisted_3252=[_hoisted_2253];function _sfc_render253(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1253,_hoisted_3252)}var sunny_default=export_helper_default(_sfc_main253,[["render",_sfc_render253],["__file","sunny.vue"]]),_sfc_main254={name:"Sunrise"},_hoisted_1254={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2254=createBaseVNode("path",{fill:"currentColor",d:"M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64zm129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0h-64.32zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32zm407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0zm-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248z"},null,-1),_hoisted_3253=[_hoisted_2254];function _sfc_render254(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1254,_hoisted_3253)}var sunrise_default=export_helper_default(_sfc_main254,[["render",_sfc_render254],["__file","sunrise.vue"]]),_sfc_main255={name:"Sunset"},_hoisted_1255={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2255=createBaseVNode("path",{fill:"currentColor",d:"M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0H82.56zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),_hoisted_3254=[_hoisted_2255];function _sfc_render255(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1255,_hoisted_3254)}var sunset_default=export_helper_default(_sfc_main255,[["render",_sfc_render255],["__file","sunset.vue"]]),_sfc_main256={name:"SwitchButton"},_hoisted_1256={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2256=createBaseVNode("path",{fill:"currentColor",d:"M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128z"},null,-1),_hoisted_3255=createBaseVNode("path",{fill:"currentColor",d:"M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32z"},null,-1),_hoisted_477=[_hoisted_2256,_hoisted_3255];function _sfc_render256(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1256,_hoisted_477)}var switch_button_default=export_helper_default(_sfc_main256,[["render",_sfc_render256],["__file","switch-button.vue"]]),_sfc_main257={name:"SwitchFilled"},_hoisted_1257={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_2257=createBaseVNode("path",{d:"M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36z",fill:"currentColor"},null,-1),_hoisted_3256=createBaseVNode("path",{d:"M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.655 196.655 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.67 196.67 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42zm-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.695 131.695 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57v644.36zM838.39 186.21a196.655 196.655 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.69 196.69 0 0 0 139.08-57.61A196.655 196.655 0 0 0 896 699.31V325.29a196.69 196.69 0 0 0-57.61-139.08zm-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82z",fill:"currentColor"},null,-1),_hoisted_478=[_hoisted_2257,_hoisted_3256];function _sfc_render257(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1257,_hoisted_478)}var switch_filled_default=export_helper_default(_sfc_main257,[["render",_sfc_render257],["__file","switch-filled.vue"]]),_sfc_main258={name:"Switch"},_hoisted_1258={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2258=createBaseVNode("path",{fill:"currentColor",d:"M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344zM64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32z"},null,-1),_hoisted_3257=[_hoisted_2258];function _sfc_render258(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1258,_hoisted_3257)}var switch_default=export_helper_default(_sfc_main258,[["render",_sfc_render258],["__file","switch.vue"]]),_sfc_main259={name:"TakeawayBox"},_hoisted_1259={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2259=createBaseVNode("path",{fill:"currentColor",d:"M832 384H192v448h640V384zM96 320h832V128H96v192zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32h-64zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64z"},null,-1),_hoisted_3258=[_hoisted_2259];function _sfc_render259(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1259,_hoisted_3258)}var takeaway_box_default=export_helper_default(_sfc_main259,[["render",_sfc_render259],["__file","takeaway-box.vue"]]),_sfc_main260={name:"Ticket"},_hoisted_1260={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2260=createBaseVNode("path",{fill:"currentColor",d:"M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64v160zm0-416v192h64V416h-64z"},null,-1),_hoisted_3259=[_hoisted_2260];function _sfc_render260(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1260,_hoisted_3259)}var ticket_default=export_helper_default(_sfc_main260,[["render",_sfc_render260],["__file","ticket.vue"]]),_sfc_main261={name:"Tickets"},_hoisted_1261={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2261=createBaseVNode("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h192v64H320v-64zm0 384h384v64H320v-64z"},null,-1),_hoisted_3260=[_hoisted_2261];function _sfc_render261(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1261,_hoisted_3260)}var tickets_default=export_helper_default(_sfc_main261,[["render",_sfc_render261],["__file","tickets.vue"]]),_sfc_main262={name:"Timer"},_hoisted_1262={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2262=createBaseVNode("path",{fill:"currentColor",d:"M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640zm0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768z"},null,-1),_hoisted_3261=createBaseVNode("path",{fill:"currentColor",d:"M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32z"},null,-1),_hoisted_479=createBaseVNode("path",{fill:"currentColor",d:"M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0zm96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96z"},null,-1),_hoisted_522=[_hoisted_2262,_hoisted_3261,_hoisted_479];function _sfc_render262(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1262,_hoisted_522)}var timer_default=export_helper_default(_sfc_main262,[["render",_sfc_render262],["__file","timer.vue"]]),_sfc_main263={name:"ToiletPaper"},_hoisted_1263={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2263=createBaseVNode("path",{fill:"currentColor",d:"M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224zM736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64h416zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224z"},null,-1),_hoisted_3262=createBaseVNode("path",{fill:"currentColor",d:"M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96z"},null,-1),_hoisted_480=[_hoisted_2263,_hoisted_3262];function _sfc_render263(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1263,_hoisted_480)}var toilet_paper_default=export_helper_default(_sfc_main263,[["render",_sfc_render263],["__file","toilet-paper.vue"]]),_sfc_main264={name:"Tools"},_hoisted_1264={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2264=createBaseVNode("path",{fill:"currentColor",d:"M764.416 254.72a351.68 351.68 0 0 1 86.336 149.184H960v192.064H850.752a351.68 351.68 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.68 351.68 0 0 1-86.336-149.312H64v-192h109.248a351.68 351.68 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0z"},null,-1),_hoisted_3263=[_hoisted_2264];function _sfc_render264(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1264,_hoisted_3263)}var tools_default=export_helper_default(_sfc_main264,[["render",_sfc_render264],["__file","tools.vue"]]),_sfc_main265={name:"TopLeft"},_hoisted_1265={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2265=createBaseVNode("path",{fill:"currentColor",d:"M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0V256z"},null,-1),_hoisted_3264=createBaseVNode("path",{fill:"currentColor",d:"M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312l-544-544z"},null,-1),_hoisted_481=[_hoisted_2265,_hoisted_3264];function _sfc_render265(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1265,_hoisted_481)}var top_left_default=export_helper_default(_sfc_main265,[["render",_sfc_render265],["__file","top-left.vue"]]),_sfc_main266={name:"TopRight"},_hoisted_1266={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2266=createBaseVNode("path",{fill:"currentColor",d:"M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0V256z"},null,-1),_hoisted_3265=createBaseVNode("path",{fill:"currentColor",d:"M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312l544-544z"},null,-1),_hoisted_482=[_hoisted_2266,_hoisted_3265];function _sfc_render266(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1266,_hoisted_482)}var top_right_default=export_helper_default(_sfc_main266,[["render",_sfc_render266],["__file","top-right.vue"]]),_sfc_main267={name:"Top"},_hoisted_1267={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2267=createBaseVNode("path",{fill:"currentColor",d:"M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"},null,-1),_hoisted_3266=[_hoisted_2267];function _sfc_render267(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1267,_hoisted_3266)}var top_default=export_helper_default(_sfc_main267,[["render",_sfc_render267],["__file","top.vue"]]),_sfc_main268={name:"TrendCharts"},_hoisted_1268={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2268=createBaseVNode("path",{fill:"currentColor",d:"M128 896V128h768v768H128zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624 139.84-156.608zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0z"},null,-1),_hoisted_3267=[_hoisted_2268];function _sfc_render268(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1268,_hoisted_3267)}var trend_charts_default=export_helper_default(_sfc_main268,[["render",_sfc_render268],["__file","trend-charts.vue"]]),_sfc_main269={name:"TrophyBase"},_hoisted_1269={version:"1.1",id:"\u56FE\u5C42_1",xmlns:"http://www.w3.org/2000/svg",x:"0",y:"0",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_2269=createBaseVNode("path",{d:"M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4C752 67.2 745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6C259.2 80 256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 16-9.6 22.4 3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4zM256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256v182.4zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6C342.4 480 320 438.4 320 384V128h384v256c0 54.4-19.2 99.2-57.6 134.4zm172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2zM768 896H256c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6z",fill:"currentColor"},null,-1),_hoisted_3268=[_hoisted_2269];function _sfc_render269(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1269,_hoisted_3268)}var trophy_base_default=export_helper_default(_sfc_main269,[["render",_sfc_render269],["__file","trophy-base.vue"]]),_sfc_main270={name:"Trophy"},_hoisted_1270={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2270=createBaseVNode("path",{fill:"currentColor",d:"M480 896V702.08A256.256 256.256 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.256 256.256 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64h128zm224-448V128H320v320a192 192 0 1 0 384 0zm64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768v192zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448H256z"},null,-1),_hoisted_3269=[_hoisted_2270];function _sfc_render270(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1270,_hoisted_3269)}var trophy_default=export_helper_default(_sfc_main270,[["render",_sfc_render270],["__file","trophy.vue"]]),_sfc_main271={name:"TurnOff"},_hoisted_1271={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2271=createBaseVNode("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),_hoisted_3270=createBaseVNode("path",{fill:"currentColor",d:"M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1),_hoisted_483=[_hoisted_2271,_hoisted_3270];function _sfc_render271(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1271,_hoisted_483)}var turn_off_default=export_helper_default(_sfc_main271,[["render",_sfc_render271],["__file","turn-off.vue"]]),_sfc_main272={name:"Umbrella"},_hoisted_1272={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2272=createBaseVNode("path",{fill:"currentColor",d:"M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0zm570.688-320a384.128 384.128 0 0 0-757.376 0h757.376z"},null,-1),_hoisted_3271=[_hoisted_2272];function _sfc_render272(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1272,_hoisted_3271)}var umbrella_default=export_helper_default(_sfc_main272,[["render",_sfc_render272],["__file","umbrella.vue"]]),_sfc_main273={name:"Unlock"},_hoisted_1273={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2273=createBaseVNode("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),_hoisted_3272=createBaseVNode("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104l-59.456 23.808z"},null,-1),_hoisted_484=[_hoisted_2273,_hoisted_3272];function _sfc_render273(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1273,_hoisted_484)}var unlock_default=export_helper_default(_sfc_main273,[["render",_sfc_render273],["__file","unlock.vue"]]),_sfc_main274={name:"UploadFilled"},_hoisted_1274={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2274=createBaseVNode("path",{fill:"currentColor",d:"M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.808 239.808 0 0 1 512 192a239.872 239.872 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6H544z"},null,-1),_hoisted_3273=[_hoisted_2274];function _sfc_render274(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1274,_hoisted_3273)}var upload_filled_default=export_helper_default(_sfc_main274,[["render",_sfc_render274],["__file","upload-filled.vue"]]),_sfc_main275={name:"Upload"},_hoisted_1275={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2275=createBaseVNode("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248L544 253.696z"},null,-1),_hoisted_3274=[_hoisted_2275];function _sfc_render275(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1275,_hoisted_3274)}var upload_default=export_helper_default(_sfc_main275,[["render",_sfc_render275],["__file","upload.vue"]]),_sfc_main276={name:"UserFilled"},_hoisted_1276={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2276=createBaseVNode("path",{fill:"currentColor",d:"M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0zm544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"},null,-1),_hoisted_3275=[_hoisted_2276];function _sfc_render276(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1276,_hoisted_3275)}var user_filled_default=export_helper_default(_sfc_main276,[["render",_sfc_render276],["__file","user-filled.vue"]]),_sfc_main277={name:"User"},_hoisted_1277={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2277=createBaseVNode("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0z"},null,-1),_hoisted_3276=[_hoisted_2277];function _sfc_render277(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1277,_hoisted_3276)}var user_default=export_helper_default(_sfc_main277,[["render",_sfc_render277],["__file","user.vue"]]),_sfc_main278={name:"Van"},_hoisted_1278={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2278=createBaseVNode("path",{fill:"currentColor",d:"M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416h24.256zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672zm48.128-192-14.72-96H704v96h151.872zM688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160zm-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160z"},null,-1),_hoisted_3277=[_hoisted_2278];function _sfc_render278(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1278,_hoisted_3277)}var van_default=export_helper_default(_sfc_main278,[["render",_sfc_render278],["__file","van.vue"]]),_sfc_main279={name:"VideoCameraFilled"},_hoisted_1279={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2279=createBaseVNode("path",{fill:"currentColor",d:"m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v96zM192 768v64h384v-64H192zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0zm64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288zm-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320zm64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0z"},null,-1),_hoisted_3278=[_hoisted_2279];function _sfc_render279(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1279,_hoisted_3278)}var video_camera_filled_default=export_helper_default(_sfc_main279,[["render",_sfc_render279],["__file","video-camera-filled.vue"]]),_sfc_main280={name:"VideoCamera"},_hoisted_1280={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2280=createBaseVNode("path",{fill:"currentColor",d:"M704 768V256H128v512h576zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 71.552v176.896l128 64V359.552l-128 64zM192 320h192v64H192v-64z"},null,-1),_hoisted_3279=[_hoisted_2280];function _sfc_render280(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1280,_hoisted_3279)}var video_camera_default=export_helper_default(_sfc_main280,[["render",_sfc_render280],["__file","video-camera.vue"]]),_sfc_main281={name:"VideoPause"},_hoisted_1281={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2281=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32zm192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32z"},null,-1),_hoisted_3280=[_hoisted_2281];function _sfc_render281(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1281,_hoisted_3280)}var video_pause_default=export_helper_default(_sfc_main281,[["render",_sfc_render281],["__file","video-pause.vue"]]),_sfc_main282={name:"VideoPlay"},_hoisted_1282={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2282=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-48-247.616L668.608 512 464 375.616v272.768zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"},null,-1),_hoisted_3281=[_hoisted_2282];function _sfc_render282(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1282,_hoisted_3281)}var video_play_default=export_helper_default(_sfc_main282,[["render",_sfc_render282],["__file","video-play.vue"]]),_sfc_main283={name:"View"},_hoisted_1283={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2283=createBaseVNode("path",{fill:"currentColor",d:"M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352zm0 64c-225.28 0-384.128 208.064-436.8 288 52.608 79.872 211.456 288 436.8 288 225.28 0 384.128-208.064 436.8-288-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448 224 224 0 0 1 0-448zm0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160z"},null,-1),_hoisted_3282=[_hoisted_2283];function _sfc_render283(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1283,_hoisted_3282)}var view_default=export_helper_default(_sfc_main283,[["render",_sfc_render283],["__file","view.vue"]]),_sfc_main284={name:"WalletFilled"},_hoisted_1284={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2284=createBaseVNode("path",{fill:"currentColor",d:"M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160H688zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96zm-80-544 128 160H384l256-160z"},null,-1),_hoisted_3283=[_hoisted_2284];function _sfc_render284(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1284,_hoisted_3283)}var wallet_filled_default=export_helper_default(_sfc_main284,[["render",_sfc_render284],["__file","wallet-filled.vue"]]),_sfc_main285={name:"Wallet"},_hoisted_1285={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2285=createBaseVNode("path",{fill:"currentColor",d:"M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32v192z"},null,-1),_hoisted_3284=createBaseVNode("path",{fill:"currentColor",d:"M128 320v512h768V320H128zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32z"},null,-1),_hoisted_485=createBaseVNode("path",{fill:"currentColor",d:"M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1),_hoisted_523=[_hoisted_2285,_hoisted_3284,_hoisted_485];function _sfc_render285(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1285,_hoisted_523)}var wallet_default=export_helper_default(_sfc_main285,[["render",_sfc_render285],["__file","wallet.vue"]]),_sfc_main286={name:"WarnTriangleFilled"},_hoisted_1286={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_hoisted_2286=createBaseVNode("path",{d:"M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49 12.91-20.12 12.92-44.91.01-65.03zM554.67 768h-85.33v-85.33h85.33V768zm0-426.67v298.66h-85.33V341.32l85.33.01z",fill:"currentColor"},null,-1),_hoisted_3285=[_hoisted_2286];function _sfc_render286(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1286,_hoisted_3285)}var warn_triangle_filled_default=export_helper_default(_sfc_main286,[["render",_sfc_render286],["__file","warn-triangle-filled.vue"]]),_sfc_main287={name:"WarningFilled"},_hoisted_1287={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2287=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256zm0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4z"},null,-1),_hoisted_3286=[_hoisted_2287];function _sfc_render287(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1287,_hoisted_3286)}var warning_filled_default=export_helper_default(_sfc_main287,[["render",_sfc_render287],["__file","warning-filled.vue"]]),_sfc_main288={name:"Warning"},_hoisted_1288={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2288=createBaseVNode("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1),_hoisted_3287=[_hoisted_2288];function _sfc_render288(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1288,_hoisted_3287)}var warning_default=export_helper_default(_sfc_main288,[["render",_sfc_render288],["__file","warning.vue"]]),_sfc_main289={name:"Watch"},_hoisted_1289={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2289=createBaseVNode("path",{fill:"currentColor",d:"M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),_hoisted_3288=createBaseVNode("path",{fill:"currentColor",d:"M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32z"},null,-1),_hoisted_486=createBaseVNode("path",{fill:"currentColor",d:"M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm128-256V128H416v128h-64V64h320v192h-64zM416 768v128h192V768h64v192H352V768h64z"},null,-1),_hoisted_524=[_hoisted_2289,_hoisted_3288,_hoisted_486];function _sfc_render289(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1289,_hoisted_524)}var watch_default=export_helper_default(_sfc_main289,[["render",_sfc_render289],["__file","watch.vue"]]),_sfc_main290={name:"Watermelon"},_hoisted_1290={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2290=createBaseVNode("path",{fill:"currentColor",d:"m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248L683.072 600.32zm231.552 141.056a448 448 0 1 1-632-632l632 632z"},null,-1),_hoisted_3289=[_hoisted_2290];function _sfc_render290(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1290,_hoisted_3289)}var watermelon_default=export_helper_default(_sfc_main290,[["render",_sfc_render290],["__file","watermelon.vue"]]),_sfc_main291={name:"WindPower"},_hoisted_1291={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2291=createBaseVNode("path",{fill:"currentColor",d:"M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32zm416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92l192-17.472zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96v226.368z"},null,-1),_hoisted_3290=[_hoisted_2291];function _sfc_render291(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1291,_hoisted_3290)}var wind_power_default=export_helper_default(_sfc_main291,[["render",_sfc_render291],["__file","wind-power.vue"]]),_sfc_main292={name:"ZoomIn"},_hoisted_1292={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2292=createBaseVNode("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z"},null,-1),_hoisted_3291=[_hoisted_2292];function _sfc_render292(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1292,_hoisted_3291)}var zoom_in_default=export_helper_default(_sfc_main292,[["render",_sfc_render292],["__file","zoom-in.vue"]]),_sfc_main293={name:"ZoomOut"},_hoisted_1293={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_hoisted_2293=createBaseVNode("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704zM352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),_hoisted_3292=[_hoisted_2293];function _sfc_render293(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1293,_hoisted_3292)}var zoom_out_default=export_helper_default(_sfc_main293,[["render",_sfc_render293],["__file","zoom-out.vue"]]),svg=Object.freeze(Object.defineProperty({__proto__:null,AddLocation:add_location_default,Aim:aim_default,AlarmClock:alarm_clock_default,Apple:apple_default,ArrowDown:arrow_down_default,ArrowDownBold:arrow_down_bold_default,ArrowLeft:arrow_left_default,ArrowLeftBold:arrow_left_bold_default,ArrowRight:arrow_right_default,ArrowRightBold:arrow_right_bold_default,ArrowUp:arrow_up_default,ArrowUpBold:arrow_up_bold_default,Avatar:avatar_default,Back:back_default,Baseball:baseball_default,Basketball:basketball_default,Bell:bell_default,BellFilled:bell_filled_default,Bicycle:bicycle_default,Bottom:bottom_default,BottomLeft:bottom_left_default,BottomRight:bottom_right_default,Bowl:bowl_default,Box:box_default,Briefcase:briefcase_default,Brush:brush_default,BrushFilled:brush_filled_default,Burger:burger_default,Calendar:calendar_default,Camera:camera_default,CameraFilled:camera_filled_default,CaretBottom:caret_bottom_default,CaretLeft:caret_left_default,CaretRight:caret_right_default,CaretTop:caret_top_default,Cellphone:cellphone_default,ChatDotRound:chat_dot_round_default,ChatDotSquare:chat_dot_square_default,ChatLineRound:chat_line_round_default,ChatLineSquare:chat_line_square_default,ChatRound:chat_round_default,ChatSquare:chat_square_default,Check:check_default,Checked:checked_default,Cherry:cherry_default,Chicken:chicken_default,ChromeFilled:chrome_filled_default,CircleCheck:circle_check_default,CircleCheckFilled:circle_check_filled_default,CircleClose:circle_close_default,CircleCloseFilled:circle_close_filled_default,CirclePlus:circle_plus_default,CirclePlusFilled:circle_plus_filled_default,Clock:clock_default,Close:close_default,CloseBold:close_bold_default,Cloudy:cloudy_default,Coffee:coffee_default,CoffeeCup:coffee_cup_default,Coin:coin_default,ColdDrink:cold_drink_default,Collection:collection_default,CollectionTag:collection_tag_default,Comment:comment_default,Compass:compass_default,Connection:connection_default,Coordinate:coordinate_default,CopyDocument:copy_document_default,Cpu:cpu_default,CreditCard:credit_card_default,Crop:crop_default,DArrowLeft:d_arrow_left_default,DArrowRight:d_arrow_right_default,DCaret:d_caret_default,DataAnalysis:data_analysis_default,DataBoard:data_board_default,DataLine:data_line_default,Delete:delete_default,DeleteFilled:delete_filled_default,DeleteLocation:delete_location_default,Dessert:dessert_default,Discount:discount_default,Dish:dish_default,DishDot:dish_dot_default,Document:document_default,DocumentAdd:document_add_default,DocumentChecked:document_checked_default,DocumentCopy:document_copy_default,DocumentDelete:document_delete_default,DocumentRemove:document_remove_default,Download:download_default,Drizzling:drizzling_default,Edit:edit_default,EditPen:edit_pen_default,Eleme:eleme_default,ElemeFilled:eleme_filled_default,ElementPlus:element_plus_default,Expand:expand_default,Failed:failed_default,Female:female_default,Files:files_default,Film:film_default,Filter:filter_default,Finished:finished_default,FirstAidKit:first_aid_kit_default,Flag:flag_default,Fold:fold_default,Folder:folder_default,FolderAdd:folder_add_default,FolderChecked:folder_checked_default,FolderDelete:folder_delete_default,FolderOpened:folder_opened_default,FolderRemove:folder_remove_default,Food:food_default,Football:football_default,ForkSpoon:fork_spoon_default,Fries:fries_default,FullScreen:full_screen_default,Goblet:goblet_default,GobletFull:goblet_full_default,GobletSquare:goblet_square_default,GobletSquareFull:goblet_square_full_default,GoldMedal:gold_medal_default,Goods:goods_default,GoodsFilled:goods_filled_default,Grape:grape_default,Grid:grid_default,Guide:guide_default,Handbag:handbag_default,Headset:headset_default,Help:help_default,HelpFilled:help_filled_default,Hide:hide_default,Histogram:histogram_default,HomeFilled:home_filled_default,HotWater:hot_water_default,House:house_default,IceCream:ice_cream_default,IceCreamRound:ice_cream_round_default,IceCreamSquare:ice_cream_square_default,IceDrink:ice_drink_default,IceTea:ice_tea_default,InfoFilled:info_filled_default,Iphone:iphone_default,Key:key_default,KnifeFork:knife_fork_default,Lightning:lightning_default,Link:link_default,List:list_default,Loading:loading_default,Location:location_default,LocationFilled:location_filled_default,LocationInformation:location_information_default,Lock:lock_default,Lollipop:lollipop_default,MagicStick:magic_stick_default,Magnet:magnet_default,Male:male_default,Management:management_default,MapLocation:map_location_default,Medal:medal_default,Memo:memo_default,Menu:menu_default,Message:message_default,MessageBox:message_box_default,Mic:mic_default,Microphone:microphone_default,MilkTea:milk_tea_default,Minus:minus_default,Money:money_default,Monitor:monitor_default,Moon:moon_default,MoonNight:moon_night_default,More:more_default,MoreFilled:more_filled_default,MostlyCloudy:mostly_cloudy_default,Mouse:mouse_default,Mug:mug_default,Mute:mute_default,MuteNotification:mute_notification_default,NoSmoking:no_smoking_default,Notebook:notebook_default,Notification:notification_default,Odometer:odometer_default,OfficeBuilding:office_building_default,Open:open_default,Operation:operation_default,Opportunity:opportunity_default,Orange:orange_default,Paperclip:paperclip_default,PartlyCloudy:partly_cloudy_default,Pear:pear_default,Phone:phone_default,PhoneFilled:phone_filled_default,Picture:picture_default,PictureFilled:picture_filled_default,PictureRounded:picture_rounded_default,PieChart:pie_chart_default,Place:place_default,Platform:platform_default,Plus:plus_default,Pointer:pointer_default,Position:position_default,Postcard:postcard_default,Pouring:pouring_default,Present:present_default,PriceTag:price_tag_default,Printer:printer_default,Promotion:promotion_default,QuartzWatch:quartz_watch_default,QuestionFilled:question_filled_default,Rank:rank_default,Reading:reading_default,ReadingLamp:reading_lamp_default,Refresh:refresh_default,RefreshLeft:refresh_left_default,RefreshRight:refresh_right_default,Refrigerator:refrigerator_default,Remove:remove_default,RemoveFilled:remove_filled_default,Right:right_default,ScaleToOriginal:scale_to_original_default,School:school_default,Scissor:scissor_default,Search:search_default,Select:select_default,Sell:sell_default,SemiSelect:semi_select_default,Service:service_default,SetUp:set_up_default,Setting:setting_default,Share:share_default,Ship:ship_default,Shop:shop_default,ShoppingBag:shopping_bag_default,ShoppingCart:shopping_cart_default,ShoppingCartFull:shopping_cart_full_default,ShoppingTrolley:shopping_trolley_default,Smoking:smoking_default,Soccer:soccer_default,SoldOut:sold_out_default,Sort:sort_default,SortDown:sort_down_default,SortUp:sort_up_default,Stamp:stamp_default,Star:star_default,StarFilled:star_filled_default,Stopwatch:stopwatch_default,SuccessFilled:success_filled_default,Sugar:sugar_default,Suitcase:suitcase_default,SuitcaseLine:suitcase_line_default,Sunny:sunny_default,Sunrise:sunrise_default,Sunset:sunset_default,Switch:switch_default,SwitchButton:switch_button_default,SwitchFilled:switch_filled_default,TakeawayBox:takeaway_box_default,Ticket:ticket_default,Tickets:tickets_default,Timer:timer_default,ToiletPaper:toilet_paper_default,Tools:tools_default,Top:top_default,TopLeft:top_left_default,TopRight:top_right_default,TrendCharts:trend_charts_default,Trophy:trophy_default,TrophyBase:trophy_base_default,TurnOff:turn_off_default,Umbrella:umbrella_default,Unlock:unlock_default,Upload:upload_default,UploadFilled:upload_filled_default,User:user_default,UserFilled:user_filled_default,Van:van_default,VideoCamera:video_camera_default,VideoCameraFilled:video_camera_filled_default,VideoPause:video_pause_default,VideoPlay:video_play_default,View:view_default,Wallet:wallet_default,WalletFilled:wallet_filled_default,WarnTriangleFilled:warn_triangle_filled_default,Warning:warning_default,WarningFilled:warning_filled_default,Watch:watch_default,Watermelon:watermelon_default,WindPower:wind_power_default,ZoomIn:zoom_in_default,ZoomOut:zoom_out_default},Symbol.toStringTag,{value:"Module"})),commonjsGlobal$1=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function getDefaultExportFromCjs$1(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function getAugmentedNamespace(e){if(e.__esModule)return e;var t=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(e).forEach(function(n){var r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r.get?r:{enumerable:!0,get:function(){return e[n]}})}),t}var nprogress$1={exports:{}};/* NProgress, (c) 2013, 2014 Rico Sta. Cruz - http://ricostacruz.com/nprogress +* @license MIT */(function(e,t){(function(n,r){e.exports=r()})(commonjsGlobal$1,function(){var n={};n.version="0.2.0";var r=n.settings={minimum:.08,easing:"ease",positionUsing:"",speed:200,trickle:!0,trickleRate:.02,trickleSpeed:800,showSpinner:!0,barSelector:'[role="bar"]',spinnerSelector:'[role="spinner"]',parent:"body",template:'
      '};n.configure=function(re){var ie,ae;for(ie in re)ae=re[ie],ae!==void 0&&re.hasOwnProperty(ie)&&(r[ie]=ae);return this},n.status=null,n.set=function(re){var ie=n.isStarted();re=i(re,r.minimum,1),n.status=re===1?null:re;var ae=n.render(!ie),le=ae.querySelector(r.barSelector),de=r.speed,pe=r.easing;return ae.offsetWidth,y(function(he){r.positionUsing===""&&(r.positionUsing=n.getPositioningCSS()),k(le,$(re,de,pe)),re===1?(k(ae,{transition:"none",opacity:1}),ae.offsetWidth,setTimeout(function(){k(ae,{transition:"all "+de+"ms linear",opacity:0}),setTimeout(function(){n.remove(),he()},de)},de)):setTimeout(he,de)}),this},n.isStarted=function(){return typeof n.status=="number"},n.start=function(){n.status||n.set(0);var re=function(){setTimeout(function(){!n.status||(n.trickle(),re())},r.trickleSpeed)};return r.trickle&&re(),this},n.done=function(re){return!re&&!n.status?this:n.inc(.3+.5*Math.random()).set(1)},n.inc=function(re){var ie=n.status;return ie?(typeof re!="number"&&(re=(1-ie)*i(Math.random()*ie,.1,.95)),ie=i(ie+re,0,.994),n.set(ie)):n.start()},n.trickle=function(){return n.inc(Math.random()*r.trickleRate)},function(){var re=0,ie=0;n.promise=function(ae){return!ae||ae.state()==="resolved"?this:(ie===0&&n.start(),re++,ie++,ae.always(function(){ie--,ie===0?(re=0,n.done()):n.set((re-ie)/re)}),this)}}(),n.render=function(re){if(n.isRendered())return document.getElementById("nprogress");L(document.documentElement,"nprogress-busy");var ie=document.createElement("div");ie.id="nprogress",ie.innerHTML=r.template;var ae=ie.querySelector(r.barSelector),le=re?"-100":g(n.status||0),de=document.querySelector(r.parent),pe;return k(ae,{transition:"all 0 linear",transform:"translate3d("+le+"%,0,0)"}),r.showSpinner||(pe=ie.querySelector(r.spinnerSelector),pe&&oe(pe)),de!=document.body&&L(de,"nprogress-custom-parent"),de.appendChild(ie),ie},n.remove=function(){V(document.documentElement,"nprogress-busy"),V(document.querySelector(r.parent),"nprogress-custom-parent");var re=document.getElementById("nprogress");re&&oe(re)},n.isRendered=function(){return!!document.getElementById("nprogress")},n.getPositioningCSS=function(){var re=document.body.style,ie="WebkitTransform"in re?"Webkit":"MozTransform"in re?"Moz":"msTransform"in re?"ms":"OTransform"in re?"O":"";return ie+"Perspective"in re?"translate3d":ie+"Transform"in re?"translate":"margin"};function i(re,ie,ae){return reae?ae:re}function g(re){return(-1+re)*100}function $(re,ie,ae){var le;return r.positionUsing==="translate3d"?le={transform:"translate3d("+g(re)+"%,0,0)"}:r.positionUsing==="translate"?le={transform:"translate("+g(re)+"%,0)"}:le={"margin-left":g(re)+"%"},le.transition="all "+ie+"ms "+ae,le}var y=function(){var re=[];function ie(){var ae=re.shift();ae&&ae(ie)}return function(ae){re.push(ae),re.length==1&&ie()}}(),k=function(){var re=["Webkit","O","Moz","ms"],ie={};function ae(he){return he.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,function(ue,_e){return _e.toUpperCase()})}function le(he){var ue=document.body.style;if(he in ue)return he;for(var _e=re.length,Ie=he.charAt(0).toUpperCase()+he.slice(1),Ce;_e--;)if(Ce=re[_e]+Ie,Ce in ue)return Ce;return he}function de(he){return he=ae(he),ie[he]||(ie[he]=le(he))}function pe(he,ue,_e){ue=de(ue),he.style[ue]=_e}return function(he,ue){var _e=arguments,Ie,Ce;if(_e.length==2)for(Ie in ue)Ce=ue[Ie],Ce!==void 0&&ue.hasOwnProperty(Ie)&&pe(he,Ie,Ce);else pe(he,_e[1],_e[2])}}();function j(re,ie){var ae=typeof re=="string"?re:z(re);return ae.indexOf(" "+ie+" ")>=0}function L(re,ie){var ae=z(re),le=ae+ie;j(ae,ie)||(re.className=le.substring(1))}function V(re,ie){var ae=z(re),le;!j(re,ie)||(le=ae.replace(" "+ie+" "," "),re.className=le.substring(1,le.length-1))}function z(re){return(" "+(re.className||"")+" ").replace(/\s+/gi," ")}function oe(re){re&&re.parentNode&&re.parentNode.removeChild(re)}return n})})(nprogress$1);var NProgress=nprogress$1.exports,nprogress="",loading="";const NextLoading={start:()=>{const e=document.body,t=document.createElement("div");t.setAttribute("class","loading-next");const n=` +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + `;t.innerHTML=n,e.insertBefore(t,e.childNodes[0]),window.nextLoading=!0},done:()=>{nextTick(()=>{var t;window.nextLoading=!1;const e=document.querySelector(".loading-next");(t=e==null?void 0:e.parentNode)==null||t.removeChild(e)})}},scriptRel="modulepreload",seen={},base="/",__vitePreload=function(t,n){return!n||n.length===0?t():Promise.all(n.map(r=>{if(r=`${base}${r}`,r in seen)return;seen[r]=!0;const i=r.endsWith(".css"),g=i?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${r}"]${g}`))return;const $=document.createElement("link");if($.rel=i?"stylesheet":scriptRel,i||($.as="script",$.crossOrigin=""),$.href=r,document.head.appendChild($),i)return new Promise((y,k)=>{$.addEventListener("load",y),$.addEventListener("error",()=>k(new Error(`Unable to preload CSS for ${r}`)))})})).then(()=>t())},dynamicRoutes=[{path:"/",name:"/",component:()=>__vitePreload(()=>import("./index.17011843046952.js"),["assets/index.17011843046952.js","assets/vue.1701184304695.js"]),redirect:"/home",meta:{isKeepAlive:!0},children:[{path:"/personal",name:"personal",component:()=>__vitePreload(()=>import("./index.17011843046953.js"),["assets/index.17011843046953.js","assets/index.17011843046953.css","assets/index.17011843046954.js","assets/index.1701184304695.css","assets/vue.1701184304695.js"]),meta:{title:"message.router.personal",isLink:"",isHide:!0,isKeepAlive:!0,isAffix:!1,isIframe:!1,roles:["admin","common"],icon:"iconfont icon-gerenzhongxin"}},{path:"/404",name:"notFound",component:()=>__vitePreload(()=>import("./404.1701184304695.js"),["assets/404.1701184304695.js","assets/404.1701184304695.css","assets/vue.1701184304695.js"]),meta:{title:"message.staticRoutes.notFound",isLink:"",isHide:!0,isKeepAlive:!0,isAffix:!1,isIframe:!1}},{path:"/401",name:"noPower",component:()=>__vitePreload(()=>import("./401.1701184304695.js"),["assets/401.1701184304695.js","assets/401.1701184304695.css","assets/vue.1701184304695.js"]),meta:{title:"message.staticRoutes.noPower",isLink:"",isHide:!0,isKeepAlive:!0,isAffix:!1,isIframe:!1}}]}],staticRoutes=[{path:"/login",name:"login",component:()=>__vitePreload(()=>import("./index.17011843046955.js"),["assets/index.17011843046955.js","assets/index.17011843046952.css","assets/account.1701184304695.js","assets/account.1701184304695.css","assets/vue.1701184304695.js"]),meta:{title:"\u767B\u5F55"}}];async function initFrontEndControlRoutes(){if(window.nextLoading===void 0&&NextLoading.start(),!localStorage.token)return!1;store.dispatch("userInfos/setUserInfos"),store.dispatch("userInfos/setPermissions"),await setAddRoute(),setFilterMenuAndCacheTagsViewRoutes()}var axios$2={exports:{}},bind$2=function(t,n){return function(){for(var i=new Array(arguments.length),g=0;g=0)return;r==="set-cookie"?n[r]=(n[r]?n[r]:[]).concat([i]):n[r]=n[r]?n[r]+", "+i:i}}),n},utils$8=utils$e,isURLSameOrigin$1=utils$8.isStandardBrowserEnv()?function(){var t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a"),r;function i(g){var $=g;return t&&(n.setAttribute("href",$),$=n.href),n.setAttribute("href",$),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=i(window.location.href),function($){var y=utils$8.isString($)?i($):$;return y.protocol===r.protocol&&y.host===r.host}}():function(){return function(){return!0}}();function Cancel$3(e){this.message=e}Cancel$3.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")};Cancel$3.prototype.__CANCEL__=!0;var Cancel_1=Cancel$3,utils$7=utils$e,settle=settle$1,cookies=cookies$1,buildURL$1=buildURL$2,buildFullPath=buildFullPath$1,parseHeaders=parseHeaders$1,isURLSameOrigin=isURLSameOrigin$1,createError=createError$2,transitionalDefaults$1=transitional,Cancel$2=Cancel_1,xhr=function(t){return new Promise(function(r,i){var g=t.data,$=t.headers,y=t.responseType,k;function j(){t.cancelToken&&t.cancelToken.unsubscribe(k),t.signal&&t.signal.removeEventListener("abort",k)}utils$7.isFormData(g)&&delete $["Content-Type"];var L=new XMLHttpRequest;if(t.auth){var V=t.auth.username||"",z=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";$.Authorization="Basic "+btoa(V+":"+z)}var oe=buildFullPath(t.baseURL,t.url);L.open(t.method.toUpperCase(),buildURL$1(oe,t.params,t.paramsSerializer),!0),L.timeout=t.timeout;function re(){if(!!L){var ae="getAllResponseHeaders"in L?parseHeaders(L.getAllResponseHeaders()):null,le=!y||y==="text"||y==="json"?L.responseText:L.response,de={data:le,status:L.status,statusText:L.statusText,headers:ae,config:t,request:L};settle(function(he){r(he),j()},function(he){i(he),j()},de),L=null}}if("onloadend"in L?L.onloadend=re:L.onreadystatechange=function(){!L||L.readyState!==4||L.status===0&&!(L.responseURL&&L.responseURL.indexOf("file:")===0)||setTimeout(re)},L.onabort=function(){!L||(i(createError("Request aborted",t,"ECONNABORTED",L)),L=null)},L.onerror=function(){i(createError("Network Error",t,null,L)),L=null},L.ontimeout=function(){var le=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded",de=t.transitional||transitionalDefaults$1;t.timeoutErrorMessage&&(le=t.timeoutErrorMessage),i(createError(le,t,de.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",L)),L=null},utils$7.isStandardBrowserEnv()){var ie=(t.withCredentials||isURLSameOrigin(oe))&&t.xsrfCookieName?cookies.read(t.xsrfCookieName):void 0;ie&&($[t.xsrfHeaderName]=ie)}"setRequestHeader"in L&&utils$7.forEach($,function(le,de){typeof g=="undefined"&&de.toLowerCase()==="content-type"?delete $[de]:L.setRequestHeader(de,le)}),utils$7.isUndefined(t.withCredentials)||(L.withCredentials=!!t.withCredentials),y&&y!=="json"&&(L.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&L.addEventListener("progress",t.onDownloadProgress),typeof t.onUploadProgress=="function"&&L.upload&&L.upload.addEventListener("progress",t.onUploadProgress),(t.cancelToken||t.signal)&&(k=function(ae){!L||(i(!ae||ae&&ae.type?new Cancel$2("canceled"):ae),L.abort(),L=null)},t.cancelToken&&t.cancelToken.subscribe(k),t.signal&&(t.signal.aborted?k():t.signal.addEventListener("abort",k))),g||(g=null),L.send(g)})},utils$6=utils$e,normalizeHeaderName=normalizeHeaderName$1,enhanceError=enhanceError$2,transitionalDefaults=transitional,DEFAULT_CONTENT_TYPE={"Content-Type":"application/x-www-form-urlencoded"};function setContentTypeIfUnset(e,t){!utils$6.isUndefined(e)&&utils$6.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}function getDefaultAdapter(){var e;return(typeof XMLHttpRequest!="undefined"||typeof process!="undefined"&&Object.prototype.toString.call(process)==="[object process]")&&(e=xhr),e}function stringifySafely(e,t,n){if(utils$6.isString(e))try{return(t||JSON.parse)(e),utils$6.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}var defaults$3={transitional:transitionalDefaults,adapter:getDefaultAdapter(),transformRequest:[function(t,n){return normalizeHeaderName(n,"Accept"),normalizeHeaderName(n,"Content-Type"),utils$6.isFormData(t)||utils$6.isArrayBuffer(t)||utils$6.isBuffer(t)||utils$6.isStream(t)||utils$6.isFile(t)||utils$6.isBlob(t)?t:utils$6.isArrayBufferView(t)?t.buffer:utils$6.isURLSearchParams(t)?(setContentTypeIfUnset(n,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):utils$6.isObject(t)||n&&n["Content-Type"]==="application/json"?(setContentTypeIfUnset(n,"application/json"),stringifySafely(t)):t}],transformResponse:[function(t){var n=this.transitional||defaults$3.transitional,r=n&&n.silentJSONParsing,i=n&&n.forcedJSONParsing,g=!r&&this.responseType==="json";if(g||i&&utils$6.isString(t)&&t.length)try{return JSON.parse(t)}catch($){if(g)throw $.name==="SyntaxError"?enhanceError($,this,"E_JSON_PARSE"):$}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};utils$6.forEach(["delete","get","head"],function(t){defaults$3.headers[t]={}});utils$6.forEach(["post","put","patch"],function(t){defaults$3.headers[t]=utils$6.merge(DEFAULT_CONTENT_TYPE)});var defaults_1=defaults$3,utils$5=utils$e,defaults$2=defaults_1,transformData$1=function(t,n,r){var i=this||defaults$2;return utils$5.forEach(r,function($){t=$.call(i,t,n)}),t},isCancel$1=function(t){return!!(t&&t.__CANCEL__)},utils$4=utils$e,transformData=transformData$1,isCancel=isCancel$1,defaults$1=defaults_1,Cancel$1=Cancel_1;function throwIfCancellationRequested(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Cancel$1("canceled")}var dispatchRequest$1=function(t){throwIfCancellationRequested(t),t.headers=t.headers||{},t.data=transformData.call(t,t.data,t.headers,t.transformRequest),t.headers=utils$4.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),utils$4.forEach(["delete","get","head","post","put","patch","common"],function(i){delete t.headers[i]});var n=t.adapter||defaults$1.adapter;return n(t).then(function(i){return throwIfCancellationRequested(t),i.data=transformData.call(t,i.data,i.headers,t.transformResponse),i},function(i){return isCancel(i)||(throwIfCancellationRequested(t),i&&i.response&&(i.response.data=transformData.call(t,i.response.data,i.response.headers,t.transformResponse))),Promise.reject(i)})},utils$3=utils$e,mergeConfig$3=function(t,n){n=n||{};var r={};function i(L,V){return utils$3.isPlainObject(L)&&utils$3.isPlainObject(V)?utils$3.merge(L,V):utils$3.isPlainObject(V)?utils$3.merge({},V):utils$3.isArray(V)?V.slice():V}function g(L){if(utils$3.isUndefined(n[L])){if(!utils$3.isUndefined(t[L]))return i(void 0,t[L])}else return i(t[L],n[L])}function $(L){if(!utils$3.isUndefined(n[L]))return i(void 0,n[L])}function y(L){if(utils$3.isUndefined(n[L])){if(!utils$3.isUndefined(t[L]))return i(void 0,t[L])}else return i(void 0,n[L])}function k(L){if(L in n)return i(t[L],n[L]);if(L in t)return i(void 0,t[L])}var j={url:$,method:$,data:$,baseURL:y,transformRequest:y,transformResponse:y,paramsSerializer:y,timeout:y,timeoutMessage:y,withCredentials:y,adapter:y,responseType:y,xsrfCookieName:y,xsrfHeaderName:y,onUploadProgress:y,onDownloadProgress:y,decompress:y,maxContentLength:y,maxBodyLength:y,transport:y,httpAgent:y,httpsAgent:y,cancelToken:y,socketPath:y,responseEncoding:y,validateStatus:k};return utils$3.forEach(Object.keys(t).concat(Object.keys(n)),function(V){var z=j[V]||g,oe=z(V);utils$3.isUndefined(oe)&&z!==k||(r[V]=oe)}),r},data={version:"0.26.1"},VERSION$2=data.version,validators$2={};["object","boolean","number","function","string","symbol"].forEach(function(e,t){validators$2[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});var deprecatedWarnings={};validators$2.transitional=function(t,n,r){function i(g,$){return"[Axios v"+VERSION$2+"] Transitional option '"+g+"'"+$+(r?". "+r:"")}return function(g,$,y){if(t===!1)throw new Error(i($," has been removed"+(n?" in "+n:"")));return n&&!deprecatedWarnings[$]&&(deprecatedWarnings[$]=!0,console.warn(i($," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(g,$,y):!0}};function assertOptions(e,t,n){if(typeof e!="object")throw new TypeError("options must be an object");for(var r=Object.keys(e),i=r.length;i-- >0;){var g=r[i],$=t[g];if($){var y=e[g],k=y===void 0||$(y,g,e);if(k!==!0)throw new TypeError("option "+g+" must be "+k);continue}if(n!==!0)throw Error("Unknown option "+g)}}var validator$1={assertOptions,validators:validators$2},utils$2=utils$e,buildURL=buildURL$2,InterceptorManager=InterceptorManager_1,dispatchRequest=dispatchRequest$1,mergeConfig$2=mergeConfig$3,validator=validator$1,validators$1=validator.validators;function Axios$1(e){this.defaults=e,this.interceptors={request:new InterceptorManager,response:new InterceptorManager}}Axios$1.prototype.request=function(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=mergeConfig$2(this.defaults,n),n.method?n.method=n.method.toLowerCase():this.defaults.method?n.method=this.defaults.method.toLowerCase():n.method="get";var r=n.transitional;r!==void 0&&validator.assertOptions(r,{silentJSONParsing:validators$1.transitional(validators$1.boolean),forcedJSONParsing:validators$1.transitional(validators$1.boolean),clarifyTimeoutError:validators$1.transitional(validators$1.boolean)},!1);var i=[],g=!0;this.interceptors.request.forEach(function(oe){typeof oe.runWhen=="function"&&oe.runWhen(n)===!1||(g=g&&oe.synchronous,i.unshift(oe.fulfilled,oe.rejected))});var $=[];this.interceptors.response.forEach(function(oe){$.push(oe.fulfilled,oe.rejected)});var y;if(!g){var k=[dispatchRequest,void 0];for(Array.prototype.unshift.apply(k,i),k=k.concat($),y=Promise.resolve(n);k.length;)y=y.then(k.shift(),k.shift());return y}for(var j=n;i.length;){var L=i.shift(),V=i.shift();try{j=L(j)}catch(z){V(z);break}}try{y=dispatchRequest(j)}catch(z){return Promise.reject(z)}for(;$.length;)y=y.then($.shift(),$.shift());return y};Axios$1.prototype.getUri=function(t){return t=mergeConfig$2(this.defaults,t),buildURL(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")};utils$2.forEach(["delete","get","head","options"],function(t){Axios$1.prototype[t]=function(n,r){return this.request(mergeConfig$2(r||{},{method:t,url:n,data:(r||{}).data}))}});utils$2.forEach(["post","put","patch"],function(t){Axios$1.prototype[t]=function(n,r,i){return this.request(mergeConfig$2(i||{},{method:t,url:n,data:r}))}});var Axios_1=Axios$1,Cancel=Cancel_1;function CancelToken(e){if(typeof e!="function")throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(i){t=i});var n=this;this.promise.then(function(r){if(!!n._listeners){var i,g=n._listeners.length;for(i=0;i0){if(++t>=HOT_COUNT)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function constant(e){return function(){return e}}var defineProperty=function(){try{var e=getNative(Object,"defineProperty");return e({},"",{}),e}catch{}}(),defineProperty$1=defineProperty,baseSetToString=defineProperty$1?function(e,t){return defineProperty$1(e,"toString",{configurable:!0,enumerable:!1,value:constant(t),writable:!0})}:identity$1,baseSetToString$1=baseSetToString,setToString=shortOut(baseSetToString$1),setToString$1=setToString;function arrayEach(e,t){for(var n=-1,r=e==null?0:e.length;++n-1}var MAX_SAFE_INTEGER$1=9007199254740991,reIsUint=/^(?:0|[1-9]\d*)$/;function isIndex(e,t){var n=typeof e;return t=t==null?MAX_SAFE_INTEGER$1:t,!!t&&(n=="number"||n!="symbol"&&reIsUint.test(e))&&e>-1&&e%1==0&&e-1&&e%1==0&&e<=MAX_SAFE_INTEGER}function isArrayLike(e){return e!=null&&isLength(e.length)&&!isFunction$2(e)}function isIterateeCall(e,t,n){if(!isObject$2(n))return!1;var r=typeof t;return(r=="number"?isArrayLike(n)&&isIndex(t,n.length):r=="string"&&t in n)?eq(n[t],e):!1}function createAssigner(e){return baseRest(function(t,n){var r=-1,i=n.length,g=i>1?n[i-1]:void 0,$=i>2?n[2]:void 0;for(g=e.length>3&&typeof g=="function"?(i--,g):void 0,$&&isIterateeCall(n[0],n[1],$)&&(g=i<3?void 0:g,i=1),t=Object(t);++r-1}function listCacheSet(e,t){var n=this.__data__,r=assocIndexOf(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this}function ListCache(e){var t=-1,n=e==null?0:e.length;for(this.clear();++t0&&n(y)?t>1?baseFlatten(y,t-1,n,r,i):arrayPush(i,y):r||(i[i.length]=y)}return i}function flatten(e){var t=e==null?0:e.length;return t?baseFlatten(e,1):[]}function flatRest(e){return setToString$1(overRest(e,void 0,flatten),e+"")}var getPrototype=overArg(Object.getPrototypeOf,Object),getPrototype$1=getPrototype,objectTag$3="[object Object]",funcProto=Function.prototype,objectProto$4=Object.prototype,funcToString=funcProto.toString,hasOwnProperty$5=objectProto$4.hasOwnProperty,objectCtorString=funcToString.call(Object);function isPlainObject$1(e){if(!isObjectLike(e)||baseGetTag(e)!=objectTag$3)return!1;var t=getPrototype$1(e);if(t===null)return!0;var n=hasOwnProperty$5.call(t,"constructor")&&t.constructor;return typeof n=="function"&&n instanceof n&&funcToString.call(n)==objectCtorString}function castArray$1(){if(!arguments.length)return[];var e=arguments[0];return isArray$2(e)?e:[e]}function stackClear(){this.__data__=new ListCache,this.size=0}function stackDelete(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}function stackGet(e){return this.__data__.get(e)}function stackHas(e){return this.__data__.has(e)}var LARGE_ARRAY_SIZE$1=200;function stackSet(e,t){var n=this.__data__;if(n instanceof ListCache){var r=n.__data__;if(!Map$2||r.lengthy))return!1;var j=g.get(e),L=g.get(t);if(j&&L)return j==t&&L==e;var V=-1,z=!0,oe=n&COMPARE_UNORDERED_FLAG$3?new SetCache:void 0;for(g.set(e,t),g.set(t,e);++V=t||Ie<0||V&&Ce>=g}function le(){var _e=now$1();if(ae(_e))return de(_e);y=setTimeout(le,ie(_e))}function de(_e){return y=void 0,z&&r?oe(_e):(r=i=void 0,$)}function pe(){y!==void 0&&clearTimeout(y),j=0,r=k=i=y=void 0}function he(){return y===void 0?$:de(now$1())}function ue(){var _e=now$1(),Ie=ae(_e);if(r=arguments,i=this,k=_e,Ie){if(y===void 0)return re(k);if(V)return clearTimeout(y),y=setTimeout(le,t),oe(k)}return y===void 0&&(y=setTimeout(le,t)),$}return ue.cancel=pe,ue.flush=he,ue}function assignMergeValue(e,t,n){(n!==void 0&&!eq(e[t],n)||n===void 0&&!(t in e))&&baseAssignValue(e,t,n)}function isArrayLikeObject(e){return isObjectLike(e)&&isArrayLike(e)}function safeGet(e,t){if(!(t==="constructor"&&typeof e[t]=="function")&&t!="__proto__")return e[t]}function toPlainObject(e){return copyObject(e,keysIn(e))}function baseMergeDeep(e,t,n,r,i,g,$){var y=safeGet(e,n),k=safeGet(t,n),j=$.get(k);if(j){assignMergeValue(e,n,j);return}var L=g?g(y,k,n+"",e,t,$):void 0,V=L===void 0;if(V){var z=isArray$2(k),oe=!z&&isBuffer$1(k),re=!z&&!oe&&isTypedArray$1(k);L=k,z||oe||re?isArray$2(y)?L=y:isArrayLikeObject(y)?L=copyArray(y):oe?(V=!1,L=cloneBuffer(k,!0)):re?(V=!1,L=cloneTypedArray(k,!0)):L=[]:isPlainObject$1(k)||isArguments$1(k)?(L=y,isArguments$1(y)?L=toPlainObject(y):(!isObject$2(y)||isFunction$2(y))&&(L=initCloneObject(k))):V=!1}V&&($.set(k,L),i(L,k,r,g,$),$.delete(k)),assignMergeValue(e,n,L)}function baseMerge(e,t,n,r,i){e!==t&&baseFor$1(t,function(g,$){if(i||(i=new Stack),isObject$2(g))baseMergeDeep(e,t,$,n,baseMerge,r,i);else{var y=r?r(safeGet(e,$),g,$+"",e,t,i):void 0;y===void 0&&(y=g),assignMergeValue(e,$,y)}},keysIn)}function arrayIncludesWith(e,t,n){for(var r=-1,i=e==null?0:e.length;++r=LARGE_ARRAY_SIZE){var j=t?null:createSet$1(e);if(j)return setToArray(j);$=!1,i=cacheHas,k=new SetCache}else k=t?[]:y;e:for(;++rgetComputedStyle(e).position==="fixed"?!1:e.offsetParent!==null,obtainAllFocusableElements$1=e=>Array.from(e.querySelectorAll(FOCUSABLE_ELEMENT_SELECTORS)).filter(t=>isFocusable(t)&&isVisible(t)),isFocusable=e=>{if(e.tabIndex>0||e.tabIndex===0&&e.getAttribute("tabIndex")!==null)return!0;if(e.disabled)return!1;switch(e.nodeName){case"A":return!!e.href&&e.rel!=="ignore";case"INPUT":return!(e.type==="hidden"||e.type==="file");case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}},triggerEvent=function(e,t,...n){let r;t.includes("mouse")||t.includes("click")?r="MouseEvents":t.includes("key")?r="KeyboardEvent":r="HTMLEvents";const i=document.createEvent(r);return i.initEvent(t,...n),e.dispatchEvent(i),e},isLeaf=e=>!e.getAttribute("aria-owns"),getSibling=(e,t,n)=>{const{parentNode:r}=e;if(!r)return null;const i=r.querySelectorAll(n),g=Array.prototype.indexOf.call(i,e);return i[g+t]||null},focusNode=e=>{!e||(e.focus(),!isLeaf(e)&&e.click())},composeEventHandlers=(e,t,{checkForDefaultPrevented:n=!0}={})=>i=>{const g=e==null?void 0:e(i);if(n===!1||!g)return t==null?void 0:t(i)},whenMouse=e=>t=>t.pointerType==="mouse"?e(t):void 0;var __defProp$9=Object.defineProperty,__defProps$6=Object.defineProperties,__getOwnPropDescs$6=Object.getOwnPropertyDescriptors,__getOwnPropSymbols$b=Object.getOwnPropertySymbols,__hasOwnProp$b=Object.prototype.hasOwnProperty,__propIsEnum$b=Object.prototype.propertyIsEnumerable,__defNormalProp$9=(e,t,n)=>t in e?__defProp$9(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,__spreadValues$9=(e,t)=>{for(var n in t||(t={}))__hasOwnProp$b.call(t,n)&&__defNormalProp$9(e,n,t[n]);if(__getOwnPropSymbols$b)for(var n of __getOwnPropSymbols$b(t))__propIsEnum$b.call(t,n)&&__defNormalProp$9(e,n,t[n]);return e},__spreadProps$6=(e,t)=>__defProps$6(e,__getOwnPropDescs$6(t));function computedEager(e,t){var n;const r=shallowRef();return watchEffect(()=>{r.value=e()},__spreadProps$6(__spreadValues$9({},t),{flush:(n=t==null?void 0:t.flush)!=null?n:"sync"})),readonly(r)}var _a;const isClient=typeof window!="undefined",isDef=e=>typeof e!="undefined",isBoolean$1=e=>typeof e=="boolean",isFunction$1=e=>typeof e=="function",isNumber$1=e=>typeof e=="number",isString$1=e=>typeof e=="string",noop=()=>{},isIOS=isClient&&((_a=window==null?void 0:window.navigator)==null?void 0:_a.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function resolveUnref(e){return typeof e=="function"?e():unref(e)}function createFilterWrapper(e,t){function n(...r){return new Promise((i,g)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(i).catch(g)})}return n}function debounceFilter(e,t={}){let n,r,i=noop;const g=y=>{clearTimeout(y),i(),i=noop};return y=>{const k=resolveUnref(e),j=resolveUnref(t.maxWait);return n&&g(n),k<=0||j!==void 0&&j<=0?(r&&(g(r),r=null),Promise.resolve(y())):new Promise((L,V)=>{i=t.rejectOnCancel?V:L,j&&!r&&(r=setTimeout(()=>{n&&g(n),r=null,L(y())},j)),n=setTimeout(()=>{r&&g(r),r=null,L(y())},k)})}}function throttleFilter(e,t=!0,n=!0,r=!1){let i=0,g,$=!0,y=noop,k;const j=()=>{g&&(clearTimeout(g),g=void 0,y(),y=noop)};return V=>{const z=resolveUnref(e),oe=Date.now()-i,re=()=>k=V();return j(),z<=0?(i=Date.now(),re()):(oe>z&&(n||!$)?(i=Date.now(),re()):t&&(k=new Promise((ie,ae)=>{y=r?ae:ie,g=setTimeout(()=>{i=Date.now(),$=!0,ie(re()),j()},Math.max(0,z-oe))})),!n&&!g&&(g=setTimeout(()=>$=!0,z)),$=!1,k)}}function identity(e){return e}function tryOnScopeDispose(e){return getCurrentScope()?(onScopeDispose(e),!0):!1}function useDebounceFn(e,t=200,n={}){return createFilterWrapper(debounceFilter(t,n),e)}function refDebounced(e,t=200,n={}){const r=ref(e.value),i=useDebounceFn(()=>{r.value=e.value},t,n);return watch(e,()=>i()),r}function useThrottleFn(e,t=200,n=!1,r=!0,i=!1){return createFilterWrapper(throttleFilter(t,n,r,i),e)}function tryOnMounted(e,t=!0){getCurrentInstance()?onMounted(e):t?e():nextTick(e)}function useTimeoutFn(e,t,n={}){const{immediate:r=!0}=n,i=ref(!1);let g=null;function $(){g&&(clearTimeout(g),g=null)}function y(){i.value=!1,$()}function k(...j){$(),i.value=!0,g=setTimeout(()=>{i.value=!1,g=null,e(...j)},resolveUnref(t))}return r&&(i.value=!0,isClient&&k()),tryOnScopeDispose(y),{isPending:readonly(i),start:k,stop:y}}function unrefElement(e){var t;const n=resolveUnref(e);return(t=n==null?void 0:n.$el)!=null?t:n}const defaultWindow=isClient?window:void 0,defaultDocument=isClient?window.document:void 0;function useEventListener(...e){let t,n,r,i;if(isString$1(e[0])||Array.isArray(e[0])?([n,r,i]=e,t=defaultWindow):[t,n,r,i]=e,!t)return noop;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const g=[],$=()=>{g.forEach(L=>L()),g.length=0},y=(L,V,z,oe)=>(L.addEventListener(V,z,oe),()=>L.removeEventListener(V,z,oe)),k=watch(()=>[unrefElement(t),resolveUnref(i)],([L,V])=>{$(),L&&g.push(...n.flatMap(z=>r.map(oe=>y(L,z,oe,V))))},{immediate:!0,flush:"post"}),j=()=>{k(),$()};return tryOnScopeDispose(j),j}let _iOSWorkaround=!1;function onClickOutside(e,t,n={}){const{window:r=defaultWindow,ignore:i=[],capture:g=!0,detectIframe:$=!1}=n;if(!r)return;isIOS&&!_iOSWorkaround&&(_iOSWorkaround=!0,Array.from(r.document.body.children).forEach(z=>z.addEventListener("click",noop)));let y=!0;const k=z=>i.some(oe=>{if(typeof oe=="string")return Array.from(r.document.querySelectorAll(oe)).some(re=>re===z.target||z.composedPath().includes(re));{const re=unrefElement(oe);return re&&(z.target===re||z.composedPath().includes(re))}}),L=[useEventListener(r,"click",z=>{const oe=unrefElement(e);if(!(!oe||oe===z.target||z.composedPath().includes(oe))){if(z.detail===0&&(y=!k(z)),!y){y=!0;return}t(z)}},{passive:!0,capture:g}),useEventListener(r,"pointerdown",z=>{const oe=unrefElement(e);oe&&(y=!z.composedPath().includes(oe)&&!k(z))},{passive:!0}),$&&useEventListener(r,"blur",z=>{var oe;const re=unrefElement(e);((oe=r.document.activeElement)==null?void 0:oe.tagName)==="IFRAME"&&!(re!=null&&re.contains(r.document.activeElement))&&t(z)})].filter(Boolean);return()=>L.forEach(z=>z())}function useSupported(e,t=!1){const n=ref(),r=()=>n.value=Boolean(e());return r(),tryOnMounted(r,t),n}function cloneFnJSON(e){return JSON.parse(JSON.stringify(e))}const _global=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},globalKey="__vueuse_ssr_handlers__";_global[globalKey]=_global[globalKey]||{};_global[globalKey];function useCssVar(e,t,{window:n=defaultWindow,initialValue:r=""}={}){const i=ref(r),g=computed(()=>{var $;return unrefElement(t)||(($=n==null?void 0:n.document)==null?void 0:$.documentElement)});return watch([g,()=>resolveUnref(e)],([$,y])=>{var k;if($&&n){const j=(k=n.getComputedStyle($).getPropertyValue(y))==null?void 0:k.trim();i.value=j||r}},{immediate:!0}),watch(i,$=>{var y;(y=g.value)!=null&&y.style&&g.value.style.setProperty(resolveUnref(e),$)}),i}function useDocumentVisibility({document:e=defaultDocument}={}){if(!e)return ref("visible");const t=ref(e.visibilityState);return useEventListener(e,"visibilitychange",()=>{t.value=e.visibilityState}),t}var __getOwnPropSymbols$g=Object.getOwnPropertySymbols,__hasOwnProp$g=Object.prototype.hasOwnProperty,__propIsEnum$g=Object.prototype.propertyIsEnumerable,__objRest$2=(e,t)=>{var n={};for(var r in e)__hasOwnProp$g.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&__getOwnPropSymbols$g)for(var r of __getOwnPropSymbols$g(e))t.indexOf(r)<0&&__propIsEnum$g.call(e,r)&&(n[r]=e[r]);return n};function useResizeObserver(e,t,n={}){const r=n,{window:i=defaultWindow}=r,g=__objRest$2(r,["window"]);let $;const y=useSupported(()=>i&&"ResizeObserver"in i),k=()=>{$&&($.disconnect(),$=void 0)},j=watch(()=>unrefElement(e),V=>{k(),y.value&&i&&V&&($=new ResizeObserver(t),$.observe(V,g))},{immediate:!0,flush:"post"}),L=()=>{k(),j()};return tryOnScopeDispose(L),{isSupported:y,stop:L}}function useElementBounding(e,t={}){const{reset:n=!0,windowResize:r=!0,windowScroll:i=!0,immediate:g=!0}=t,$=ref(0),y=ref(0),k=ref(0),j=ref(0),L=ref(0),V=ref(0),z=ref(0),oe=ref(0);function re(){const ie=unrefElement(e);if(!ie){n&&($.value=0,y.value=0,k.value=0,j.value=0,L.value=0,V.value=0,z.value=0,oe.value=0);return}const ae=ie.getBoundingClientRect();$.value=ae.height,y.value=ae.bottom,k.value=ae.left,j.value=ae.right,L.value=ae.top,V.value=ae.width,z.value=ae.x,oe.value=ae.y}return useResizeObserver(e,re),watch(()=>unrefElement(e),ie=>!ie&&re()),i&&useEventListener("scroll",re,{capture:!0,passive:!0}),r&&useEventListener("resize",re,{passive:!0}),tryOnMounted(()=>{g&&re()}),{height:$,bottom:y,left:k,right:j,top:L,width:V,x:z,y:oe,update:re}}var SwipeDirection;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(SwipeDirection||(SwipeDirection={}));var __defProp=Object.defineProperty,__getOwnPropSymbols=Object.getOwnPropertySymbols,__hasOwnProp=Object.prototype.hasOwnProperty,__propIsEnum=Object.prototype.propertyIsEnumerable,__defNormalProp=(e,t,n)=>t in e?__defProp(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,__spreadValues=(e,t)=>{for(var n in t||(t={}))__hasOwnProp.call(t,n)&&__defNormalProp(e,n,t[n]);if(__getOwnPropSymbols)for(var n of __getOwnPropSymbols(t))__propIsEnum.call(t,n)&&__defNormalProp(e,n,t[n]);return e};const _TransitionPresets={easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]};__spreadValues({linear:identity},_TransitionPresets);function useVModel(e,t,n,r={}){var i,g,$;const{clone:y=!1,passive:k=!1,eventName:j,deep:L=!1,defaultValue:V}=r,z=getCurrentInstance(),oe=n||(z==null?void 0:z.emit)||((i=z==null?void 0:z.$emit)==null?void 0:i.bind(z))||(($=(g=z==null?void 0:z.proxy)==null?void 0:g.$emit)==null?void 0:$.bind(z==null?void 0:z.proxy));let re=j;t||(t="modelValue"),re=j||re||`update:${t.toString()}`;const ie=le=>y?isFunction$1(y)?y(le):cloneFnJSON(le):le,ae=()=>isDef(e[t])?ie(e[t]):V;if(k){const le=ae(),de=ref(le);return watch(()=>e[t],pe=>de.value=ie(pe)),watch(de,pe=>{(pe!==e[t]||L)&&oe(re,pe)},{deep:L}),de}else return computed({get(){return ae()},set(le){oe(re,le)}})}function useWindowFocus({window:e=defaultWindow}={}){if(!e)return ref(!1);const t=ref(e.document.hasFocus());return useEventListener(e,"blur",()=>{t.value=!1}),useEventListener(e,"focus",()=>{t.value=!0}),t}function useWindowSize(e={}){const{window:t=defaultWindow,initialWidth:n=1/0,initialHeight:r=1/0,listenOrientation:i=!0,includeScrollbar:g=!0}=e,$=ref(n),y=ref(r),k=()=>{t&&(g?($.value=t.innerWidth,y.value=t.innerHeight):($.value=t.document.documentElement.clientWidth,y.value=t.document.documentElement.clientHeight))};return k(),tryOnMounted(k),useEventListener("resize",k,{passive:!0}),i&&useEventListener("orientationchange",k,{passive:!0}),{width:$,height:y}}const isInContainer=(e,t)=>{if(!isClient||!e||!t)return!1;const n=e.getBoundingClientRect();let r;return t instanceof Element?r=t.getBoundingClientRect():r={top:0,right:window.innerWidth,bottom:window.innerHeight,left:0},n.topr.top&&n.right>r.left&&n.left{let t=0,n=e;for(;n;)t+=n.offsetTop,n=n.offsetParent;return t},getOffsetTopDistance=(e,t)=>Math.abs(getOffsetTop(e)-getOffsetTop(t)),getClientXY=e=>{let t,n;return e.type==="touchend"?(n=e.changedTouches[0].clientY,t=e.changedTouches[0].clientX):e.type.startsWith("touch")?(n=e.touches[0].clientY,t=e.touches[0].clientX):(n=e.clientY,t=e.clientX),{clientX:t,clientY:n}},isUndefined=e=>e===void 0,isEmpty=e=>!e&&e!==0||isArray$4(e)&&e.length===0||isObject$4(e)&&!Object.keys(e).length,isElement$1=e=>typeof Element=="undefined"?!1:e instanceof Element,isPropAbsent=e=>isNil(e),isStringNumber=e=>isString$3(e)?!Number.isNaN(Number(e)):!1,escapeStringRegexp=(e="")=>e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d"),capitalize=e=>capitalize$1(e),keysOf=e=>Object.keys(e),entriesOf=e=>Object.entries(e),getProp=(e,t,n)=>({get value(){return get$1(e,t,n)},set value(r){set(e,t,r)}});class ElementPlusError extends Error{constructor(t){super(t),this.name="ElementPlusError"}}function throwError(e,t){throw new ElementPlusError(`[${e}] ${t}`)}function debugWarn(e,t){}const classNameToArray=(e="")=>e.split(" ").filter(t=>!!t.trim()),hasClass=(e,t)=>{if(!e||!t)return!1;if(t.includes(" "))throw new Error("className should not contain space.");return e.classList.contains(t)},addClass=(e,t)=>{!e||!t.trim()||e.classList.add(...classNameToArray(t))},removeClass=(e,t)=>{!e||!t.trim()||e.classList.remove(...classNameToArray(t))},getStyle=(e,t)=>{var n;if(!isClient||!e||!t)return"";let r=camelize(t);r==="float"&&(r="cssFloat");try{const i=e.style[r];if(i)return i;const g=(n=document.defaultView)==null?void 0:n.getComputedStyle(e,"");return g?g[r]:""}catch{return e.style[r]}};function addUnit(e,t="px"){if(!e)return"";if(isNumber$1(e)||isStringNumber(e))return`${e}${t}`;if(isString$3(e))return e}const isScroll=(e,t)=>{if(!isClient)return!1;const n={undefined:"overflow",true:"overflow-y",false:"overflow-x"}[String(t)],r=getStyle(e,n);return["scroll","auto","overlay"].some(i=>r.includes(i))},getScrollContainer=(e,t)=>{if(!isClient)return;let n=e;for(;n;){if([window,document,document.documentElement].includes(n))return window;if(isScroll(n,t))return n;n=n.parentNode}return n};let scrollBarWidth;const getScrollBarWidth=e=>{var t;if(!isClient)return 0;if(scrollBarWidth!==void 0)return scrollBarWidth;const n=document.createElement("div");n.className=`${e}-scrollbar__wrap`,n.style.visibility="hidden",n.style.width="100px",n.style.position="absolute",n.style.top="-9999px",document.body.appendChild(n);const r=n.offsetWidth;n.style.overflow="scroll";const i=document.createElement("div");i.style.width="100%",n.appendChild(i);const g=i.offsetWidth;return(t=n.parentNode)==null||t.removeChild(n),scrollBarWidth=r-g,scrollBarWidth};function scrollIntoView(e,t){if(!isClient)return;if(!t){e.scrollTop=0;return}const n=[];let r=t.offsetParent;for(;r!==null&&e!==r&&e.contains(r);)n.push(r),r=r.offsetParent;const i=t.offsetTop+n.reduce((k,j)=>k+j.offsetTop,0),g=i+t.offsetHeight,$=e.scrollTop,y=$+e.clientHeight;i<$?e.scrollTop=i:g>y&&(e.scrollTop=g-e.clientHeight)}const epPropKey="__epPropKey",definePropType=e=>e,isEpProp=e=>isObject$4(e)&&!!e[epPropKey],buildProp=(e,t)=>{if(!isObject$4(e)||isEpProp(e))return e;const{values:n,required:r,default:i,type:g,validator:$}=e,k={type:g,required:!!r,validator:n||$?j=>{let L=!1,V=[];if(n&&(V=Array.from(n),hasOwn$2(e,"default")&&V.push(i),L||(L=V.includes(j))),$&&(L||(L=$(j))),!L&&V.length>0){const z=[...new Set(V)].map(oe=>JSON.stringify(oe)).join(", ");warn$1(`Invalid prop: validation failed${t?` for prop "${t}"`:""}. Expected one of [${z}], got value ${JSON.stringify(j)}.`)}return L}:void 0,[epPropKey]:!0};return hasOwn$2(e,"default")&&(k.default=i),k},buildProps=e=>fromPairs(Object.entries(e).map(([t,n])=>[t,buildProp(n,t)])),iconPropType=definePropType([String,Object,Function]),CloseComponents={Close:close_default},TypeComponents={Close:close_default,SuccessFilled:success_filled_default,InfoFilled:info_filled_default,WarningFilled:warning_filled_default,CircleCloseFilled:circle_close_filled_default},TypeComponentsMap={success:success_filled_default,warning:warning_filled_default,error:circle_close_filled_default,info:info_filled_default},ValidateComponentsMap={validating:loading_default,success:circle_check_default,error:circle_close_default},withInstall=(e,t)=>{if(e.install=n=>{for(const r of[e,...Object.values(t!=null?t:{})])n.component(r.name,r)},t)for(const[n,r]of Object.entries(t))e[n]=r;return e},withInstallFunction=(e,t)=>(e.install=n=>{e._context=n._context,n.config.globalProperties[t]=e},e),withInstallDirective=(e,t)=>(e.install=n=>{n.directive(t,e)},e),withNoopInstall=e=>(e.install=NOOP,e),composeRefs=(...e)=>t=>{e.forEach(n=>{isFunction$4(n)?n(t):n.value=t})},EVENT_CODE={tab:"Tab",enter:"Enter",space:"Space",left:"ArrowLeft",up:"ArrowUp",right:"ArrowRight",down:"ArrowDown",esc:"Escape",delete:"Delete",backspace:"Backspace",numpadEnter:"NumpadEnter",pageUp:"PageUp",pageDown:"PageDown",home:"Home",end:"End"},datePickTypes=["year","month","date","dates","week","datetime","datetimerange","daterange","monthrange"],WEEK_DAYS=["sun","mon","tue","wed","thu","fri","sat"],UPDATE_MODEL_EVENT="update:modelValue",CHANGE_EVENT="change",INPUT_EVENT="input",INSTALLED_KEY=Symbol("INSTALLED_KEY"),componentSizes=["","default","small","large"],componentSizeMap={large:40,default:32,small:24},getComponentSize=e=>componentSizeMap[e||"default"],isValidComponentSize=e=>["",...componentSizes].includes(e);var PatchFlags=(e=>(e[e.TEXT=1]="TEXT",e[e.CLASS=2]="CLASS",e[e.STYLE=4]="STYLE",e[e.PROPS=8]="PROPS",e[e.FULL_PROPS=16]="FULL_PROPS",e[e.HYDRATE_EVENTS=32]="HYDRATE_EVENTS",e[e.STABLE_FRAGMENT=64]="STABLE_FRAGMENT",e[e.KEYED_FRAGMENT=128]="KEYED_FRAGMENT",e[e.UNKEYED_FRAGMENT=256]="UNKEYED_FRAGMENT",e[e.NEED_PATCH=512]="NEED_PATCH",e[e.DYNAMIC_SLOTS=1024]="DYNAMIC_SLOTS",e[e.HOISTED=-1]="HOISTED",e[e.BAIL=-2]="BAIL",e))(PatchFlags||{});function isFragment(e){return isVNode(e)&&e.type===Fragment}function isComment(e){return isVNode(e)&&e.type===Comment}function isValidElementNode(e){return isVNode(e)&&!isFragment(e)&&!isComment(e)}const getNormalizedProps=e=>{if(!isVNode(e))return{};const t=e.props||{},n=(isVNode(e.type)?e.type.props:void 0)||{},r={};return Object.keys(n).forEach(i=>{hasOwn$2(n[i],"default")&&(r[i]=n[i].default)}),Object.keys(t).forEach(i=>{r[camelize(i)]=t[i]}),r},ensureOnlyChild=e=>{if(!isArray$4(e)||e.length>1)throw new Error("expect to receive a single Vue element child");return e[0]},flattedChildren=e=>{const t=isArray$4(e)?e:[e],n=[];return t.forEach(r=>{var i;isArray$4(r)?n.push(...flattedChildren(r)):isVNode(r)&&isArray$4(r.children)?n.push(...flattedChildren(r.children)):(n.push(r),isVNode(r)&&((i=r.component)==null?void 0:i.subTree)&&n.push(...flattedChildren(r.component.subTree)))}),n},cubic=e=>e**3,easeInOutCubic=e=>e<.5?cubic(e*2)/2:1-cubic((1-e)*2)/2,unique=e=>[...new Set(e)],castArray=e=>!e&&e!==0?[]:Array.isArray(e)?e:[e],isFirefox=()=>isClient&&/firefox/i.test(window.navigator.userAgent),isKorean=e=>/([(\uAC00-\uD7AF)|(\u3130-\u318F)])+/gi.test(e),rAF=e=>isClient?window.requestAnimationFrame(e):setTimeout(e,16),cAF=e=>isClient?window.cancelAnimationFrame(e):clearTimeout(e),generateId=()=>Math.floor(Math.random()*1e4),mutable=e=>e,DEFAULT_EXCLUDE_KEYS=["class","style"],LISTENER_PREFIX=/^on[A-Z]/,useAttrs=(e={})=>{const{excludeListeners:t=!1,excludeKeys:n}=e,r=computed(()=>((n==null?void 0:n.value)||[]).concat(DEFAULT_EXCLUDE_KEYS)),i=getCurrentInstance();return i?computed(()=>{var g;return fromPairs(Object.entries((g=i.proxy)==null?void 0:g.$attrs).filter(([$])=>!r.value.includes($)&&!(t&&LISTENER_PREFIX.test($))))}):computed(()=>({}))},breadcrumbKey=Symbol("breadcrumbKey"),buttonGroupContextKey=Symbol("buttonGroupContextKey"),carouselContextKey=Symbol("carouselContextKey"),checkboxGroupContextKey=Symbol("checkboxGroupContextKey"),collapseContextKey=Symbol("collapseContextKey"),configProviderContextKey=Symbol(),dialogInjectionKey=Symbol("dialogInjectionKey"),formContextKey=Symbol("formContextKey"),formItemContextKey=Symbol("formItemContextKey"),elPaginationKey=Symbol("elPaginationKey"),radioGroupKey=Symbol("radioGroupKey"),rowContextKey=Symbol("rowContextKey"),scrollbarContextKey=Symbol("scrollbarContextKey"),sliderContextKey=Symbol("sliderContextKey"),tabsRootContextKey=Symbol("tabsRootContextKey"),uploadContextKey=Symbol("uploadContextKey"),POPPER_INJECTION_KEY=Symbol("popper"),POPPER_CONTENT_INJECTION_KEY=Symbol("popperContent"),TOOLTIP_INJECTION_KEY=Symbol("elTooltip"),tooltipV2RootKey=Symbol("tooltipV2"),tooltipV2ContentKey=Symbol("tooltipV2Content"),TOOLTIP_V2_OPEN="tooltip_v2.open",ROOT_PICKER_INJECTION_KEY=Symbol(),useProp=e=>{const t=getCurrentInstance();return computed(()=>{var n,r;return(r=((n=t.proxy)==null?void 0:n.$props)[e])!=null?r:void 0})},globalConfig=ref();function useGlobalConfig(e,t=void 0){const n=getCurrentInstance()?inject(configProviderContextKey,globalConfig):globalConfig;return e?computed(()=>{var r,i;return(i=(r=n.value)==null?void 0:r[e])!=null?i:t}):n}const provideGlobalConfig=(e,t,n=!1)=>{var r;const i=!!getCurrentInstance(),g=i?useGlobalConfig():void 0,$=(r=t==null?void 0:t.provide)!=null?r:i?provide:void 0;if(!$)return;const y=computed(()=>{const k=unref(e);return g!=null&&g.value?mergeConfig(g.value,k):k});return $(configProviderContextKey,y),(n||!globalConfig.value)&&(globalConfig.value=y.value),y},mergeConfig=(e,t)=>{var n;const r=[...new Set([...keysOf(e),...keysOf(t)])],i={};for(const g of r)i[g]=(n=t[g])!=null?n:e[g];return i},useSizeProp=buildProp({type:String,values:componentSizes,required:!1}),useSize=(e,t={})=>{const n=ref(void 0),r=t.prop?n:useProp("size"),i=t.global?n:useGlobalConfig("size"),g=t.form?{size:void 0}:inject(formContextKey,void 0),$=t.formItem?{size:void 0}:inject(formItemContextKey,void 0);return computed(()=>r.value||unref(e)||($==null?void 0:$.size)||(g==null?void 0:g.size)||i.value||"")},useDisabled=e=>{const t=useProp("disabled"),n=inject(formContextKey,void 0);return computed(()=>t.value||unref(e)||(n==null?void 0:n.disabled)||!1)},useDeprecated=({from:e,replacement:t,scope:n,version:r,ref:i,type:g="API"},$)=>{watch(()=>unref($),y=>{},{immediate:!0})},useDraggable=(e,t,n)=>{let r={offsetX:0,offsetY:0};const i=y=>{const k=y.clientX,j=y.clientY,{offsetX:L,offsetY:V}=r,z=e.value.getBoundingClientRect(),oe=z.left,re=z.top,ie=z.width,ae=z.height,le=document.documentElement.clientWidth,de=document.documentElement.clientHeight,pe=-oe+L,he=-re+V,ue=le-oe-ie+L,_e=de-re-ae+V,Ie=Oe=>{const $e=Math.min(Math.max(L+Oe.clientX-k,pe),ue),qe=Math.min(Math.max(V+Oe.clientY-j,he),_e);r={offsetX:$e,offsetY:qe},e.value.style.transform=`translate(${addUnit($e)}, ${addUnit(qe)})`},Ce=()=>{document.removeEventListener("mousemove",Ie),document.removeEventListener("mouseup",Ce)};document.addEventListener("mousemove",Ie),document.addEventListener("mouseup",Ce)},g=()=>{t.value&&e.value&&t.value.addEventListener("mousedown",i)},$=()=>{t.value&&e.value&&t.value.removeEventListener("mousedown",i)};onMounted(()=>{watchEffect(()=>{n.value?g():$()})}),onBeforeUnmount(()=>{$()})},useFocus=e=>({focus:()=>{var t,n;(n=(t=e.value)==null?void 0:t.focus)==null||n.call(t)}}),defaultNamespace="el",statePrefix="is-",_bem=(e,t,n,r,i)=>{let g=`${e}-${t}`;return n&&(g+=`-${n}`),r&&(g+=`__${r}`),i&&(g+=`--${i}`),g},useNamespace=e=>{const t=useGlobalConfig("namespace",defaultNamespace);return{namespace:t,b:(re="")=>_bem(t.value,e,re,"",""),e:re=>re?_bem(t.value,e,"",re,""):"",m:re=>re?_bem(t.value,e,"","",re):"",be:(re,ie)=>re&&ie?_bem(t.value,e,re,ie,""):"",em:(re,ie)=>re&&ie?_bem(t.value,e,"",re,ie):"",bm:(re,ie)=>re&&ie?_bem(t.value,e,re,"",ie):"",bem:(re,ie,ae)=>re&&ie&&ae?_bem(t.value,e,re,ie,ae):"",is:(re,...ie)=>{const ae=ie.length>=1?ie[0]:!0;return re&&ae?`${statePrefix}${re}`:""},cssVar:re=>{const ie={};for(const ae in re)re[ae]&&(ie[`--${t.value}-${ae}`]=re[ae]);return ie},cssVarName:re=>`--${t.value}-${re}`,cssVarBlock:re=>{const ie={};for(const ae in re)re[ae]&&(ie[`--${t.value}-${e}-${ae}`]=re[ae]);return ie},cssVarBlockName:re=>`--${t.value}-${e}-${re}`}},defaultIdInjection={prefix:Math.floor(Math.random()*1e4),current:0},ID_INJECTION_KEY=Symbol("elIdInjection"),useIdInjection=()=>getCurrentInstance()?inject(ID_INJECTION_KEY,defaultIdInjection):defaultIdInjection,useId=e=>{const t=useIdInjection(),n=useGlobalConfig("namespace",defaultNamespace);return computed(()=>unref(e)||`${n.value}-id-${t.prefix}-${t.current++}`)},useFormItem=()=>{const e=inject(formContextKey,void 0),t=inject(formItemContextKey,void 0);return{form:e,formItem:t}},useFormItemInputId=(e,{formItemContext:t,disableIdGeneration:n,disableIdManagement:r})=>{n||(n=ref(!1)),r||(r=ref(!1));const i=ref();let g;const $=computed(()=>{var y;return!!(!e.label&&t&&t.inputIds&&((y=t.inputIds)==null?void 0:y.length)<=1)});return onMounted(()=>{g=watch([toRef(e,"id"),n],([y,k])=>{const j=y!=null?y:k?void 0:useId().value;j!==i.value&&(t!=null&&t.removeInputId&&(i.value&&t.removeInputId(i.value),!(r!=null&&r.value)&&!k&&j&&t.addInputId(j)),i.value=j)},{immediate:!0})}),onUnmounted(()=>{g&&g(),t!=null&&t.removeInputId&&i.value&&t.removeInputId(i.value)}),{isLabeledByFormItem:$,inputId:i}};var English={name:"en",el:{colorpicker:{confirm:"OK",clear:"Clear",defaultLabel:"color picker",description:"current color is {color}. press enter to select a new color."},datepicker:{now:"Now",today:"Today",cancel:"Cancel",clear:"Clear",confirm:"OK",dateTablePrompt:"Use the arrow keys and enter to select the day of the month",monthTablePrompt:"Use the arrow keys and enter to select the month",yearTablePrompt:"Use the arrow keys and enter to select the year",selectedDate:"Selected date",selectDate:"Select date",selectTime:"Select time",startDate:"Start Date",startTime:"Start Time",endDate:"End Date",endTime:"End Time",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",year:"",month1:"January",month2:"February",month3:"March",month4:"April",month5:"May",month6:"June",month7:"July",month8:"August",month9:"September",month10:"October",month11:"November",month12:"December",week:"week",weeks:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},weeksFull:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"},months:{jan:"Jan",feb:"Feb",mar:"Mar",apr:"Apr",may:"May",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Oct",nov:"Nov",dec:"Dec"}},inputNumber:{decrease:"decrease number",increase:"increase number"},select:{loading:"Loading",noMatch:"No matching data",noData:"No data",placeholder:"Select"},dropdown:{toggleDropdown:"Toggle Dropdown"},cascader:{noMatch:"No matching data",loading:"Loading",placeholder:"Select",noData:"No data"},pagination:{goto:"Go to",pagesize:"/page",total:"Total {total}",pageClassifier:"",deprecationWarning:"Deprecated usages detected, please refer to the el-pagination documentation for more details"},dialog:{close:"Close this dialog"},drawer:{close:"Close this dialog"},messagebox:{title:"Message",confirm:"OK",cancel:"Cancel",error:"Illegal input",close:"Close this dialog"},upload:{deleteTip:"press delete to remove",delete:"Delete",preview:"Preview",continue:"Continue"},slider:{defaultLabel:"slider between {min} and {max}",defaultRangeStartLabel:"pick start value",defaultRangeEndLabel:"pick end value"},table:{emptyText:"No Data",confirmFilter:"Confirm",resetFilter:"Reset",clearFilter:"All",sumText:"Sum"},tree:{emptyText:"No Data"},transfer:{noMatch:"No matching data",noData:"No data",titles:["List 1","List 2"],filterPlaceholder:"Enter keyword",noCheckedFormat:"{total} items",hasCheckedFormat:"{checked}/{total} checked"},image:{error:"FAILED"},pageHeader:{title:"Back"},popconfirm:{confirmButtonText:"Yes",cancelButtonText:"No"}}};const buildTranslator=e=>(t,n)=>translate$1(t,n,unref(e)),translate$1=(e,t,n)=>get$1(n,e,e).replace(/\{(\w+)\}/g,(r,i)=>{var g;return`${(g=t==null?void 0:t[i])!=null?g:`{${i}}`}`}),buildLocaleContext=e=>{const t=computed(()=>unref(e).name),n=isRef(e)?e:ref(e);return{lang:t,locale:n,t:buildTranslator(e)}},useLocale=()=>{const e=useGlobalConfig("locale");return buildLocaleContext(computed(()=>e.value||English))},useLockscreen=e=>{isRef(e)||throwError("[useLockscreen]","You need to pass a ref param to this function");const t=useNamespace("popup"),n=computed$1(()=>t.bm("parent","hidden"));if(!isClient||hasClass(document.body,n.value))return;let r=0,i=!1,g="0";const $=()=>{setTimeout(()=>{removeClass(document.body,n.value),i&&(document.body.style.width=g)},200)};watch(e,y=>{if(!y){$();return}i=!hasClass(document.body,n.value),i&&(g=document.body.style.width),r=getScrollBarWidth(t.namespace.value);const k=document.documentElement.clientHeight0&&(k||j==="scroll")&&i&&(document.body.style.width=`calc(100% - ${r}px)`),addClass(document.body,n.value)}),onScopeDispose(()=>$())},_prop=buildProp({type:definePropType(Boolean),default:null}),_event=buildProp({type:definePropType(Function)}),createModelToggleComposable=e=>{const t=`update:${e}`,n=`onUpdate:${e}`,r=[t],i={[e]:_prop,[n]:_event};return{useModelToggle:({indicator:$,toggleReason:y,shouldHideWhenRouteChanges:k,shouldProceed:j,onShow:L,onHide:V})=>{const z=getCurrentInstance(),{emit:oe}=z,re=z.props,ie=computed(()=>isFunction$4(re[n])),ae=computed(()=>re[e]===null),le=Ie=>{$.value!==!0&&($.value=!0,y&&(y.value=Ie),isFunction$4(L)&&L(Ie))},de=Ie=>{$.value!==!1&&($.value=!1,y&&(y.value=Ie),isFunction$4(V)&&V(Ie))},pe=Ie=>{if(re.disabled===!0||isFunction$4(j)&&!j())return;const Ce=ie.value&&isClient;Ce&&oe(t,!0),(ae.value||!Ce)&&le(Ie)},he=Ie=>{if(re.disabled===!0||!isClient)return;const Ce=ie.value&&isClient;Ce&&oe(t,!1),(ae.value||!Ce)&&de(Ie)},ue=Ie=>{!isBoolean$1(Ie)||(re.disabled&&Ie?ie.value&&oe(t,!1):$.value!==Ie&&(Ie?le():de()))},_e=()=>{$.value?he():pe()};return watch(()=>re[e],ue),k&&z.appContext.config.globalProperties.$route!==void 0&&watch(()=>({...z.proxy.$route}),()=>{k.value&&$.value&&he()}),onMounted(()=>{ue(re[e])}),{hide:he,show:pe,toggle:_e,hasUpdateHandler:ie}},useModelToggleProps:i,useModelToggleEmits:r}};var E$1="top",R="bottom",W="right",P$1="left",me="auto",G=[E$1,R,W,P$1],U$1="start",J="end",Xe="clippingParents",je="viewport",K="popper",Ye="reference",De=G.reduce(function(e,t){return e.concat([t+"-"+U$1,t+"-"+J])},[]),Ee=[].concat(G,[me]).reduce(function(e,t){return e.concat([t,t+"-"+U$1,t+"-"+J])},[]),Ge="beforeRead",Je="read",Ke="afterRead",Qe="beforeMain",Ze="main",et="afterMain",tt="beforeWrite",nt="write",rt="afterWrite",ot=[Ge,Je,Ke,Qe,Ze,et,tt,nt,rt];function C(e){return e?(e.nodeName||"").toLowerCase():null}function H(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function Q(e){var t=H(e).Element;return e instanceof t||e instanceof Element}function B(e){var t=H(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function Pe(e){if(typeof ShadowRoot=="undefined")return!1;var t=H(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function Mt(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var r=t.styles[n]||{},i=t.attributes[n]||{},g=t.elements[n];!B(g)||!C(g)||(Object.assign(g.style,r),Object.keys(i).forEach(function($){var y=i[$];y===!1?g.removeAttribute($):g.setAttribute($,y===!0?"":y)}))})}function Rt(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(r){var i=t.elements[r],g=t.attributes[r]||{},$=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:n[r]),y=$.reduce(function(k,j){return k[j]="",k},{});!B(i)||!C(i)||(Object.assign(i.style,y),Object.keys(g).forEach(function(k){i.removeAttribute(k)}))})}}var Ae={name:"applyStyles",enabled:!0,phase:"write",fn:Mt,effect:Rt,requires:["computeStyles"]};function q(e){return e.split("-")[0]}var X$1=Math.max,ve=Math.min,Z=Math.round;function ee(e,t){t===void 0&&(t=!1);var n=e.getBoundingClientRect(),r=1,i=1;if(B(e)&&t){var g=e.offsetHeight,$=e.offsetWidth;$>0&&(r=Z(n.width)/$||1),g>0&&(i=Z(n.height)/g||1)}return{width:n.width/r,height:n.height/i,top:n.top/i,right:n.right/r,bottom:n.bottom/i,left:n.left/r,x:n.left/r,y:n.top/i}}function ke(e){var t=ee(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function it(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&Pe(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function N$1(e){return H(e).getComputedStyle(e)}function Wt(e){return["table","td","th"].indexOf(C(e))>=0}function I$1(e){return((Q(e)?e.ownerDocument:e.document)||window.document).documentElement}function ge(e){return C(e)==="html"?e:e.assignedSlot||e.parentNode||(Pe(e)?e.host:null)||I$1(e)}function at(e){return!B(e)||N$1(e).position==="fixed"?null:e.offsetParent}function Bt(e){var t=navigator.userAgent.toLowerCase().indexOf("firefox")!==-1,n=navigator.userAgent.indexOf("Trident")!==-1;if(n&&B(e)){var r=N$1(e);if(r.position==="fixed")return null}var i=ge(e);for(Pe(i)&&(i=i.host);B(i)&&["html","body"].indexOf(C(i))<0;){var g=N$1(i);if(g.transform!=="none"||g.perspective!=="none"||g.contain==="paint"||["transform","perspective"].indexOf(g.willChange)!==-1||t&&g.willChange==="filter"||t&&g.filter&&g.filter!=="none")return i;i=i.parentNode}return null}function se(e){for(var t=H(e),n=at(e);n&&Wt(n)&&N$1(n).position==="static";)n=at(n);return n&&(C(n)==="html"||C(n)==="body"&&N$1(n).position==="static")?t:n||Bt(e)||t}function Le(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function fe(e,t,n){return X$1(e,ve(t,n))}function St(e,t,n){var r=fe(e,t,n);return r>n?n:r}function st(){return{top:0,right:0,bottom:0,left:0}}function ft(e){return Object.assign({},st(),e)}function ct(e,t){return t.reduce(function(n,r){return n[r]=e,n},{})}var Tt=function(e,t){return e=typeof e=="function"?e(Object.assign({},t.rects,{placement:t.placement})):e,ft(typeof e!="number"?e:ct(e,G))};function Ht(e){var t,n=e.state,r=e.name,i=e.options,g=n.elements.arrow,$=n.modifiersData.popperOffsets,y=q(n.placement),k=Le(y),j=[P$1,W].indexOf(y)>=0,L=j?"height":"width";if(!(!g||!$)){var V=Tt(i.padding,n),z=ke(g),oe=k==="y"?E$1:P$1,re=k==="y"?R:W,ie=n.rects.reference[L]+n.rects.reference[k]-$[k]-n.rects.popper[L],ae=$[k]-n.rects.reference[k],le=se(g),de=le?k==="y"?le.clientHeight||0:le.clientWidth||0:0,pe=ie/2-ae/2,he=V[oe],ue=de-z[L]-V[re],_e=de/2-z[L]/2+pe,Ie=fe(he,_e,ue),Ce=k;n.modifiersData[r]=(t={},t[Ce]=Ie,t.centerOffset=Ie-_e,t)}}function Ct(e){var t=e.state,n=e.options,r=n.element,i=r===void 0?"[data-popper-arrow]":r;i!=null&&(typeof i=="string"&&(i=t.elements.popper.querySelector(i),!i)||!it(t.elements.popper,i)||(t.elements.arrow=i))}var pt={name:"arrow",enabled:!0,phase:"main",fn:Ht,effect:Ct,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function te(e){return e.split("-")[1]}var qt={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Vt(e){var t=e.x,n=e.y,r=window,i=r.devicePixelRatio||1;return{x:Z(t*i)/i||0,y:Z(n*i)/i||0}}function ut(e){var t,n=e.popper,r=e.popperRect,i=e.placement,g=e.variation,$=e.offsets,y=e.position,k=e.gpuAcceleration,j=e.adaptive,L=e.roundOffsets,V=e.isFixed,z=$.x,oe=z===void 0?0:z,re=$.y,ie=re===void 0?0:re,ae=typeof L=="function"?L({x:oe,y:ie}):{x:oe,y:ie};oe=ae.x,ie=ae.y;var le=$.hasOwnProperty("x"),de=$.hasOwnProperty("y"),pe=P$1,he=E$1,ue=window;if(j){var _e=se(n),Ie="clientHeight",Ce="clientWidth";if(_e===H(n)&&(_e=I$1(n),N$1(_e).position!=="static"&&y==="absolute"&&(Ie="scrollHeight",Ce="scrollWidth")),_e=_e,i===E$1||(i===P$1||i===W)&&g===J){he=R;var Oe=V&&_e===ue&&ue.visualViewport?ue.visualViewport.height:_e[Ie];ie-=Oe-r.height,ie*=k?1:-1}if(i===P$1||(i===E$1||i===R)&&g===J){pe=W;var $e=V&&_e===ue&&ue.visualViewport?ue.visualViewport.width:_e[Ce];oe-=$e-r.width,oe*=k?1:-1}}var qe=Object.assign({position:y},j&&qt),ze=L===!0?Vt({x:oe,y:ie}):{x:oe,y:ie};if(oe=ze.x,ie=ze.y,k){var Ue;return Object.assign({},qe,(Ue={},Ue[he]=de?"0":"",Ue[pe]=le?"0":"",Ue.transform=(ue.devicePixelRatio||1)<=1?"translate("+oe+"px, "+ie+"px)":"translate3d("+oe+"px, "+ie+"px, 0)",Ue))}return Object.assign({},qe,(t={},t[he]=de?ie+"px":"",t[pe]=le?oe+"px":"",t.transform="",t))}function Nt(e){var t=e.state,n=e.options,r=n.gpuAcceleration,i=r===void 0?!0:r,g=n.adaptive,$=g===void 0?!0:g,y=n.roundOffsets,k=y===void 0?!0:y,j={placement:q(t.placement),variation:te(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:i,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,ut(Object.assign({},j,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:$,roundOffsets:k})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,ut(Object.assign({},j,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:k})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}var Me={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:Nt,data:{}},ye={passive:!0};function It(e){var t=e.state,n=e.instance,r=e.options,i=r.scroll,g=i===void 0?!0:i,$=r.resize,y=$===void 0?!0:$,k=H(t.elements.popper),j=[].concat(t.scrollParents.reference,t.scrollParents.popper);return g&&j.forEach(function(L){L.addEventListener("scroll",n.update,ye)}),y&&k.addEventListener("resize",n.update,ye),function(){g&&j.forEach(function(L){L.removeEventListener("scroll",n.update,ye)}),y&&k.removeEventListener("resize",n.update,ye)}}var Re={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:It,data:{}},_t={left:"right",right:"left",bottom:"top",top:"bottom"};function be(e){return e.replace(/left|right|bottom|top/g,function(t){return _t[t]})}var zt={start:"end",end:"start"};function lt(e){return e.replace(/start|end/g,function(t){return zt[t]})}function We(e){var t=H(e),n=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:n,scrollTop:r}}function Be(e){return ee(I$1(e)).left+We(e).scrollLeft}function Ft(e){var t=H(e),n=I$1(e),r=t.visualViewport,i=n.clientWidth,g=n.clientHeight,$=0,y=0;return r&&(i=r.width,g=r.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||($=r.offsetLeft,y=r.offsetTop)),{width:i,height:g,x:$+Be(e),y}}function Ut(e){var t,n=I$1(e),r=We(e),i=(t=e.ownerDocument)==null?void 0:t.body,g=X$1(n.scrollWidth,n.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),$=X$1(n.scrollHeight,n.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0),y=-r.scrollLeft+Be(e),k=-r.scrollTop;return N$1(i||n).direction==="rtl"&&(y+=X$1(n.clientWidth,i?i.clientWidth:0)-g),{width:g,height:$,x:y,y:k}}function Se(e){var t=N$1(e),n=t.overflow,r=t.overflowX,i=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+i+r)}function dt(e){return["html","body","#document"].indexOf(C(e))>=0?e.ownerDocument.body:B(e)&&Se(e)?e:dt(ge(e))}function ce(e,t){var n;t===void 0&&(t=[]);var r=dt(e),i=r===((n=e.ownerDocument)==null?void 0:n.body),g=H(r),$=i?[g].concat(g.visualViewport||[],Se(r)?r:[]):r,y=t.concat($);return i?y:y.concat(ce(ge($)))}function Te(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function Xt(e){var t=ee(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}function ht(e,t){return t===je?Te(Ft(e)):Q(t)?Xt(t):Te(Ut(I$1(e)))}function Yt(e){var t=ce(ge(e)),n=["absolute","fixed"].indexOf(N$1(e).position)>=0,r=n&&B(e)?se(e):e;return Q(r)?t.filter(function(i){return Q(i)&&it(i,r)&&C(i)!=="body"}):[]}function Gt(e,t,n){var r=t==="clippingParents"?Yt(e):[].concat(t),i=[].concat(r,[n]),g=i[0],$=i.reduce(function(y,k){var j=ht(e,k);return y.top=X$1(j.top,y.top),y.right=ve(j.right,y.right),y.bottom=ve(j.bottom,y.bottom),y.left=X$1(j.left,y.left),y},ht(e,g));return $.width=$.right-$.left,$.height=$.bottom-$.top,$.x=$.left,$.y=$.top,$}function mt(e){var t=e.reference,n=e.element,r=e.placement,i=r?q(r):null,g=r?te(r):null,$=t.x+t.width/2-n.width/2,y=t.y+t.height/2-n.height/2,k;switch(i){case E$1:k={x:$,y:t.y-n.height};break;case R:k={x:$,y:t.y+t.height};break;case W:k={x:t.x+t.width,y};break;case P$1:k={x:t.x-n.width,y};break;default:k={x:t.x,y:t.y}}var j=i?Le(i):null;if(j!=null){var L=j==="y"?"height":"width";switch(g){case U$1:k[j]=k[j]-(t[L]/2-n[L]/2);break;case J:k[j]=k[j]+(t[L]/2-n[L]/2);break}}return k}function ne(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=r===void 0?e.placement:r,g=n.boundary,$=g===void 0?Xe:g,y=n.rootBoundary,k=y===void 0?je:y,j=n.elementContext,L=j===void 0?K:j,V=n.altBoundary,z=V===void 0?!1:V,oe=n.padding,re=oe===void 0?0:oe,ie=ft(typeof re!="number"?re:ct(re,G)),ae=L===K?Ye:K,le=e.rects.popper,de=e.elements[z?ae:L],pe=Gt(Q(de)?de:de.contextElement||I$1(e.elements.popper),$,k),he=ee(e.elements.reference),ue=mt({reference:he,element:le,strategy:"absolute",placement:i}),_e=Te(Object.assign({},le,ue)),Ie=L===K?_e:he,Ce={top:pe.top-Ie.top+ie.top,bottom:Ie.bottom-pe.bottom+ie.bottom,left:pe.left-Ie.left+ie.left,right:Ie.right-pe.right+ie.right},Oe=e.modifiersData.offset;if(L===K&&Oe){var $e=Oe[i];Object.keys(Ce).forEach(function(qe){var ze=[W,R].indexOf(qe)>=0?1:-1,Ue=[E$1,R].indexOf(qe)>=0?"y":"x";Ce[qe]+=$e[Ue]*ze})}return Ce}function Jt(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=n.boundary,g=n.rootBoundary,$=n.padding,y=n.flipVariations,k=n.allowedAutoPlacements,j=k===void 0?Ee:k,L=te(r),V=L?y?De:De.filter(function(re){return te(re)===L}):G,z=V.filter(function(re){return j.indexOf(re)>=0});z.length===0&&(z=V);var oe=z.reduce(function(re,ie){return re[ie]=ne(e,{placement:ie,boundary:i,rootBoundary:g,padding:$})[q(ie)],re},{});return Object.keys(oe).sort(function(re,ie){return oe[re]-oe[ie]})}function Kt(e){if(q(e)===me)return[];var t=be(e);return[lt(e),t,lt(t)]}function Qt(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var i=n.mainAxis,g=i===void 0?!0:i,$=n.altAxis,y=$===void 0?!0:$,k=n.fallbackPlacements,j=n.padding,L=n.boundary,V=n.rootBoundary,z=n.altBoundary,oe=n.flipVariations,re=oe===void 0?!0:oe,ie=n.allowedAutoPlacements,ae=t.options.placement,le=q(ae),de=le===ae,pe=k||(de||!re?[be(ae)]:Kt(ae)),he=[ae].concat(pe).reduce(function(Cn,xn){return Cn.concat(q(xn)===me?Jt(t,{placement:xn,boundary:L,rootBoundary:V,padding:j,flipVariations:re,allowedAutoPlacements:ie}):xn)},[]),ue=t.rects.reference,_e=t.rects.popper,Ie=new Map,Ce=!0,Oe=he[0],$e=0;$e=0,At=kt?"width":"height",Pt=ne(t,{placement:qe,boundary:L,rootBoundary:V,altBoundary:z,padding:j}),jt=kt?Ue?W:P$1:Ue?R:E$1;ue[At]>_e[At]&&(jt=be(jt));var bn=be(jt),hn=[];if(g&&hn.push(Pt[ze]<=0),y&&hn.push(Pt[jt]<=0,Pt[bn]<=0),hn.every(function(Cn){return Cn})){Oe=qe,Ce=!1;break}Ie.set(qe,hn)}if(Ce)for(var Dt=re?3:1,wn=function(Cn){var xn=he.find(function(En){var Sn=Ie.get(En);if(Sn)return Sn.slice(0,Cn).every(function(Bn){return Bn})});if(xn)return Oe=xn,"break"},_n=Dt;_n>0;_n--){var vn=wn(_n);if(vn==="break")break}t.placement!==Oe&&(t.modifiersData[r]._skip=!0,t.placement=Oe,t.reset=!0)}}var vt={name:"flip",enabled:!0,phase:"main",fn:Qt,requiresIfExists:["offset"],data:{_skip:!1}};function gt(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function yt(e){return[E$1,W,R,P$1].some(function(t){return e[t]>=0})}function Zt(e){var t=e.state,n=e.name,r=t.rects.reference,i=t.rects.popper,g=t.modifiersData.preventOverflow,$=ne(t,{elementContext:"reference"}),y=ne(t,{altBoundary:!0}),k=gt($,r),j=gt(y,i,g),L=yt(k),V=yt(j);t.modifiersData[n]={referenceClippingOffsets:k,popperEscapeOffsets:j,isReferenceHidden:L,hasPopperEscaped:V},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":L,"data-popper-escaped":V})}var bt={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:Zt};function en$1(e,t,n){var r=q(e),i=[P$1,E$1].indexOf(r)>=0?-1:1,g=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,$=g[0],y=g[1];return $=$||0,y=(y||0)*i,[P$1,W].indexOf(r)>=0?{x:y,y:$}:{x:$,y}}function tn(e){var t=e.state,n=e.options,r=e.name,i=n.offset,g=i===void 0?[0,0]:i,$=Ee.reduce(function(L,V){return L[V]=en$1(V,t.rects,g),L},{}),y=$[t.placement],k=y.x,j=y.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=k,t.modifiersData.popperOffsets.y+=j),t.modifiersData[r]=$}var wt={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:tn};function nn(e){var t=e.state,n=e.name;t.modifiersData[n]=mt({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}var He={name:"popperOffsets",enabled:!0,phase:"read",fn:nn,data:{}};function rn(e){return e==="x"?"y":"x"}function on(e){var t=e.state,n=e.options,r=e.name,i=n.mainAxis,g=i===void 0?!0:i,$=n.altAxis,y=$===void 0?!1:$,k=n.boundary,j=n.rootBoundary,L=n.altBoundary,V=n.padding,z=n.tether,oe=z===void 0?!0:z,re=n.tetherOffset,ie=re===void 0?0:re,ae=ne(t,{boundary:k,rootBoundary:j,padding:V,altBoundary:L}),le=q(t.placement),de=te(t.placement),pe=!de,he=Le(le),ue=rn(he),_e=t.modifiersData.popperOffsets,Ie=t.rects.reference,Ce=t.rects.popper,Oe=typeof ie=="function"?ie(Object.assign({},t.rects,{placement:t.placement})):ie,$e=typeof Oe=="number"?{mainAxis:Oe,altAxis:Oe}:Object.assign({mainAxis:0,altAxis:0},Oe),qe=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,ze={x:0,y:0};if(_e){if(g){var Ue,kt=he==="y"?E$1:P$1,At=he==="y"?R:W,Pt=he==="y"?"height":"width",jt=_e[he],bn=jt+ae[kt],hn=jt-ae[At],Dt=oe?-Ce[Pt]/2:0,wn=de===U$1?Ie[Pt]:Ce[Pt],_n=de===U$1?-Ce[Pt]:-Ie[Pt],vn=t.elements.arrow,Cn=oe&&vn?ke(vn):{width:0,height:0},xn=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:st(),En=xn[kt],Sn=xn[At],Bn=fe(0,Ie[Pt],Cn[Pt]),An=pe?Ie[Pt]/2-Dt-Bn-En-$e.mainAxis:wn-Bn-En-$e.mainAxis,Pn=pe?-Ie[Pt]/2+Dt+Bn+Sn+$e.mainAxis:_n+Bn+Sn+$e.mainAxis,Mn=t.elements.arrow&&se(t.elements.arrow),Fn=Mn?he==="y"?Mn.clientTop||0:Mn.clientLeft||0:0,jn=(Ue=qe==null?void 0:qe[he])!=null?Ue:0,zn=jt+An-jn-Fn,Jn=jt+Pn-jn,io=fe(oe?ve(bn,zn):bn,jt,oe?X$1(hn,Jn):hn);_e[he]=io,ze[he]=io-jt}if(y){var eo,Un=he==="x"?E$1:P$1,Yn=he==="x"?R:W,to=_e[ue],Hn=ue==="y"?"height":"width",On=to+ae[Un],Wn=to-ae[Yn],oo=[E$1,P$1].indexOf(le)!==-1,ro=(eo=qe==null?void 0:qe[ue])!=null?eo:0,Qn=oo?On:to-Ie[Hn]-Ce[Hn]-ro+$e.altAxis,lo=oo?to+Ie[Hn]+Ce[Hn]-ro-$e.altAxis:Wn,ho=oe&&oo?St(Qn,to,lo):fe(oe?Qn:On,to,oe?lo:Wn);_e[ue]=ho,ze[ue]=ho-to}t.modifiersData[r]=ze}}var xt={name:"preventOverflow",enabled:!0,phase:"main",fn:on,requiresIfExists:["offset"]};function an(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function sn(e){return e===H(e)||!B(e)?We(e):an(e)}function fn(e){var t=e.getBoundingClientRect(),n=Z(t.width)/e.offsetWidth||1,r=Z(t.height)/e.offsetHeight||1;return n!==1||r!==1}function cn(e,t,n){n===void 0&&(n=!1);var r=B(t),i=B(t)&&fn(t),g=I$1(t),$=ee(e,i),y={scrollLeft:0,scrollTop:0},k={x:0,y:0};return(r||!r&&!n)&&((C(t)!=="body"||Se(g))&&(y=sn(t)),B(t)?(k=ee(t,!0),k.x+=t.clientLeft,k.y+=t.clientTop):g&&(k.x=Be(g))),{x:$.left+y.scrollLeft-k.x,y:$.top+y.scrollTop-k.y,width:$.width,height:$.height}}function pn(e){var t=new Map,n=new Set,r=[];e.forEach(function(g){t.set(g.name,g)});function i(g){n.add(g.name);var $=[].concat(g.requires||[],g.requiresIfExists||[]);$.forEach(function(y){if(!n.has(y)){var k=t.get(y);k&&i(k)}}),r.push(g)}return e.forEach(function(g){n.has(g.name)||i(g)}),r}function un(e){var t=pn(e);return ot.reduce(function(n,r){return n.concat(t.filter(function(i){return i.phase===r}))},[])}function ln(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function dn(e){var t=e.reduce(function(n,r){var i=n[r.name];return n[r.name]=i?Object.assign({},i,r,{options:Object.assign({},i.options,r.options),data:Object.assign({},i.data,r.data)}):r,n},{});return Object.keys(t).map(function(n){return t[n]})}var Ot={placement:"bottom",modifiers:[],strategy:"absolute"};function $t(){for(var e=arguments.length,t=new Array(e),n=0;n{let n;watch(()=>e.value,r=>{var i,g;r?(n=document.activeElement,isRef(t)&&((g=(i=t.value).focus)==null||g.call(i))):n.focus()})},useSameTarget=e=>{if(!e)return{onClick:NOOP,onMousedown:NOOP,onMouseup:NOOP};let t=!1,n=!1;return{onClick:$=>{t&&n&&e($),t=n=!1},onMousedown:$=>{t=$.target===$.currentTarget},onMouseup:$=>{n=$.target===$.currentTarget}}},useThrottleRender=(e,t=0)=>{if(t===0)return e;const n=ref(!1);let r=0;const i=()=>{r&&clearTimeout(r),r=window.setTimeout(()=>{n.value=e.value},t)};return onMounted(i),watch(()=>e.value,g=>{g?i():n.value=g}),n};function useTimeout(){let e;const t=(r,i)=>{n(),e=window.setTimeout(r,i)},n=()=>window.clearTimeout(e);return tryOnScopeDispose(()=>n()),{registerTimeout:t,cancelTimeout:n}}let registeredEscapeHandlers=[];const cachedHandler=e=>{const t=e;t.key===EVENT_CODE.esc&®isteredEscapeHandlers.forEach(n=>n(t))},useEscapeKeydown=e=>{onMounted(()=>{registeredEscapeHandlers.length===0&&document.addEventListener("keydown",cachedHandler),isClient&®isteredEscapeHandlers.push(e)}),onBeforeUnmount(()=>{registeredEscapeHandlers=registeredEscapeHandlers.filter(t=>t!==e),registeredEscapeHandlers.length===0&&isClient&&document.removeEventListener("keydown",cachedHandler)})};let cachedContainer;const usePopperContainerId=()=>{const e=useGlobalConfig("namespace",defaultNamespace),t=useIdInjection(),n=computed(()=>`${e.value}-popper-container-${t.prefix}`),r=computed(()=>`#${n.value}`);return{id:n,selector:r}},createContainer=e=>{const t=document.createElement("div");return t.id=e,document.body.appendChild(t),t},usePopperContainer=()=>{onBeforeMount(()=>{if(!isClient)return;const{id:e,selector:t}=usePopperContainerId();!cachedContainer&&!document.body.querySelector(t.value)&&(cachedContainer=createContainer(e.value))})},useDelayedToggleProps=buildProps({showAfter:{type:Number,default:0},hideAfter:{type:Number,default:200}}),useDelayedToggle=({showAfter:e,hideAfter:t,open:n,close:r})=>{const{registerTimeout:i}=useTimeout();return{onOpen:y=>{i(()=>{n(y)},unref(e))},onClose:y=>{i(()=>{r(y)},unref(t))}}},FORWARD_REF_INJECTION_KEY=Symbol("elForwardRef"),useForwardRef=e=>{provide(FORWARD_REF_INJECTION_KEY,{setForwardRef:n=>{e.value=n}})},useForwardRefDirective=e=>({mounted(t){e(t)},updated(t){e(t)},unmounted(){e(null)}}),zIndex=ref(0),useZIndex=()=>{const e=useGlobalConfig("zIndex",2e3),t=computed(()=>e.value+zIndex.value);return{initialZIndex:e,currentZIndex:t,nextZIndex:()=>(zIndex.value++,t.value)}};function getAlignment(e){return e.split("-")[1]}function getLengthFromAxis(e){return e==="y"?"height":"width"}function getSide(e){return e.split("-")[0]}function getMainAxisFromPlacement(e){return["top","bottom"].includes(getSide(e))?"x":"y"}function computeCoordsFromPlacement(e,t,n){let{reference:r,floating:i}=e;const g=r.x+r.width/2-i.width/2,$=r.y+r.height/2-i.height/2,y=getMainAxisFromPlacement(t),k=getLengthFromAxis(y),j=r[k]/2-i[k]/2,L=getSide(t),V=y==="x";let z;switch(L){case"top":z={x:g,y:r.y-i.height};break;case"bottom":z={x:g,y:r.y+r.height};break;case"right":z={x:r.x+r.width,y:$};break;case"left":z={x:r.x-i.width,y:$};break;default:z={x:r.x,y:r.y}}switch(getAlignment(t)){case"start":z[y]-=j*(n&&V?-1:1);break;case"end":z[y]+=j*(n&&V?-1:1);break}return z}const computePosition$1=async(e,t,n)=>{const{placement:r="bottom",strategy:i="absolute",middleware:g=[],platform:$}=n,y=g.filter(Boolean),k=await($.isRTL==null?void 0:$.isRTL(t));let j=await $.getElementRects({reference:e,floating:t,strategy:i}),{x:L,y:V}=computeCoordsFromPlacement(j,r,k),z=r,oe={},re=0;for(let ie=0;ie({name:"arrow",options:e,async fn(t){const{x:n,y:r,placement:i,rects:g,platform:$,elements:y}=t,{element:k,padding:j=0}=evaluate(e,t)||{};if(k==null)return{};const L=getSideObjectFromPadding(j),V={x:n,y:r},z=getMainAxisFromPlacement(i),oe=getLengthFromAxis(z),re=await $.getDimensions(k),ie=z==="y",ae=ie?"top":"left",le=ie?"bottom":"right",de=ie?"clientHeight":"clientWidth",pe=g.reference[oe]+g.reference[z]-V[z]-g.floating[oe],he=V[z]-g.reference[z],ue=await($.getOffsetParent==null?void 0:$.getOffsetParent(k));let _e=ue?ue[de]:0;(!_e||!await($.isElement==null?void 0:$.isElement(ue)))&&(_e=y.floating[de]||g.floating[oe]);const Ie=pe/2-he/2,Ce=_e/2-re[oe]/2-1,Oe=min$2(L[ae],Ce),$e=min$2(L[le],Ce),qe=Oe,ze=_e-re[oe]-$e,Ue=_e/2-re[oe]/2+Ie,kt=within(qe,Ue,ze),Pt=getAlignment(i)!=null&&Ue!=kt&&g.reference[oe]/2-(Ue(n.willChange||"").includes(r))||["paint","layout","strict","content"].some(r=>(n.contain||"").includes(r))}function isSafari(){return typeof CSS=="undefined"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function isLastTraversableNode(e){return["html","body","#document"].includes(getNodeName(e))}const min$1=Math.min,max$1=Math.max,round=Math.round,createEmptyCoords=e=>({x:e,y:e});function getCssDimensions(e){const t=getComputedStyle$1(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const i=isHTMLElement(e),g=i?e.offsetWidth:n,$=i?e.offsetHeight:r,y=round(n)!==g||round(r)!==$;return y&&(n=g,r=$),{width:n,height:r,$:y}}function unwrapElement(e){return isElement(e)?e:e.contextElement}function getScale(e){const t=unwrapElement(e);if(!isHTMLElement(t))return createEmptyCoords(1);const n=t.getBoundingClientRect(),{width:r,height:i,$:g}=getCssDimensions(t);let $=(g?round(n.width):n.width)/r,y=(g?round(n.height):n.height)/i;return(!$||!Number.isFinite($))&&($=1),(!y||!Number.isFinite(y))&&(y=1),{x:$,y}}const noOffsets=createEmptyCoords(0);function getVisualOffsets(e,t,n){var r,i;if(t===void 0&&(t=!0),!isSafari())return noOffsets;const g=e?getWindow(e):window;return!n||t&&n!==g?noOffsets:{x:((r=g.visualViewport)==null?void 0:r.offsetLeft)||0,y:((i=g.visualViewport)==null?void 0:i.offsetTop)||0}}function getBoundingClientRect(e,t,n,r){t===void 0&&(t=!1),n===void 0&&(n=!1);const i=e.getBoundingClientRect(),g=unwrapElement(e);let $=createEmptyCoords(1);t&&(r?isElement(r)&&($=getScale(r)):$=getScale(e));const y=getVisualOffsets(g,n,r);let k=(i.left+y.x)/$.x,j=(i.top+y.y)/$.y,L=i.width/$.x,V=i.height/$.y;if(g){const z=getWindow(g),oe=r&&isElement(r)?getWindow(r):r;let re=z.frameElement;for(;re&&r&&oe!==z;){const ie=getScale(re),ae=re.getBoundingClientRect(),le=getComputedStyle(re),de=ae.left+(re.clientLeft+parseFloat(le.paddingLeft))*ie.x,pe=ae.top+(re.clientTop+parseFloat(le.paddingTop))*ie.y;k*=ie.x,j*=ie.y,L*=ie.x,V*=ie.y,k+=de,j+=pe,re=getWindow(re).frameElement}}return rectToClientRect({width:L,height:V,x:k,y:j})}function getDocumentElement(e){return((isNode(e)?e.ownerDocument:e.document)||window.document).documentElement}function getNodeScroll(e){return isElement(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function convertOffsetParentRelativeRectToViewportRelativeRect(e){let{rect:t,offsetParent:n,strategy:r}=e;const i=isHTMLElement(n),g=getDocumentElement(n);if(n===g)return t;let $={scrollLeft:0,scrollTop:0},y=createEmptyCoords(1);const k=createEmptyCoords(0);if((i||!i&&r!=="fixed")&&((getNodeName(n)!=="body"||isOverflowElement(g))&&($=getNodeScroll(n)),isHTMLElement(n))){const j=getBoundingClientRect(n);y=getScale(n),k.x=j.x+n.clientLeft,k.y=j.y+n.clientTop}return{width:t.width*y.x,height:t.height*y.y,x:t.x*y.x-$.scrollLeft*y.x+k.x,y:t.y*y.y-$.scrollTop*y.y+k.y}}function getWindowScrollBarX(e){return getBoundingClientRect(getDocumentElement(e)).left+getNodeScroll(e).scrollLeft}function getDocumentRect(e){const t=getDocumentElement(e),n=getNodeScroll(e),r=e.ownerDocument.body,i=max$1(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),g=max$1(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight);let $=-n.scrollLeft+getWindowScrollBarX(e);const y=-n.scrollTop;return getComputedStyle$1(r).direction==="rtl"&&($+=max$1(t.clientWidth,r.clientWidth)-i),{width:i,height:g,x:$,y}}function getParentNode(e){if(getNodeName(e)==="html")return e;const t=e.assignedSlot||e.parentNode||isShadowRoot(e)&&e.host||getDocumentElement(e);return isShadowRoot(t)?t.host:t}function getNearestOverflowAncestor(e){const t=getParentNode(e);return isLastTraversableNode(t)?e.ownerDocument?e.ownerDocument.body:e.body:isHTMLElement(t)&&isOverflowElement(t)?t:getNearestOverflowAncestor(t)}function getOverflowAncestors(e,t){var n;t===void 0&&(t=[]);const r=getNearestOverflowAncestor(e),i=r===((n=e.ownerDocument)==null?void 0:n.body),g=getWindow(r);return i?t.concat(g,g.visualViewport||[],isOverflowElement(r)?r:[]):t.concat(r,getOverflowAncestors(r))}function getViewportRect(e,t){const n=getWindow(e),r=getDocumentElement(e),i=n.visualViewport;let g=r.clientWidth,$=r.clientHeight,y=0,k=0;if(i){g=i.width,$=i.height;const j=isSafari();(!j||j&&t==="fixed")&&(y=i.offsetLeft,k=i.offsetTop)}return{width:g,height:$,x:y,y:k}}function getInnerBoundingClientRect(e,t){const n=getBoundingClientRect(e,!0,t==="fixed"),r=n.top+e.clientTop,i=n.left+e.clientLeft,g=isHTMLElement(e)?getScale(e):createEmptyCoords(1),$=e.clientWidth*g.x,y=e.clientHeight*g.y,k=i*g.x,j=r*g.y;return{width:$,height:y,x:k,y:j}}function getClientRectFromClippingAncestor(e,t,n){let r;if(t==="viewport")r=getViewportRect(e,n);else if(t==="document")r=getDocumentRect(getDocumentElement(e));else if(isElement(t))r=getInnerBoundingClientRect(t,n);else{const i=getVisualOffsets(e);r={...t,x:t.x-i.x,y:t.y-i.y}}return rectToClientRect(r)}function hasFixedPositionAncestor(e,t){const n=getParentNode(e);return n===t||!isElement(n)||isLastTraversableNode(n)?!1:getComputedStyle$1(n).position==="fixed"||hasFixedPositionAncestor(n,t)}function getClippingElementAncestors(e,t){const n=t.get(e);if(n)return n;let r=getOverflowAncestors(e).filter(y=>isElement(y)&&getNodeName(y)!=="body"),i=null;const g=getComputedStyle$1(e).position==="fixed";let $=g?getParentNode(e):e;for(;isElement($)&&!isLastTraversableNode($);){const y=getComputedStyle$1($),k=isContainingBlock($);!k&&y.position==="fixed"&&(i=null),(g?!k&&!i:!k&&y.position==="static"&&!!i&&["absolute","fixed"].includes(i.position)||isOverflowElement($)&&!k&&hasFixedPositionAncestor(e,$))?r=r.filter(L=>L!==$):i=y,$=getParentNode($)}return t.set(e,r),r}function getClippingRect(e){let{element:t,boundary:n,rootBoundary:r,strategy:i}=e;const $=[...n==="clippingAncestors"?getClippingElementAncestors(t,this._c):[].concat(n),r],y=$[0],k=$.reduce((j,L)=>{const V=getClientRectFromClippingAncestor(t,L,i);return j.top=max$1(V.top,j.top),j.right=min$1(V.right,j.right),j.bottom=min$1(V.bottom,j.bottom),j.left=max$1(V.left,j.left),j},getClientRectFromClippingAncestor(t,y,i));return{width:k.right-k.left,height:k.bottom-k.top,x:k.left,y:k.top}}function getDimensions(e){return getCssDimensions(e)}function getTrueOffsetParent(e,t){return!isHTMLElement(e)||getComputedStyle$1(e).position==="fixed"?null:t?t(e):e.offsetParent}function getContainingBlock(e){let t=getParentNode(e);for(;isHTMLElement(t)&&!isLastTraversableNode(t);){if(isContainingBlock(t))return t;t=getParentNode(t)}return null}function getOffsetParent(e,t){const n=getWindow(e);if(!isHTMLElement(e))return n;let r=getTrueOffsetParent(e,t);for(;r&&isTableElement(r)&&getComputedStyle$1(r).position==="static";)r=getTrueOffsetParent(r,t);return r&&(getNodeName(r)==="html"||getNodeName(r)==="body"&&getComputedStyle$1(r).position==="static"&&!isContainingBlock(r))?n:r||getContainingBlock(e)||n}function getRectRelativeToOffsetParent(e,t,n){const r=isHTMLElement(t),i=getDocumentElement(t),g=n==="fixed",$=getBoundingClientRect(e,!0,g,t);let y={scrollLeft:0,scrollTop:0};const k=createEmptyCoords(0);if(r||!r&&!g)if((getNodeName(t)!=="body"||isOverflowElement(i))&&(y=getNodeScroll(t)),isHTMLElement(t)){const j=getBoundingClientRect(t,!0,g,t);k.x=j.x+t.clientLeft,k.y=j.y+t.clientTop}else i&&(k.x=getWindowScrollBarX(i));return{x:$.left+y.scrollLeft-k.x,y:$.top+y.scrollTop-k.y,width:$.width,height:$.height}}const platform={getClippingRect,convertOffsetParentRelativeRectToViewportRelativeRect,isElement,getDimensions,getOffsetParent,getDocumentElement,getScale,async getElementRects(e){let{reference:t,floating:n,strategy:r}=e;const i=this.getOffsetParent||getOffsetParent,g=this.getDimensions;return{reference:getRectRelativeToOffsetParent(t,await i(n),r),floating:{x:0,y:0,...await g(n)}}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>getComputedStyle$1(e).direction==="rtl"},computePosition=(e,t,n)=>{const r=new Map,i={platform,...n},g={...i.platform,_c:r};return computePosition$1(e,t,{...i,platform:g})};buildProps({});const unrefReference=e=>{if(!isClient)return;if(!e)return e;const t=unrefElement(e);return t||(isRef(e)?t:e)},useFloating=({middleware:e,placement:t,strategy:n})=>{const r=ref(),i=ref(),g=ref(),$=ref(),y=ref({}),k={x:g,y:$,placement:t,strategy:n,middlewareData:y},j=async()=>{if(!isClient)return;const L=unrefReference(r),V=unrefElement(i);if(!L||!V)return;const z=await computePosition(L,V,{placement:unref(t),strategy:unref(n),middleware:unref(e)});keysOf(k).forEach(oe=>{k[oe].value=z[oe]})};return onMounted(()=>{watchEffect(()=>{j()})}),{...k,update:j,referenceRef:r,contentRef:i}},arrowMiddleware=({arrowRef:e,padding:t})=>({name:"arrow",options:{element:e,padding:t},fn(n){const r=unref(e);return r?arrow({element:r,padding:t}).fn(n):{}}});function useCursor(e){const t=ref();function n(){if(e.value==null)return;const{selectionStart:i,selectionEnd:g,value:$}=e.value;if(i==null||g==null)return;const y=$.slice(0,Math.max(0,i)),k=$.slice(Math.max(0,g));t.value={selectionStart:i,selectionEnd:g,value:$,beforeTxt:y,afterTxt:k}}function r(){if(e.value==null||t.value==null)return;const{value:i}=e.value,{beforeTxt:g,afterTxt:$,selectionStart:y}=t.value;if(g==null||$==null||y==null)return;let k=i.length;if(i.endsWith($))k=i.length-$.length;else if(i.startsWith(g))k=g.length;else{const j=g[y-1],L=i.indexOf(j,y-1);L!==-1&&(k=L+1)}e.value.setSelectionRange(k,k)}return[n,r]}const getOrderedChildren=(e,t,n)=>flattedChildren(e.subTree).filter(g=>{var $;return isVNode(g)&&(($=g.type)==null?void 0:$.name)===t&&!!g.component}).map(g=>g.component.uid).map(g=>n[g]).filter(g=>!!g),useOrderedChildren=(e,t)=>{const n={},r=shallowRef([]);return{children:r,addChild:$=>{n[$.uid]=$,r.value=getOrderedChildren(e,t,n)},removeChild:$=>{delete n[$],r.value=r.value.filter(y=>y.uid!==$)}}},version="2.2.28",makeInstaller=(e=[])=>({version,install:(n,r)=>{n[INSTALLED_KEY]||(n[INSTALLED_KEY]=!0,e.forEach(i=>n.use(i)),r&&provideGlobalConfig(r,n,!0))}}),affixProps=buildProps({zIndex:{type:definePropType([Number,String]),default:100},target:{type:String,default:""},offset:{type:Number,default:0},position:{type:String,values:["top","bottom"],default:"top"}}),affixEmits={scroll:({scrollTop:e,fixed:t})=>isNumber$1(e)&&isBoolean$1(t),[CHANGE_EVENT]:e=>isBoolean$1(e)};var _export_sfc$1=(e,t)=>{const n=e.__vccOpts||e;for(const[r,i]of t)n[r]=i;return n};const COMPONENT_NAME$m="ElAffix",__default__$1z=defineComponent({name:COMPONENT_NAME$m}),_sfc_main$2n=defineComponent({...__default__$1z,props:affixProps,emits:affixEmits,setup(e,{expose:t,emit:n}){const r=e,i=useNamespace("affix"),g=shallowRef(),$=shallowRef(),y=shallowRef(),{height:k}=useWindowSize(),{height:j,width:L,top:V,bottom:z,update:oe}=useElementBounding($,{windowScroll:!1}),re=useElementBounding(g),ie=ref(!1),ae=ref(0),le=ref(0),de=computed(()=>({height:ie.value?`${j.value}px`:"",width:ie.value?`${L.value}px`:""})),pe=computed(()=>{if(!ie.value)return{};const _e=r.offset?addUnit(r.offset):0;return{height:`${j.value}px`,width:`${L.value}px`,top:r.position==="top"?_e:"",bottom:r.position==="bottom"?_e:"",transform:le.value?`translateY(${le.value}px)`:"",zIndex:r.zIndex}}),he=()=>{if(!!y.value)if(ae.value=y.value instanceof Window?document.documentElement.scrollTop:y.value.scrollTop||0,r.position==="top")if(r.target){const _e=re.bottom.value-r.offset-j.value;ie.value=r.offset>V.value&&re.bottom.value>0,le.value=_e<0?_e:0}else ie.value=r.offset>V.value;else if(r.target){const _e=k.value-re.top.value-r.offset-j.value;ie.value=k.value-r.offsetre.top.value,le.value=_e<0?-_e:0}else ie.value=k.value-r.offset{oe(),n("scroll",{scrollTop:ae.value,fixed:ie.value})};return watch(ie,_e=>n("change",_e)),onMounted(()=>{var _e;r.target?(g.value=(_e=document.querySelector(r.target))!=null?_e:void 0,g.value||throwError(COMPONENT_NAME$m,`Target is not existed: ${r.target}`)):g.value=document.documentElement,y.value=getScrollContainer($.value,!0),oe()}),useEventListener(y,"scroll",ue),watchEffect(he),t({update:he,updateRoot:oe}),(_e,Ie)=>(openBlock(),createElementBlock("div",{ref_key:"root",ref:$,class:normalizeClass(unref(i).b()),style:normalizeStyle(unref(de))},[createBaseVNode("div",{class:normalizeClass({[unref(i).m("fixed")]:ie.value}),style:normalizeStyle(unref(pe))},[renderSlot(_e.$slots,"default")],6)],6))}});var Affix=_export_sfc$1(_sfc_main$2n,[["__file","/home/runner/work/element-plus/element-plus/packages/components/affix/src/affix.vue"]]);const ElAffix=withInstall(Affix),iconProps=buildProps({size:{type:definePropType([Number,String])},color:{type:String}}),__default__$1y=defineComponent({name:"ElIcon",inheritAttrs:!1}),_sfc_main$2m=defineComponent({...__default__$1y,props:iconProps,setup(e){const t=e,n=useNamespace("icon"),r=computed(()=>{const{size:i,color:g}=t;return!i&&!g?{}:{fontSize:isUndefined(i)?void 0:addUnit(i),"--color":g}});return(i,g)=>(openBlock(),createElementBlock("i",mergeProps({class:unref(n).b(),style:unref(r)},i.$attrs),[renderSlot(i.$slots,"default")],16))}});var Icon=_export_sfc$1(_sfc_main$2m,[["__file","/home/runner/work/element-plus/element-plus/packages/components/icon/src/icon.vue"]]);const ElIcon=withInstall(Icon),alertEffects=["light","dark"],alertProps=buildProps({title:{type:String,default:""},description:{type:String,default:""},type:{type:String,values:keysOf(TypeComponentsMap),default:"info"},closable:{type:Boolean,default:!0},closeText:{type:String,default:""},showIcon:Boolean,center:Boolean,effect:{type:String,values:alertEffects,default:"light"}}),alertEmits={close:e=>e instanceof MouseEvent},__default__$1x=defineComponent({name:"ElAlert"}),_sfc_main$2l=defineComponent({...__default__$1x,props:alertProps,emits:alertEmits,setup(e,{emit:t}){const n=e,{Close:r}=TypeComponents,i=useSlots(),g=useNamespace("alert"),$=ref(!0),y=computed(()=>TypeComponentsMap[n.type]),k=computed(()=>[g.e("icon"),{[g.is("big")]:!!n.description||!!i.default}]),j=computed(()=>({[g.is("bold")]:n.description||i.default})),L=V=>{$.value=!1,t("close",V)};return(V,z)=>(openBlock(),createBlock(Transition,{name:unref(g).b("fade"),persisted:""},{default:withCtx(()=>[withDirectives(createBaseVNode("div",{class:normalizeClass([unref(g).b(),unref(g).m(V.type),unref(g).is("center",V.center),unref(g).is(V.effect)]),role:"alert"},[V.showIcon&&unref(y)?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(k))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(y))))]),_:1},8,["class"])):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(g).e("content"))},[V.title||V.$slots.title?(openBlock(),createElementBlock("span",{key:0,class:normalizeClass([unref(g).e("title"),unref(j)])},[renderSlot(V.$slots,"title",{},()=>[createTextVNode(toDisplayString$1(V.title),1)])],2)):createCommentVNode("v-if",!0),V.$slots.default||V.description?(openBlock(),createElementBlock("p",{key:1,class:normalizeClass(unref(g).e("description"))},[renderSlot(V.$slots,"default",{},()=>[createTextVNode(toDisplayString$1(V.description),1)])],2)):createCommentVNode("v-if",!0),V.closable?(openBlock(),createElementBlock(Fragment,{key:2},[V.closeText?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass([unref(g).e("close-btn"),unref(g).is("customed")]),onClick:L},toDisplayString$1(V.closeText),3)):(openBlock(),createBlock(unref(ElIcon),{key:1,class:normalizeClass(unref(g).e("close-btn")),onClick:L},{default:withCtx(()=>[createVNode(unref(r))]),_:1},8,["class"]))],64)):createCommentVNode("v-if",!0)],2)],2),[[vShow,$.value]])]),_:3},8,["name"]))}});var Alert=_export_sfc$1(_sfc_main$2l,[["__file","/home/runner/work/element-plus/element-plus/packages/components/alert/src/alert.vue"]]);const ElAlert=withInstall(Alert);let hiddenTextarea;const HIDDEN_STYLE=` + height:0 !important; + visibility:hidden !important; + overflow:hidden !important; + position:absolute !important; + z-index:-1000 !important; + top:0 !important; + right:0 !important; +`,CONTEXT_STYLE=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing"];function calculateNodeStyling(e){const t=window.getComputedStyle(e),n=t.getPropertyValue("box-sizing"),r=Number.parseFloat(t.getPropertyValue("padding-bottom"))+Number.parseFloat(t.getPropertyValue("padding-top")),i=Number.parseFloat(t.getPropertyValue("border-bottom-width"))+Number.parseFloat(t.getPropertyValue("border-top-width"));return{contextStyle:CONTEXT_STYLE.map($=>`${$}:${t.getPropertyValue($)}`).join(";"),paddingSize:r,borderSize:i,boxSizing:n}}function calcTextareaHeight(e,t=1,n){var r;hiddenTextarea||(hiddenTextarea=document.createElement("textarea"),document.body.appendChild(hiddenTextarea));const{paddingSize:i,borderSize:g,boxSizing:$,contextStyle:y}=calculateNodeStyling(e);hiddenTextarea.setAttribute("style",`${y};${HIDDEN_STYLE}`),hiddenTextarea.value=e.value||e.placeholder||"";let k=hiddenTextarea.scrollHeight;const j={};$==="border-box"?k=k+g:$==="content-box"&&(k=k-i),hiddenTextarea.value="";const L=hiddenTextarea.scrollHeight-i;if(isNumber$1(t)){let V=L*t;$==="border-box"&&(V=V+i+g),k=Math.max(V,k),j.minHeight=`${V}px`}if(isNumber$1(n)){let V=L*n;$==="border-box"&&(V=V+i+g),k=Math.min(V,k)}return j.height=`${k}px`,(r=hiddenTextarea.parentNode)==null||r.removeChild(hiddenTextarea),hiddenTextarea=void 0,j}const inputProps=buildProps({id:{type:String,default:void 0},size:useSizeProp,disabled:Boolean,modelValue:{type:definePropType([String,Number,Object]),default:""},type:{type:String,default:"text"},resize:{type:String,values:["none","both","horizontal","vertical"]},autosize:{type:definePropType([Boolean,Object]),default:!1},autocomplete:{type:String,default:"off"},formatter:{type:Function},parser:{type:Function},placeholder:{type:String},form:{type:String},readonly:{type:Boolean,default:!1},clearable:{type:Boolean,default:!1},showPassword:{type:Boolean,default:!1},showWordLimit:{type:Boolean,default:!1},suffixIcon:{type:iconPropType},prefixIcon:{type:iconPropType},containerRole:{type:String,default:void 0},label:{type:String,default:void 0},tabindex:{type:[String,Number],default:0},validateEvent:{type:Boolean,default:!0},inputStyle:{type:definePropType([Object,Array,String]),default:()=>mutable({})}}),inputEmits={[UPDATE_MODEL_EVENT]:e=>isString$3(e),input:e=>isString$3(e),change:e=>isString$3(e),focus:e=>e instanceof FocusEvent,blur:e=>e instanceof FocusEvent,clear:()=>!0,mouseleave:e=>e instanceof MouseEvent,mouseenter:e=>e instanceof MouseEvent,keydown:e=>e instanceof Event,compositionstart:e=>e instanceof CompositionEvent,compositionupdate:e=>e instanceof CompositionEvent,compositionend:e=>e instanceof CompositionEvent},_hoisted_1$16=["role"],_hoisted_2$J=["id","type","disabled","formatter","parser","readonly","autocomplete","tabindex","aria-label","placeholder","form"],_hoisted_3$m=["id","tabindex","disabled","readonly","autocomplete","aria-label","placeholder","form"],__default__$1w=defineComponent({name:"ElInput",inheritAttrs:!1}),_sfc_main$2k=defineComponent({...__default__$1w,props:inputProps,emits:inputEmits,setup(e,{expose:t,emit:n}){const r=e,i=useAttrs$1(),g=useSlots(),$=computed(()=>{const On={};return r.containerRole==="combobox"&&(On["aria-haspopup"]=i["aria-haspopup"],On["aria-owns"]=i["aria-owns"],On["aria-expanded"]=i["aria-expanded"]),On}),y=computed(()=>[r.type==="textarea"?ae.b():ie.b(),ie.m(oe.value),ie.is("disabled",re.value),ie.is("exceed",wn.value),{[ie.b("group")]:g.prepend||g.append,[ie.bm("group","append")]:g.append,[ie.bm("group","prepend")]:g.prepend,[ie.m("prefix")]:g.prefix||r.prefixIcon,[ie.m("suffix")]:g.suffix||r.suffixIcon||r.clearable||r.showPassword,[ie.bm("suffix","password-clear")]:jt.value&&bn.value},i.class]),k=computed(()=>[ie.e("wrapper"),ie.is("focus",pe.value)]),j=useAttrs({excludeKeys:computed(()=>Object.keys($.value))}),{form:L,formItem:V}=useFormItem(),{inputId:z}=useFormItemInputId(r,{formItemContext:V}),oe=useSize(),re=useDisabled(),ie=useNamespace("input"),ae=useNamespace("textarea"),le=shallowRef(),de=shallowRef(),pe=ref(!1),he=ref(!1),ue=ref(!1),_e=ref(!1),Ie=ref(),Ce=shallowRef(r.inputStyle),Oe=computed(()=>le.value||de.value),$e=computed(()=>{var On;return(On=L==null?void 0:L.statusIcon)!=null?On:!1}),qe=computed(()=>(V==null?void 0:V.validateState)||""),ze=computed(()=>qe.value&&ValidateComponentsMap[qe.value]),Ue=computed(()=>_e.value?view_default:hide_default),kt=computed(()=>[i.style,r.inputStyle]),At=computed(()=>[r.inputStyle,Ce.value,{resize:r.resize}]),Pt=computed(()=>isNil(r.modelValue)?"":String(r.modelValue)),jt=computed(()=>r.clearable&&!re.value&&!r.readonly&&!!Pt.value&&(pe.value||he.value)),bn=computed(()=>r.showPassword&&!re.value&&!r.readonly&&!!Pt.value&&(!!Pt.value||pe.value)),hn=computed(()=>r.showWordLimit&&!!j.value.maxlength&&(r.type==="text"||r.type==="textarea")&&!re.value&&!r.readonly&&!r.showPassword),Dt=computed(()=>Array.from(Pt.value).length),wn=computed(()=>!!hn.value&&Dt.value>Number(j.value.maxlength)),_n=computed(()=>!!g.suffix||!!r.suffixIcon||jt.value||r.showPassword||hn.value||!!qe.value&&$e.value),[vn,Cn]=useCursor(le);useResizeObserver(de,On=>{if(!hn.value||r.resize!=="both")return;const Wn=On[0],{width:oo}=Wn.contentRect;Ie.value={right:`calc(100% - ${oo+15+6}px)`}});const xn=()=>{const{type:On,autosize:Wn}=r;if(!(!isClient||On!=="textarea"))if(Wn){const oo=isObject$4(Wn)?Wn.minRows:void 0,ro=isObject$4(Wn)?Wn.maxRows:void 0;Ce.value={...calcTextareaHeight(de.value,oo,ro)}}else Ce.value={minHeight:calcTextareaHeight(de.value).minHeight}},En=()=>{const On=Oe.value;!On||On.value===Pt.value||(On.value=Pt.value)},Sn=async On=>{vn();let{value:Wn}=On.target;if(r.formatter&&(Wn=r.parser?r.parser(Wn):Wn,Wn=r.formatter(Wn)),!ue.value){if(Wn===Pt.value){En();return}n(UPDATE_MODEL_EVENT,Wn),n("input",Wn),await nextTick(),En(),Cn()}},Bn=On=>{n("change",On.target.value)},An=On=>{n("compositionstart",On),ue.value=!0},Pn=On=>{var Wn;n("compositionupdate",On);const oo=(Wn=On.target)==null?void 0:Wn.value,ro=oo[oo.length-1]||"";ue.value=!isKorean(ro)},Mn=On=>{n("compositionend",On),ue.value&&(ue.value=!1,Sn(On))},Fn=()=>{_e.value=!_e.value,jn()},jn=async()=>{var On;await nextTick(),(On=Oe.value)==null||On.focus()},zn=()=>{var On;return(On=Oe.value)==null?void 0:On.blur()},Jn=On=>{pe.value=!0,n("focus",On)},io=On=>{var Wn;pe.value=!1,n("blur",On),r.validateEvent&&((Wn=V==null?void 0:V.validate)==null||Wn.call(V,"blur").catch(oo=>void 0))},eo=On=>{he.value=!1,n("mouseleave",On)},Un=On=>{he.value=!0,n("mouseenter",On)},Yn=On=>{n("keydown",On)},to=()=>{var On;(On=Oe.value)==null||On.select()},Hn=()=>{n(UPDATE_MODEL_EVENT,""),n("change",""),n("clear"),n("input","")};return watch(()=>r.modelValue,()=>{var On;nextTick(()=>xn()),r.validateEvent&&((On=V==null?void 0:V.validate)==null||On.call(V,"change").catch(Wn=>void 0))}),watch(Pt,()=>En()),watch(()=>r.type,async()=>{await nextTick(),En(),xn()}),onMounted(()=>{!r.formatter&&r.parser,En(),nextTick(xn)}),t({input:le,textarea:de,ref:Oe,textareaStyle:At,autosize:toRef(r,"autosize"),focus:jn,blur:zn,select:to,clear:Hn,resizeTextarea:xn}),(On,Wn)=>withDirectives((openBlock(),createElementBlock("div",mergeProps(unref($),{class:unref(y),style:unref(kt),role:On.containerRole,onMouseenter:Un,onMouseleave:eo}),[createCommentVNode(" input "),On.type!=="textarea"?(openBlock(),createElementBlock(Fragment,{key:0},[createCommentVNode(" prepend slot "),On.$slots.prepend?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(ie).be("group","prepend"))},[renderSlot(On.$slots,"prepend")],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(k))},[createCommentVNode(" prefix slot "),On.$slots.prefix||On.prefixIcon?(openBlock(),createElementBlock("span",{key:0,class:normalizeClass(unref(ie).e("prefix"))},[createBaseVNode("span",{class:normalizeClass(unref(ie).e("prefix-inner")),onClick:jn},[renderSlot(On.$slots,"prefix"),On.prefixIcon?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(ie).e("icon"))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(On.prefixIcon)))]),_:1},8,["class"])):createCommentVNode("v-if",!0)],2)],2)):createCommentVNode("v-if",!0),createBaseVNode("input",mergeProps({id:unref(z),ref_key:"input",ref:le,class:unref(ie).e("inner")},unref(j),{type:On.showPassword?_e.value?"text":"password":On.type,disabled:unref(re),formatter:On.formatter,parser:On.parser,readonly:On.readonly,autocomplete:On.autocomplete,tabindex:On.tabindex,"aria-label":On.label,placeholder:On.placeholder,style:On.inputStyle,form:r.form,onCompositionstart:An,onCompositionupdate:Pn,onCompositionend:Mn,onInput:Sn,onFocus:Jn,onBlur:io,onChange:Bn,onKeydown:Yn}),null,16,_hoisted_2$J),createCommentVNode(" suffix slot "),unref(_n)?(openBlock(),createElementBlock("span",{key:1,class:normalizeClass(unref(ie).e("suffix"))},[createBaseVNode("span",{class:normalizeClass(unref(ie).e("suffix-inner")),onClick:jn},[!unref(jt)||!unref(bn)||!unref(hn)?(openBlock(),createElementBlock(Fragment,{key:0},[renderSlot(On.$slots,"suffix"),On.suffixIcon?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(ie).e("icon"))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(On.suffixIcon)))]),_:1},8,["class"])):createCommentVNode("v-if",!0)],64)):createCommentVNode("v-if",!0),unref(jt)?(openBlock(),createBlock(unref(ElIcon),{key:1,class:normalizeClass([unref(ie).e("icon"),unref(ie).e("clear")]),onMousedown:withModifiers(unref(NOOP),["prevent"]),onClick:Hn},{default:withCtx(()=>[createVNode(unref(circle_close_default))]),_:1},8,["class","onMousedown"])):createCommentVNode("v-if",!0),unref(bn)?(openBlock(),createBlock(unref(ElIcon),{key:2,class:normalizeClass([unref(ie).e("icon"),unref(ie).e("password")]),onClick:Fn},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(Ue))))]),_:1},8,["class"])):createCommentVNode("v-if",!0),unref(hn)?(openBlock(),createElementBlock("span",{key:3,class:normalizeClass(unref(ie).e("count"))},[createBaseVNode("span",{class:normalizeClass(unref(ie).e("count-inner"))},toDisplayString$1(unref(Dt))+" / "+toDisplayString$1(unref(j).maxlength),3)],2)):createCommentVNode("v-if",!0),unref(qe)&&unref(ze)&&unref($e)?(openBlock(),createBlock(unref(ElIcon),{key:4,class:normalizeClass([unref(ie).e("icon"),unref(ie).e("validateIcon"),unref(ie).is("loading",unref(qe)==="validating")])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(ze))))]),_:1},8,["class"])):createCommentVNode("v-if",!0)],2)],2)):createCommentVNode("v-if",!0)],2),createCommentVNode(" append slot "),On.$slots.append?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref(ie).be("group","append"))},[renderSlot(On.$slots,"append")],2)):createCommentVNode("v-if",!0)],64)):(openBlock(),createElementBlock(Fragment,{key:1},[createCommentVNode(" textarea "),createBaseVNode("textarea",mergeProps({id:unref(z),ref_key:"textarea",ref:de,class:unref(ae).e("inner")},unref(j),{tabindex:On.tabindex,disabled:unref(re),readonly:On.readonly,autocomplete:On.autocomplete,style:unref(At),"aria-label":On.label,placeholder:On.placeholder,form:r.form,onCompositionstart:An,onCompositionupdate:Pn,onCompositionend:Mn,onInput:Sn,onFocus:Jn,onBlur:io,onChange:Bn,onKeydown:Yn}),null,16,_hoisted_3$m),unref(hn)?(openBlock(),createElementBlock("span",{key:0,style:normalizeStyle(Ie.value),class:normalizeClass(unref(ie).e("count"))},toDisplayString$1(unref(Dt))+" / "+toDisplayString$1(unref(j).maxlength),7)):createCommentVNode("v-if",!0)],64))],16,_hoisted_1$16)),[[vShow,On.type!=="hidden"]])}});var Input=_export_sfc$1(_sfc_main$2k,[["__file","/home/runner/work/element-plus/element-plus/packages/components/input/src/input.vue"]]);const ElInput=withInstall(Input),GAP=4,BAR_MAP={vertical:{offset:"offsetHeight",scroll:"scrollTop",scrollSize:"scrollHeight",size:"height",key:"vertical",axis:"Y",client:"clientY",direction:"top"},horizontal:{offset:"offsetWidth",scroll:"scrollLeft",scrollSize:"scrollWidth",size:"width",key:"horizontal",axis:"X",client:"clientX",direction:"left"}},renderThumbStyle$1=({move:e,size:t,bar:n})=>({[n.size]:t,transform:`translate${n.axis}(${e}%)`}),thumbProps=buildProps({vertical:Boolean,size:String,move:Number,ratio:{type:Number,required:!0},always:Boolean}),COMPONENT_NAME$l="Thumb",_sfc_main$2j=defineComponent({__name:"thumb",props:thumbProps,setup(e){const t=e,n=inject(scrollbarContextKey),r=useNamespace("scrollbar");n||throwError(COMPONENT_NAME$l,"can not inject scrollbar context");const i=ref(),g=ref(),$=ref({}),y=ref(!1);let k=!1,j=!1,L=isClient?document.onselectstart:null;const V=computed(()=>BAR_MAP[t.vertical?"vertical":"horizontal"]),z=computed(()=>renderThumbStyle$1({size:t.size,move:t.move,bar:V.value})),oe=computed(()=>i.value[V.value.offset]**2/n.wrapElement[V.value.scrollSize]/t.ratio/g.value[V.value.offset]),re=_e=>{var Ie;if(_e.stopPropagation(),_e.ctrlKey||[1,2].includes(_e.button))return;(Ie=window.getSelection())==null||Ie.removeAllRanges(),ae(_e);const Ce=_e.currentTarget;!Ce||($.value[V.value.axis]=Ce[V.value.offset]-(_e[V.value.client]-Ce.getBoundingClientRect()[V.value.direction]))},ie=_e=>{if(!g.value||!i.value||!n.wrapElement)return;const Ie=Math.abs(_e.target.getBoundingClientRect()[V.value.direction]-_e[V.value.client]),Ce=g.value[V.value.offset]/2,Oe=(Ie-Ce)*100*oe.value/i.value[V.value.offset];n.wrapElement[V.value.scroll]=Oe*n.wrapElement[V.value.scrollSize]/100},ae=_e=>{_e.stopImmediatePropagation(),k=!0,document.addEventListener("mousemove",le),document.addEventListener("mouseup",de),L=document.onselectstart,document.onselectstart=()=>!1},le=_e=>{if(!i.value||!g.value||k===!1)return;const Ie=$.value[V.value.axis];if(!Ie)return;const Ce=(i.value.getBoundingClientRect()[V.value.direction]-_e[V.value.client])*-1,Oe=g.value[V.value.offset]-Ie,$e=(Ce-Oe)*100*oe.value/i.value[V.value.offset];n.wrapElement[V.value.scroll]=$e*n.wrapElement[V.value.scrollSize]/100},de=()=>{k=!1,$.value[V.value.axis]=0,document.removeEventListener("mousemove",le),document.removeEventListener("mouseup",de),ue(),j&&(y.value=!1)},pe=()=>{j=!1,y.value=!!t.size},he=()=>{j=!0,y.value=k};onBeforeUnmount(()=>{ue(),document.removeEventListener("mouseup",de)});const ue=()=>{document.onselectstart!==L&&(document.onselectstart=L)};return useEventListener(toRef(n,"scrollbarElement"),"mousemove",pe),useEventListener(toRef(n,"scrollbarElement"),"mouseleave",he),(_e,Ie)=>(openBlock(),createBlock(Transition,{name:unref(r).b("fade"),persisted:""},{default:withCtx(()=>[withDirectives(createBaseVNode("div",{ref_key:"instance",ref:i,class:normalizeClass([unref(r).e("bar"),unref(r).is(unref(V).key)]),onMousedown:ie},[createBaseVNode("div",{ref_key:"thumb",ref:g,class:normalizeClass(unref(r).e("thumb")),style:normalizeStyle(unref(z)),onMousedown:re},null,38)],34),[[vShow,_e.always||y.value]])]),_:1},8,["name"]))}});var Thumb=_export_sfc$1(_sfc_main$2j,[["__file","/home/runner/work/element-plus/element-plus/packages/components/scrollbar/src/thumb.vue"]]);const barProps=buildProps({always:{type:Boolean,default:!0},width:String,height:String,ratioX:{type:Number,default:1},ratioY:{type:Number,default:1}}),_sfc_main$2i=defineComponent({__name:"bar",props:barProps,setup(e,{expose:t}){const n=e,r=ref(0),i=ref(0);return t({handleScroll:$=>{if($){const y=$.offsetHeight-GAP,k=$.offsetWidth-GAP;i.value=$.scrollTop*100/y*n.ratioY,r.value=$.scrollLeft*100/k*n.ratioX}}}),($,y)=>(openBlock(),createElementBlock(Fragment,null,[createVNode(Thumb,{move:r.value,ratio:$.ratioX,size:$.width,always:$.always},null,8,["move","ratio","size","always"]),createVNode(Thumb,{move:i.value,ratio:$.ratioY,size:$.height,vertical:"",always:$.always},null,8,["move","ratio","size","always"])],64))}});var Bar=_export_sfc$1(_sfc_main$2i,[["__file","/home/runner/work/element-plus/element-plus/packages/components/scrollbar/src/bar.vue"]]);const scrollbarProps=buildProps({height:{type:[String,Number],default:""},maxHeight:{type:[String,Number],default:""},native:{type:Boolean,default:!1},wrapStyle:{type:definePropType([String,Object,Array]),default:""},wrapClass:{type:[String,Array],default:""},viewClass:{type:[String,Array],default:""},viewStyle:{type:[String,Array,Object],default:""},noresize:Boolean,tag:{type:String,default:"div"},always:Boolean,minSize:{type:Number,default:20}}),scrollbarEmits={scroll:({scrollTop:e,scrollLeft:t})=>[e,t].every(isNumber$1)},COMPONENT_NAME$k="ElScrollbar",__default__$1v=defineComponent({name:COMPONENT_NAME$k}),_sfc_main$2h=defineComponent({...__default__$1v,props:scrollbarProps,emits:scrollbarEmits,setup(e,{expose:t,emit:n}){const r=e,i=useNamespace("scrollbar");let g,$;const y=ref(),k=ref(),j=ref(),L=ref("0"),V=ref("0"),z=ref(),oe=ref(1),re=ref(1),ie=computed(()=>{const Ie={};return r.height&&(Ie.height=addUnit(r.height)),r.maxHeight&&(Ie.maxHeight=addUnit(r.maxHeight)),[r.wrapStyle,Ie]}),ae=computed(()=>[r.wrapClass,i.e("wrap"),{[i.em("wrap","hidden-default")]:!r.native}]),le=computed(()=>[i.e("view"),r.viewClass]),de=()=>{var Ie;k.value&&((Ie=z.value)==null||Ie.handleScroll(k.value),n("scroll",{scrollTop:k.value.scrollTop,scrollLeft:k.value.scrollLeft}))};function pe(Ie,Ce){isObject$4(Ie)?k.value.scrollTo(Ie):isNumber$1(Ie)&&isNumber$1(Ce)&&k.value.scrollTo(Ie,Ce)}const he=Ie=>{!isNumber$1(Ie)||(k.value.scrollTop=Ie)},ue=Ie=>{!isNumber$1(Ie)||(k.value.scrollLeft=Ie)},_e=()=>{if(!k.value)return;const Ie=k.value.offsetHeight-GAP,Ce=k.value.offsetWidth-GAP,Oe=Ie**2/k.value.scrollHeight,$e=Ce**2/k.value.scrollWidth,qe=Math.max(Oe,r.minSize),ze=Math.max($e,r.minSize);oe.value=Oe/(Ie-Oe)/(qe/(Ie-qe)),re.value=$e/(Ce-$e)/(ze/(Ce-ze)),V.value=qe+GAPr.noresize,Ie=>{Ie?(g==null||g(),$==null||$()):({stop:g}=useResizeObserver(j,_e),$=useEventListener("resize",_e))},{immediate:!0}),watch(()=>[r.maxHeight,r.height],()=>{r.native||nextTick(()=>{var Ie;_e(),k.value&&((Ie=z.value)==null||Ie.handleScroll(k.value))})}),provide(scrollbarContextKey,reactive({scrollbarElement:y,wrapElement:k})),onMounted(()=>{r.native||nextTick(()=>{_e()})}),onUpdated(()=>_e()),t({wrapRef:k,update:_e,scrollTo:pe,setScrollTop:he,setScrollLeft:ue,handleScroll:de}),(Ie,Ce)=>(openBlock(),createElementBlock("div",{ref_key:"scrollbarRef",ref:y,class:normalizeClass(unref(i).b())},[createBaseVNode("div",{ref_key:"wrapRef",ref:k,class:normalizeClass(unref(ae)),style:normalizeStyle(unref(ie)),onScroll:de},[(openBlock(),createBlock(resolveDynamicComponent(Ie.tag),{ref_key:"resizeRef",ref:j,class:normalizeClass(unref(le)),style:normalizeStyle(Ie.viewStyle)},{default:withCtx(()=>[renderSlot(Ie.$slots,"default")]),_:3},8,["class","style"]))],38),Ie.native?createCommentVNode("v-if",!0):(openBlock(),createBlock(Bar,{key:0,ref_key:"barRef",ref:z,height:V.value,width:L.value,always:Ie.always,"ratio-x":re.value,"ratio-y":oe.value},null,8,["height","width","always","ratio-x","ratio-y"]))],2))}});var Scrollbar=_export_sfc$1(_sfc_main$2h,[["__file","/home/runner/work/element-plus/element-plus/packages/components/scrollbar/src/scrollbar.vue"]]);const ElScrollbar=withInstall(Scrollbar),roleTypes=["dialog","grid","group","listbox","menu","navigation","tooltip","tree"],popperProps=buildProps({role:{type:String,values:roleTypes,default:"tooltip"}}),__default__$1u=defineComponent({name:"ElPopperRoot",inheritAttrs:!1}),_sfc_main$2g=defineComponent({...__default__$1u,props:popperProps,setup(e,{expose:t}){const n=e,r=ref(),i=ref(),g=ref(),$=ref(),y=computed(()=>n.role),k={triggerRef:r,popperInstanceRef:i,contentRef:g,referenceRef:$,role:y};return t(k),provide(POPPER_INJECTION_KEY,k),(j,L)=>renderSlot(j.$slots,"default")}});var Popper=_export_sfc$1(_sfc_main$2g,[["__file","/home/runner/work/element-plus/element-plus/packages/components/popper/src/popper.vue"]]);const popperArrowProps=buildProps({arrowOffset:{type:Number,default:5}}),__default__$1t=defineComponent({name:"ElPopperArrow",inheritAttrs:!1}),_sfc_main$2f=defineComponent({...__default__$1t,props:popperArrowProps,setup(e,{expose:t}){const n=e,r=useNamespace("popper"),{arrowOffset:i,arrowRef:g}=inject(POPPER_CONTENT_INJECTION_KEY,void 0);return watch(()=>n.arrowOffset,$=>{i.value=$}),onBeforeUnmount(()=>{g.value=void 0}),t({arrowRef:g}),($,y)=>(openBlock(),createElementBlock("span",{ref_key:"arrowRef",ref:g,class:normalizeClass(unref(r).e("arrow")),"data-popper-arrow":""},null,2))}});var ElPopperArrow=_export_sfc$1(_sfc_main$2f,[["__file","/home/runner/work/element-plus/element-plus/packages/components/popper/src/arrow.vue"]]);const NAME="ElOnlyChild",OnlyChild=defineComponent({name:NAME,setup(e,{slots:t,attrs:n}){var r;const i=inject(FORWARD_REF_INJECTION_KEY),g=useForwardRefDirective((r=i==null?void 0:i.setForwardRef)!=null?r:NOOP);return()=>{var $;const y=($=t.default)==null?void 0:$.call(t,n);if(!y||y.length>1)return null;const k=findFirstLegitChild(y);return k?withDirectives(cloneVNode(k,n),[[g]]):null}}});function findFirstLegitChild(e){if(!e)return null;const t=e;for(const n of t){if(isObject$4(n))switch(n.type){case Comment:continue;case Text$1:case"svg":return wrapTextContent(n);case Fragment:return findFirstLegitChild(n.children);default:return n}return wrapTextContent(n)}return null}function wrapTextContent(e){const t=useNamespace("only-child");return createVNode("span",{class:t.e("content")},[e])}const popperTriggerProps=buildProps({virtualRef:{type:definePropType(Object)},virtualTriggering:Boolean,onMouseenter:{type:definePropType(Function)},onMouseleave:{type:definePropType(Function)},onClick:{type:definePropType(Function)},onKeydown:{type:definePropType(Function)},onFocus:{type:definePropType(Function)},onBlur:{type:definePropType(Function)},onContextmenu:{type:definePropType(Function)},id:String,open:Boolean}),__default__$1s=defineComponent({name:"ElPopperTrigger",inheritAttrs:!1}),_sfc_main$2e=defineComponent({...__default__$1s,props:popperTriggerProps,setup(e,{expose:t}){const n=e,{role:r,triggerRef:i}=inject(POPPER_INJECTION_KEY,void 0);useForwardRef(i);const g=computed(()=>y.value?n.id:void 0),$=computed(()=>{if(r&&r.value==="tooltip")return n.open&&n.id?n.id:void 0}),y=computed(()=>{if(r&&r.value!=="tooltip")return r.value}),k=computed(()=>y.value?`${n.open}`:void 0);let j;return onMounted(()=>{watch(()=>n.virtualRef,L=>{L&&(i.value=unrefElement(L))},{immediate:!0}),watch(i,(L,V)=>{j==null||j(),j=void 0,isElement$1(L)&&(["onMouseenter","onMouseleave","onClick","onKeydown","onFocus","onBlur","onContextmenu"].forEach(z=>{var oe;const re=n[z];re&&(L.addEventListener(z.slice(2).toLowerCase(),re),(oe=V==null?void 0:V.removeEventListener)==null||oe.call(V,z.slice(2).toLowerCase(),re))}),j=watch([g,$,y,k],z=>{["aria-controls","aria-describedby","aria-haspopup","aria-expanded"].forEach((oe,re)=>{isNil(z[re])?L.removeAttribute(oe):L.setAttribute(oe,z[re])})},{immediate:!0})),isElement$1(V)&&["aria-controls","aria-describedby","aria-haspopup","aria-expanded"].forEach(z=>V.removeAttribute(z))},{immediate:!0})}),onBeforeUnmount(()=>{j==null||j(),j=void 0}),t({triggerRef:i}),(L,V)=>L.virtualTriggering?createCommentVNode("v-if",!0):(openBlock(),createBlock(unref(OnlyChild),mergeProps({key:0},L.$attrs,{"aria-controls":unref(g),"aria-describedby":unref($),"aria-expanded":unref(k),"aria-haspopup":unref(y)}),{default:withCtx(()=>[renderSlot(L.$slots,"default")]),_:3},16,["aria-controls","aria-describedby","aria-expanded","aria-haspopup"]))}});var ElPopperTrigger=_export_sfc$1(_sfc_main$2e,[["__file","/home/runner/work/element-plus/element-plus/packages/components/popper/src/trigger.vue"]]);const FOCUS_AFTER_TRAPPED="focus-trap.focus-after-trapped",FOCUS_AFTER_RELEASED="focus-trap.focus-after-released",FOCUSOUT_PREVENTED="focus-trap.focusout-prevented",FOCUS_AFTER_TRAPPED_OPTS={cancelable:!0,bubbles:!1},FOCUSOUT_PREVENTED_OPTS={cancelable:!0,bubbles:!1},ON_TRAP_FOCUS_EVT="focusAfterTrapped",ON_RELEASE_FOCUS_EVT="focusAfterReleased",FOCUS_TRAP_INJECTION_KEY=Symbol("elFocusTrap"),focusReason=ref(),lastUserFocusTimestamp=ref(0),lastAutomatedFocusTimestamp=ref(0);let focusReasonUserCount=0;const obtainAllFocusableElements=e=>{const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>{const i=r.tagName==="INPUT"&&r.type==="hidden";return r.disabled||r.hidden||i?NodeFilter.FILTER_SKIP:r.tabIndex>=0||r===document.activeElement?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t},getVisibleElement=(e,t)=>{for(const n of e)if(!isHidden(n,t))return n},isHidden=(e,t)=>{if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1},getEdges=e=>{const t=obtainAllFocusableElements(e),n=getVisibleElement(t,e),r=getVisibleElement(t.reverse(),e);return[n,r]},isSelectable=e=>e instanceof HTMLInputElement&&"select"in e,tryFocus=(e,t)=>{if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),lastAutomatedFocusTimestamp.value=window.performance.now(),e!==n&&isSelectable(e)&&t&&e.select()}};function removeFromStack(e,t){const n=[...e],r=e.indexOf(t);return r!==-1&&n.splice(r,1),n}const createFocusableStack=()=>{let e=[];return{push:r=>{const i=e[0];i&&r!==i&&i.pause(),e=removeFromStack(e,r),e.unshift(r)},remove:r=>{var i,g;e=removeFromStack(e,r),(g=(i=e[0])==null?void 0:i.resume)==null||g.call(i)}}},focusFirstDescendant=(e,t=!1)=>{const n=document.activeElement;for(const r of e)if(tryFocus(r,t),document.activeElement!==n)return},focusableStack=createFocusableStack(),isFocusCausedByUserEvent=()=>lastUserFocusTimestamp.value>lastAutomatedFocusTimestamp.value,notifyFocusReasonPointer=()=>{focusReason.value="pointer",lastUserFocusTimestamp.value=window.performance.now()},notifyFocusReasonKeydown=()=>{focusReason.value="keyboard",lastUserFocusTimestamp.value=window.performance.now()},useFocusReason=()=>(onMounted(()=>{focusReasonUserCount===0&&(document.addEventListener("mousedown",notifyFocusReasonPointer),document.addEventListener("touchstart",notifyFocusReasonPointer),document.addEventListener("keydown",notifyFocusReasonKeydown)),focusReasonUserCount++}),onBeforeUnmount(()=>{focusReasonUserCount--,focusReasonUserCount<=0&&(document.removeEventListener("mousedown",notifyFocusReasonPointer),document.removeEventListener("touchstart",notifyFocusReasonPointer),document.removeEventListener("keydown",notifyFocusReasonKeydown))}),{focusReason,lastUserFocusTimestamp,lastAutomatedFocusTimestamp}),createFocusOutPreventedEvent=e=>new CustomEvent(FOCUSOUT_PREVENTED,{...FOCUSOUT_PREVENTED_OPTS,detail:e}),_sfc_main$2d=defineComponent({name:"ElFocusTrap",inheritAttrs:!1,props:{loop:Boolean,trapped:Boolean,focusTrapEl:Object,focusStartEl:{type:[Object,String],default:"first"}},emits:[ON_TRAP_FOCUS_EVT,ON_RELEASE_FOCUS_EVT,"focusin","focusout","focusout-prevented","release-requested"],setup(e,{emit:t}){const n=ref();let r,i;const{focusReason:g}=useFocusReason();useEscapeKeydown(re=>{e.trapped&&!$.paused&&t("release-requested",re)});const $={paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}},y=re=>{if(!e.loop&&!e.trapped||$.paused)return;const{key:ie,altKey:ae,ctrlKey:le,metaKey:de,currentTarget:pe,shiftKey:he}=re,{loop:ue}=e,_e=ie===EVENT_CODE.tab&&!ae&&!le&&!de,Ie=document.activeElement;if(_e&&Ie){const Ce=pe,[Oe,$e]=getEdges(Ce);if(Oe&&$e){if(!he&&Ie===$e){const ze=createFocusOutPreventedEvent({focusReason:g.value});t("focusout-prevented",ze),ze.defaultPrevented||(re.preventDefault(),ue&&tryFocus(Oe,!0))}else if(he&&[Oe,Ce].includes(Ie)){const ze=createFocusOutPreventedEvent({focusReason:g.value});t("focusout-prevented",ze),ze.defaultPrevented||(re.preventDefault(),ue&&tryFocus($e,!0))}}else if(Ie===Ce){const ze=createFocusOutPreventedEvent({focusReason:g.value});t("focusout-prevented",ze),ze.defaultPrevented||re.preventDefault()}}};provide(FOCUS_TRAP_INJECTION_KEY,{focusTrapRef:n,onKeydown:y}),watch(()=>e.focusTrapEl,re=>{re&&(n.value=re)},{immediate:!0}),watch([n],([re],[ie])=>{re&&(re.addEventListener("keydown",y),re.addEventListener("focusin",L),re.addEventListener("focusout",V)),ie&&(ie.removeEventListener("keydown",y),ie.removeEventListener("focusin",L),ie.removeEventListener("focusout",V))});const k=re=>{t(ON_TRAP_FOCUS_EVT,re)},j=re=>t(ON_RELEASE_FOCUS_EVT,re),L=re=>{const ie=unref(n);if(!ie)return;const ae=re.target,le=re.relatedTarget,de=ae&&ie.contains(ae);e.trapped||le&&ie.contains(le)||(r=le),de&&t("focusin",re),!$.paused&&e.trapped&&(de?i=ae:tryFocus(i,!0))},V=re=>{const ie=unref(n);if(!($.paused||!ie))if(e.trapped){const ae=re.relatedTarget;!isNil(ae)&&!ie.contains(ae)&&setTimeout(()=>{if(!$.paused&&e.trapped){const le=createFocusOutPreventedEvent({focusReason:g.value});t("focusout-prevented",le),le.defaultPrevented||tryFocus(i,!0)}},0)}else{const ae=re.target;ae&&ie.contains(ae)||t("focusout",re)}};async function z(){await nextTick();const re=unref(n);if(re){focusableStack.push($);const ie=re.contains(document.activeElement)?r:document.activeElement;if(r=ie,!re.contains(ie)){const le=new Event(FOCUS_AFTER_TRAPPED,FOCUS_AFTER_TRAPPED_OPTS);re.addEventListener(FOCUS_AFTER_TRAPPED,k),re.dispatchEvent(le),le.defaultPrevented||nextTick(()=>{let de=e.focusStartEl;isString$3(de)||(tryFocus(de),document.activeElement!==de&&(de="first")),de==="first"&&focusFirstDescendant(obtainAllFocusableElements(re),!0),(document.activeElement===ie||de==="container")&&tryFocus(re)})}}}function oe(){const re=unref(n);if(re){re.removeEventListener(FOCUS_AFTER_TRAPPED,k);const ie=new CustomEvent(FOCUS_AFTER_RELEASED,{...FOCUS_AFTER_TRAPPED_OPTS,detail:{focusReason:g.value}});re.addEventListener(FOCUS_AFTER_RELEASED,j),re.dispatchEvent(ie),!ie.defaultPrevented&&(g.value=="keyboard"||!isFocusCausedByUserEvent())&&tryFocus(r!=null?r:document.body),re.removeEventListener(FOCUS_AFTER_RELEASED,k),focusableStack.remove($)}}return onMounted(()=>{e.trapped&&z(),watch(()=>e.trapped,re=>{re?z():oe()})}),onBeforeUnmount(()=>{e.trapped&&oe()}),{onKeydown:y}}});function _sfc_render$C(e,t,n,r,i,g){return renderSlot(e.$slots,"default",{handleKeydown:e.onKeydown})}var ElFocusTrap=_export_sfc$1(_sfc_main$2d,[["render",_sfc_render$C],["__file","/home/runner/work/element-plus/element-plus/packages/components/focus-trap/src/focus-trap.vue"]]);const POSITIONING_STRATEGIES=["fixed","absolute"],popperCoreConfigProps=buildProps({boundariesPadding:{type:Number,default:0},fallbackPlacements:{type:definePropType(Array),default:void 0},gpuAcceleration:{type:Boolean,default:!0},offset:{type:Number,default:12},placement:{type:String,values:Ee,default:"bottom"},popperOptions:{type:definePropType(Object),default:()=>({})},strategy:{type:String,values:POSITIONING_STRATEGIES,default:"absolute"}}),popperContentProps=buildProps({...popperCoreConfigProps,id:String,style:{type:definePropType([String,Array,Object])},className:{type:definePropType([String,Array,Object])},effect:{type:String,default:"dark"},visible:Boolean,enterable:{type:Boolean,default:!0},pure:Boolean,focusOnShow:{type:Boolean,default:!1},trapping:{type:Boolean,default:!1},popperClass:{type:definePropType([String,Array,Object])},popperStyle:{type:definePropType([String,Array,Object])},referenceEl:{type:definePropType(Object)},triggerTargetEl:{type:definePropType(Object)},stopPopperMouseEvent:{type:Boolean,default:!0},ariaLabel:{type:String,default:void 0},virtualTriggering:Boolean,zIndex:Number}),popperContentEmits={mouseenter:e=>e instanceof MouseEvent,mouseleave:e=>e instanceof MouseEvent,focus:()=>!0,blur:()=>!0,close:()=>!0},buildPopperOptions=(e,t)=>{const{placement:n,strategy:r,popperOptions:i}=e,g={placement:n,strategy:r,...i,modifiers:genModifiers(e)};return attachArrow(g,t),deriveExtraModifiers(g,i==null?void 0:i.modifiers),g},unwrapMeasurableEl=e=>{if(!!isClient)return unrefElement(e)};function genModifiers(e){const{offset:t,gpuAcceleration:n,fallbackPlacements:r}=e;return[{name:"offset",options:{offset:[0,t!=null?t:12]}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5,fallbackPlacements:r}},{name:"computeStyles",options:{gpuAcceleration:n}}]}function attachArrow(e,{arrowEl:t,arrowOffset:n}){e.modifiers.push({name:"arrow",options:{element:t,padding:n!=null?n:5}})}function deriveExtraModifiers(e,t){t&&(e.modifiers=[...e.modifiers,...t!=null?t:[]])}const __default__$1r=defineComponent({name:"ElPopperContent"}),_sfc_main$2c=defineComponent({...__default__$1r,props:popperContentProps,emits:popperContentEmits,setup(e,{expose:t,emit:n}){const r=e,{popperInstanceRef:i,contentRef:g,triggerRef:$,role:y}=inject(POPPER_INJECTION_KEY,void 0),k=inject(formItemContextKey,void 0),{nextZIndex:j}=useZIndex(),L=useNamespace("popper"),V=ref(),z=ref("first"),oe=ref(),re=ref();provide(POPPER_CONTENT_INJECTION_KEY,{arrowRef:oe,arrowOffset:re}),k&&(k.addInputId||k.removeInputId)&&provide(formItemContextKey,{...k,addInputId:NOOP,removeInputId:NOOP});const ie=ref(r.zIndex||j()),ae=ref(!1);let le;const de=computed(()=>unwrapMeasurableEl(r.referenceEl)||unref($)),pe=computed(()=>[{zIndex:unref(ie)},r.popperStyle]),he=computed(()=>[L.b(),L.is("pure",r.pure),L.is(r.effect),r.popperClass]),ue=computed(()=>y&&y.value==="dialog"?"false":void 0),_e=({referenceEl:kt,popperContentEl:At,arrowEl:Pt})=>{const jt=buildPopperOptions(r,{arrowEl:Pt,arrowOffset:unref(re)});return yn(kt,At,jt)},Ie=(kt=!0)=>{var At;(At=unref(i))==null||At.update(),kt&&(ie.value=r.zIndex||j())},Ce=()=>{var kt,At;const Pt={name:"eventListeners",enabled:r.visible};(At=(kt=unref(i))==null?void 0:kt.setOptions)==null||At.call(kt,jt=>({...jt,modifiers:[...jt.modifiers||[],Pt]})),Ie(!1),r.visible&&r.focusOnShow?ae.value=!0:r.visible===!1&&(ae.value=!1)},Oe=()=>{n("focus")},$e=kt=>{var At;((At=kt.detail)==null?void 0:At.focusReason)!=="pointer"&&(z.value="first",n("blur"))},qe=kt=>{r.visible&&!ae.value&&(kt.target&&(z.value=kt.target),ae.value=!0)},ze=kt=>{r.trapping||(kt.detail.focusReason==="pointer"&&kt.preventDefault(),ae.value=!1)},Ue=()=>{ae.value=!1,n("close")};return onMounted(()=>{let kt;watch(de,At=>{var Pt;kt==null||kt();const jt=unref(i);if((Pt=jt==null?void 0:jt.destroy)==null||Pt.call(jt),At){const bn=unref(V);g.value=bn,i.value=_e({referenceEl:At,popperContentEl:bn,arrowEl:unref(oe)}),kt=watch(()=>At.getBoundingClientRect(),()=>Ie(),{immediate:!0})}else i.value=void 0},{immediate:!0}),watch(()=>r.triggerTargetEl,(At,Pt)=>{le==null||le(),le=void 0;const jt=unref(At||V.value),bn=unref(Pt||V.value);isElement$1(jt)&&(le=watch([y,()=>r.ariaLabel,ue,()=>r.id],hn=>{["role","aria-label","aria-modal","id"].forEach((Dt,wn)=>{isNil(hn[wn])?jt.removeAttribute(Dt):jt.setAttribute(Dt,hn[wn])})},{immediate:!0})),bn!==jt&&isElement$1(bn)&&["role","aria-label","aria-modal","id"].forEach(hn=>{bn.removeAttribute(hn)})},{immediate:!0}),watch(()=>r.visible,Ce,{immediate:!0}),watch(()=>buildPopperOptions(r,{arrowEl:unref(oe),arrowOffset:unref(re)}),At=>{var Pt;return(Pt=i.value)==null?void 0:Pt.setOptions(At)})}),onBeforeUnmount(()=>{le==null||le(),le=void 0}),t({popperContentRef:V,popperInstanceRef:i,updatePopper:Ie,contentStyle:pe}),(kt,At)=>(openBlock(),createElementBlock("div",{ref_key:"popperContentRef",ref:V,style:normalizeStyle(unref(pe)),class:normalizeClass(unref(he)),tabindex:"-1",onMouseenter:At[0]||(At[0]=Pt=>kt.$emit("mouseenter",Pt)),onMouseleave:At[1]||(At[1]=Pt=>kt.$emit("mouseleave",Pt))},[createVNode(unref(ElFocusTrap),{trapped:ae.value,"trap-on-focus-in":!0,"focus-trap-el":V.value,"focus-start-el":z.value,onFocusAfterTrapped:Oe,onFocusAfterReleased:$e,onFocusin:qe,onFocusoutPrevented:ze,onReleaseRequested:Ue},{default:withCtx(()=>[renderSlot(kt.$slots,"default")]),_:3},8,["trapped","focus-trap-el","focus-start-el"])],38))}});var ElPopperContent=_export_sfc$1(_sfc_main$2c,[["__file","/home/runner/work/element-plus/element-plus/packages/components/popper/src/content.vue"]]);const ElPopper=withInstall(Popper),ns=useNamespace("tooltip"),useTooltipContentProps=buildProps({...useDelayedToggleProps,...popperContentProps,appendTo:{type:definePropType([String,Object])},content:{type:String,default:""},rawContent:{type:Boolean,default:!1},persistent:Boolean,ariaLabel:String,visible:{type:definePropType(Boolean),default:null},transition:{type:String,default:`${ns.namespace.value}-fade-in-linear`},teleported:{type:Boolean,default:!0},disabled:{type:Boolean}}),useTooltipTriggerProps=buildProps({...popperTriggerProps,disabled:Boolean,trigger:{type:definePropType([String,Array]),default:"hover"},triggerKeys:{type:definePropType(Array),default:()=>[EVENT_CODE.enter,EVENT_CODE.space]}}),{useModelToggleProps:useTooltipModelToggleProps,useModelToggleEmits:useTooltipModelToggleEmits,useModelToggle:useTooltipModelToggle}=createModelToggleComposable("visible"),useTooltipProps=buildProps({...popperProps,...useTooltipModelToggleProps,...useTooltipContentProps,...useTooltipTriggerProps,...popperArrowProps,showArrow:{type:Boolean,default:!0}}),tooltipEmits=[...useTooltipModelToggleEmits,"before-show","before-hide","show","hide","open","close"],isTriggerType=(e,t)=>isArray$4(e)?e.includes(t):e===t,whenTrigger=(e,t,n)=>r=>{isTriggerType(unref(e),t)&&n(r)},__default__$1q=defineComponent({name:"ElTooltipTrigger"}),_sfc_main$2b=defineComponent({...__default__$1q,props:useTooltipTriggerProps,setup(e,{expose:t}){const n=e,r=useNamespace("tooltip"),{controlled:i,id:g,open:$,onOpen:y,onClose:k,onToggle:j}=inject(TOOLTIP_INJECTION_KEY,void 0),L=ref(null),V=()=>{if(unref(i)||n.disabled)return!0},z=toRef(n,"trigger"),oe=composeEventHandlers(V,whenTrigger(z,"hover",y)),re=composeEventHandlers(V,whenTrigger(z,"hover",k)),ie=composeEventHandlers(V,whenTrigger(z,"click",he=>{he.button===0&&j(he)})),ae=composeEventHandlers(V,whenTrigger(z,"focus",y)),le=composeEventHandlers(V,whenTrigger(z,"focus",k)),de=composeEventHandlers(V,whenTrigger(z,"contextmenu",he=>{he.preventDefault(),j(he)})),pe=composeEventHandlers(V,he=>{const{code:ue}=he;n.triggerKeys.includes(ue)&&(he.preventDefault(),j(he))});return t({triggerRef:L}),(he,ue)=>(openBlock(),createBlock(unref(ElPopperTrigger),{id:unref(g),"virtual-ref":he.virtualRef,open:unref($),"virtual-triggering":he.virtualTriggering,class:normalizeClass(unref(r).e("trigger")),onBlur:unref(le),onClick:unref(ie),onContextmenu:unref(de),onFocus:unref(ae),onMouseenter:unref(oe),onMouseleave:unref(re),onKeydown:unref(pe)},{default:withCtx(()=>[renderSlot(he.$slots,"default")]),_:3},8,["id","virtual-ref","open","virtual-triggering","class","onBlur","onClick","onContextmenu","onFocus","onMouseenter","onMouseleave","onKeydown"]))}});var ElTooltipTrigger=_export_sfc$1(_sfc_main$2b,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tooltip/src/trigger.vue"]]);const __default__$1p=defineComponent({name:"ElTooltipContent",inheritAttrs:!1}),_sfc_main$2a=defineComponent({...__default__$1p,props:useTooltipContentProps,setup(e,{expose:t}){const n=e,{selector:r}=usePopperContainerId(),i=ref(null),g=ref(!1),{controlled:$,id:y,open:k,trigger:j,onClose:L,onOpen:V,onShow:z,onHide:oe,onBeforeShow:re,onBeforeHide:ie}=inject(TOOLTIP_INJECTION_KEY,void 0),ae=computed(()=>n.persistent);onBeforeUnmount(()=>{g.value=!0});const le=computed(()=>unref(ae)?!0:unref(k)),de=computed(()=>n.disabled?!1:unref(k)),pe=computed(()=>n.appendTo||r.value),he=computed(()=>{var At;return(At=n.style)!=null?At:{}}),ue=computed(()=>!unref(k)),_e=()=>{oe()},Ie=()=>{if(unref($))return!0},Ce=composeEventHandlers(Ie,()=>{n.enterable&&unref(j)==="hover"&&V()}),Oe=composeEventHandlers(Ie,()=>{unref(j)==="hover"&&L()}),$e=()=>{var At,Pt;(Pt=(At=i.value)==null?void 0:At.updatePopper)==null||Pt.call(At),re==null||re()},qe=()=>{ie==null||ie()},ze=()=>{z(),kt=onClickOutside(computed(()=>{var At;return(At=i.value)==null?void 0:At.popperContentRef}),()=>{if(unref($))return;unref(j)!=="hover"&&L()})},Ue=()=>{n.virtualTriggering||L()};let kt;return watch(()=>unref(k),At=>{At||kt==null||kt()},{flush:"post"}),watch(()=>n.content,()=>{var At,Pt;(Pt=(At=i.value)==null?void 0:At.updatePopper)==null||Pt.call(At)}),t({contentRef:i}),(At,Pt)=>(openBlock(),createBlock(Teleport,{disabled:!At.teleported,to:unref(pe)},[createVNode(Transition,{name:At.transition,onAfterLeave:_e,onBeforeEnter:$e,onAfterEnter:ze,onBeforeLeave:qe},{default:withCtx(()=>[unref(le)?withDirectives((openBlock(),createBlock(unref(ElPopperContent),mergeProps({key:0,id:unref(y),ref_key:"contentRef",ref:i},At.$attrs,{"aria-label":At.ariaLabel,"aria-hidden":unref(ue),"boundaries-padding":At.boundariesPadding,"fallback-placements":At.fallbackPlacements,"gpu-acceleration":At.gpuAcceleration,offset:At.offset,placement:At.placement,"popper-options":At.popperOptions,strategy:At.strategy,effect:At.effect,enterable:At.enterable,pure:At.pure,"popper-class":At.popperClass,"popper-style":[At.popperStyle,unref(he)],"reference-el":At.referenceEl,"trigger-target-el":At.triggerTargetEl,visible:unref(de),"z-index":At.zIndex,onMouseenter:unref(Ce),onMouseleave:unref(Oe),onBlur:Ue,onClose:unref(L)}),{default:withCtx(()=>[g.value?createCommentVNode("v-if",!0):renderSlot(At.$slots,"default",{key:0})]),_:3},16,["id","aria-label","aria-hidden","boundaries-padding","fallback-placements","gpu-acceleration","offset","placement","popper-options","strategy","effect","enterable","pure","popper-class","popper-style","reference-el","trigger-target-el","visible","z-index","onMouseenter","onMouseleave","onClose"])),[[vShow,unref(de)]]):createCommentVNode("v-if",!0)]),_:3},8,["name"])],8,["disabled","to"]))}});var ElTooltipContent=_export_sfc$1(_sfc_main$2a,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tooltip/src/content.vue"]]);const _hoisted_1$15=["innerHTML"],_hoisted_2$I={key:1},__default__$1o=defineComponent({name:"ElTooltip"}),_sfc_main$29=defineComponent({...__default__$1o,props:useTooltipProps,emits:tooltipEmits,setup(e,{expose:t,emit:n}){const r=e;usePopperContainer();const i=useId(),g=ref(),$=ref(),y=()=>{var le;const de=unref(g);de&&((le=de.popperInstanceRef)==null||le.update())},k=ref(!1),j=ref(),{show:L,hide:V,hasUpdateHandler:z}=useTooltipModelToggle({indicator:k,toggleReason:j}),{onOpen:oe,onClose:re}=useDelayedToggle({showAfter:toRef(r,"showAfter"),hideAfter:toRef(r,"hideAfter"),open:L,close:V}),ie=computed(()=>isBoolean$1(r.visible)&&!z.value);provide(TOOLTIP_INJECTION_KEY,{controlled:ie,id:i,open:readonly(k),trigger:toRef(r,"trigger"),onOpen:le=>{oe(le)},onClose:le=>{re(le)},onToggle:le=>{unref(k)?re(le):oe(le)},onShow:()=>{n("show",j.value)},onHide:()=>{n("hide",j.value)},onBeforeShow:()=>{n("before-show",j.value)},onBeforeHide:()=>{n("before-hide",j.value)},updatePopper:y}),watch(()=>r.disabled,le=>{le&&k.value&&(k.value=!1)});const ae=()=>{var le,de;const pe=(de=(le=$.value)==null?void 0:le.contentRef)==null?void 0:de.popperContentRef;return pe&&pe.contains(document.activeElement)};return onDeactivated(()=>k.value&&V()),t({popperRef:g,contentRef:$,isFocusInsideContent:ae,updatePopper:y,onOpen:oe,onClose:re,hide:V}),(le,de)=>(openBlock(),createBlock(unref(ElPopper),{ref_key:"popperRef",ref:g,role:le.role},{default:withCtx(()=>[createVNode(ElTooltipTrigger,{disabled:le.disabled,trigger:le.trigger,"trigger-keys":le.triggerKeys,"virtual-ref":le.virtualRef,"virtual-triggering":le.virtualTriggering},{default:withCtx(()=>[le.$slots.default?renderSlot(le.$slots,"default",{key:0}):createCommentVNode("v-if",!0)]),_:3},8,["disabled","trigger","trigger-keys","virtual-ref","virtual-triggering"]),createVNode(ElTooltipContent,{ref_key:"contentRef",ref:$,"aria-label":le.ariaLabel,"boundaries-padding":le.boundariesPadding,content:le.content,disabled:le.disabled,effect:le.effect,enterable:le.enterable,"fallback-placements":le.fallbackPlacements,"hide-after":le.hideAfter,"gpu-acceleration":le.gpuAcceleration,offset:le.offset,persistent:le.persistent,"popper-class":le.popperClass,"popper-style":le.popperStyle,placement:le.placement,"popper-options":le.popperOptions,pure:le.pure,"raw-content":le.rawContent,"reference-el":le.referenceEl,"trigger-target-el":le.triggerTargetEl,"show-after":le.showAfter,strategy:le.strategy,teleported:le.teleported,transition:le.transition,"virtual-triggering":le.virtualTriggering,"z-index":le.zIndex,"append-to":le.appendTo},{default:withCtx(()=>[renderSlot(le.$slots,"content",{},()=>[le.rawContent?(openBlock(),createElementBlock("span",{key:0,innerHTML:le.content},null,8,_hoisted_1$15)):(openBlock(),createElementBlock("span",_hoisted_2$I,toDisplayString$1(le.content),1))]),le.showArrow?(openBlock(),createBlock(unref(ElPopperArrow),{key:0,"arrow-offset":le.arrowOffset},null,8,["arrow-offset"])):createCommentVNode("v-if",!0)]),_:3},8,["aria-label","boundaries-padding","content","disabled","effect","enterable","fallback-placements","hide-after","gpu-acceleration","offset","persistent","popper-class","popper-style","placement","popper-options","pure","raw-content","reference-el","trigger-target-el","show-after","strategy","teleported","transition","virtual-triggering","z-index","append-to"])]),_:3},8,["role"]))}});var Tooltip=_export_sfc$1(_sfc_main$29,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tooltip/src/tooltip.vue"]]);const ElTooltip=withInstall(Tooltip),autocompleteProps=buildProps({valueKey:{type:String,default:"value"},modelValue:{type:[String,Number],default:""},debounce:{type:Number,default:300},placement:{type:definePropType(String),values:["top","top-start","top-end","bottom","bottom-start","bottom-end"],default:"bottom-start"},fetchSuggestions:{type:definePropType([Function,Array]),default:NOOP},popperClass:{type:String,default:""},triggerOnFocus:{type:Boolean,default:!0},selectWhenUnmatched:{type:Boolean,default:!1},hideLoading:{type:Boolean,default:!1},label:{type:String},teleported:useTooltipContentProps.teleported,highlightFirstItem:{type:Boolean,default:!1},fitInputWidth:{type:Boolean,default:!1}}),autocompleteEmits={[UPDATE_MODEL_EVENT]:e=>isString$3(e),[INPUT_EVENT]:e=>isString$3(e),[CHANGE_EVENT]:e=>isString$3(e),focus:e=>e instanceof FocusEvent,blur:e=>e instanceof FocusEvent,clear:()=>!0,select:e=>isObject$4(e)},_hoisted_1$14=["aria-expanded","aria-owns"],_hoisted_2$H={key:0},_hoisted_3$l=["id","aria-selected","onClick"],COMPONENT_NAME$j="ElAutocomplete",__default__$1n=defineComponent({name:COMPONENT_NAME$j,inheritAttrs:!1}),_sfc_main$28=defineComponent({...__default__$1n,props:autocompleteProps,emits:autocompleteEmits,setup(e,{expose:t,emit:n}){const r=e,i=useAttrs(),g=useAttrs$1(),$=useDisabled(),y=useNamespace("autocomplete"),k=ref(),j=ref(),L=ref(),V=ref();let z=!1,oe=!1;const re=ref([]),ie=ref(-1),ae=ref(""),le=ref(!1),de=ref(!1),pe=ref(!1),he=computed(()=>y.b(String(generateId()))),ue=computed(()=>g.style),_e=computed(()=>(re.value.length>0||pe.value)&&le.value),Ie=computed(()=>!r.hideLoading&&pe.value),Ce=computed(()=>k.value?Array.from(k.value.$el.querySelectorAll("input")):[]),Oe=async()=>{await nextTick(),_e.value&&(ae.value=`${k.value.$el.offsetWidth}px`)},$e=()=>{oe=!0},qe=()=>{oe=!1,ie.value=-1},Ue=debounce$1(async Sn=>{if(de.value)return;const Bn=An=>{pe.value=!1,!de.value&&(isArray$4(An)?(re.value=An,ie.value=r.highlightFirstItem?0:-1):throwError(COMPONENT_NAME$j,"autocomplete suggestions must be an array"))};if(pe.value=!0,isArray$4(r.fetchSuggestions))Bn(r.fetchSuggestions);else{const An=await r.fetchSuggestions(Sn,Bn);isArray$4(An)&&Bn(An)}},r.debounce),kt=Sn=>{const Bn=!!Sn;if(n(INPUT_EVENT,Sn),n(UPDATE_MODEL_EVENT,Sn),de.value=!1,le.value||(le.value=Bn),!r.triggerOnFocus&&!Sn){de.value=!0,re.value=[];return}Ue(Sn)},At=Sn=>{var Bn;$.value||(((Bn=Sn.target)==null?void 0:Bn.tagName)!=="INPUT"||Ce.value.includes(document.activeElement))&&(le.value=!0)},Pt=Sn=>{n(CHANGE_EVENT,Sn)},jt=Sn=>{oe||(le.value=!0,n("focus",Sn),r.triggerOnFocus&&!z&&Ue(String(r.modelValue)))},bn=Sn=>{oe||n("blur",Sn)},hn=()=>{le.value=!1,n(UPDATE_MODEL_EVENT,""),n("clear")},Dt=async()=>{_e.value&&ie.value>=0&&ie.value{_e.value&&(Sn.preventDefault(),Sn.stopPropagation(),_n())},_n=()=>{le.value=!1},vn=()=>{var Sn;(Sn=k.value)==null||Sn.focus()},Cn=()=>{var Sn;(Sn=k.value)==null||Sn.blur()},xn=async Sn=>{n(INPUT_EVENT,Sn[r.valueKey]),n(UPDATE_MODEL_EVENT,Sn[r.valueKey]),n("select",Sn),re.value=[],ie.value=-1},En=Sn=>{if(!_e.value||pe.value)return;if(Sn<0){ie.value=-1;return}Sn>=re.value.length&&(Sn=re.value.length-1);const Bn=j.value.querySelector(`.${y.be("suggestion","wrap")}`),Pn=Bn.querySelectorAll(`.${y.be("suggestion","list")} li`)[Sn],Mn=Bn.scrollTop,{offsetTop:Fn,scrollHeight:jn}=Pn;Fn+jn>Mn+Bn.clientHeight&&(Bn.scrollTop+=jn),Fn{_e.value&&_n()}),onMounted(()=>{k.value.ref.setAttribute("role","textbox"),k.value.ref.setAttribute("aria-autocomplete","list"),k.value.ref.setAttribute("aria-controls","id"),k.value.ref.setAttribute("aria-activedescendant",`${he.value}-item-${ie.value}`),z=k.value.ref.hasAttribute("readonly")}),t({highlightedIndex:ie,activated:le,loading:pe,inputRef:k,popperRef:L,suggestions:re,handleSelect:xn,handleKeyEnter:Dt,focus:vn,blur:Cn,close:_n,highlight:En}),(Sn,Bn)=>(openBlock(),createBlock(unref(ElTooltip),{ref_key:"popperRef",ref:L,visible:unref(_e),placement:Sn.placement,"fallback-placements":["bottom-start","top-start"],"popper-class":[unref(y).e("popper"),Sn.popperClass],teleported:Sn.teleported,"gpu-acceleration":!1,pure:"","manual-mode":"",effect:"light",trigger:"click",transition:`${unref(y).namespace.value}-zoom-in-top`,persistent:"",onBeforeShow:Oe,onShow:$e,onHide:qe},{content:withCtx(()=>[createBaseVNode("div",{ref_key:"regionRef",ref:j,class:normalizeClass([unref(y).b("suggestion"),unref(y).is("loading",unref(Ie))]),style:normalizeStyle({[Sn.fitInputWidth?"width":"minWidth"]:ae.value,outline:"none"}),role:"region"},[createVNode(unref(ElScrollbar),{id:unref(he),tag:"ul","wrap-class":unref(y).be("suggestion","wrap"),"view-class":unref(y).be("suggestion","list"),role:"listbox"},{default:withCtx(()=>[unref(Ie)?(openBlock(),createElementBlock("li",_hoisted_2$H,[createVNode(unref(ElIcon),{class:normalizeClass(unref(y).is("loading"))},{default:withCtx(()=>[createVNode(unref(loading_default))]),_:1},8,["class"])])):(openBlock(!0),createElementBlock(Fragment,{key:1},renderList(re.value,(An,Pn)=>(openBlock(),createElementBlock("li",{id:`${unref(he)}-item-${Pn}`,key:Pn,class:normalizeClass({highlighted:ie.value===Pn}),role:"option","aria-selected":ie.value===Pn,onClick:Mn=>xn(An)},[renderSlot(Sn.$slots,"default",{item:An},()=>[createTextVNode(toDisplayString$1(An[Sn.valueKey]),1)])],10,_hoisted_3$l))),128))]),_:3},8,["id","wrap-class","view-class"])],6)]),default:withCtx(()=>[createBaseVNode("div",{ref_key:"listboxRef",ref:V,class:normalizeClass([unref(y).b(),Sn.$attrs.class]),style:normalizeStyle(unref(ue)),role:"combobox","aria-haspopup":"listbox","aria-expanded":unref(_e),"aria-owns":unref(he)},[createVNode(unref(ElInput),mergeProps({ref_key:"inputRef",ref:k},unref(i),{"model-value":Sn.modelValue,onInput:kt,onChange:Pt,onFocus:jt,onBlur:bn,onClear:hn,onKeydown:[Bn[0]||(Bn[0]=withKeys(withModifiers(An=>En(ie.value-1),["prevent"]),["up"])),Bn[1]||(Bn[1]=withKeys(withModifiers(An=>En(ie.value+1),["prevent"]),["down"])),withKeys(Dt,["enter"]),withKeys(_n,["tab"]),withKeys(wn,["esc"])],onMousedown:At}),createSlots({_:2},[Sn.$slots.prepend?{name:"prepend",fn:withCtx(()=>[renderSlot(Sn.$slots,"prepend")])}:void 0,Sn.$slots.append?{name:"append",fn:withCtx(()=>[renderSlot(Sn.$slots,"append")])}:void 0,Sn.$slots.prefix?{name:"prefix",fn:withCtx(()=>[renderSlot(Sn.$slots,"prefix")])}:void 0,Sn.$slots.suffix?{name:"suffix",fn:withCtx(()=>[renderSlot(Sn.$slots,"suffix")])}:void 0]),1040,["model-value","onKeydown"])],14,_hoisted_1$14)]),_:3},8,["visible","placement","popper-class","teleported","transition"]))}});var Autocomplete=_export_sfc$1(_sfc_main$28,[["__file","/home/runner/work/element-plus/element-plus/packages/components/autocomplete/src/autocomplete.vue"]]);const ElAutocomplete=withInstall(Autocomplete),avatarProps=buildProps({size:{type:[Number,String],values:componentSizes,default:"",validator:e=>isNumber$1(e)},shape:{type:String,values:["circle","square"],default:"circle"},icon:{type:iconPropType},src:{type:String,default:""},alt:String,srcSet:String,fit:{type:definePropType(String),default:"cover"}}),avatarEmits={error:e=>e instanceof Event},_hoisted_1$13=["src","alt","srcset"],__default__$1m=defineComponent({name:"ElAvatar"}),_sfc_main$27=defineComponent({...__default__$1m,props:avatarProps,emits:avatarEmits,setup(e,{emit:t}){const n=e,r=useNamespace("avatar"),i=ref(!1),g=computed(()=>{const{size:j,icon:L,shape:V}=n,z=[r.b()];return isString$3(j)&&z.push(r.m(j)),L&&z.push(r.m("icon")),V&&z.push(r.m(V)),z}),$=computed(()=>{const{size:j}=n;return isNumber$1(j)?r.cssVarBlock({size:addUnit(j)||""}):void 0}),y=computed(()=>({objectFit:n.fit}));watch(()=>n.src,()=>i.value=!1);function k(j){i.value=!0,t("error",j)}return(j,L)=>(openBlock(),createElementBlock("span",{class:normalizeClass(unref(g)),style:normalizeStyle(unref($))},[(j.src||j.srcSet)&&!i.value?(openBlock(),createElementBlock("img",{key:0,src:j.src,alt:j.alt,srcset:j.srcSet,style:normalizeStyle(unref(y)),onError:k},null,44,_hoisted_1$13)):j.icon?(openBlock(),createBlock(unref(ElIcon),{key:1},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(j.icon)))]),_:1})):renderSlot(j.$slots,"default",{key:2})],6))}});var Avatar=_export_sfc$1(_sfc_main$27,[["__file","/home/runner/work/element-plus/element-plus/packages/components/avatar/src/avatar.vue"]]);const ElAvatar=withInstall(Avatar),backtopProps={visibilityHeight:{type:Number,default:200},target:{type:String,default:""},right:{type:Number,default:40},bottom:{type:Number,default:40}},backtopEmits={click:e=>e instanceof MouseEvent},useBackTop=(e,t,n)=>{const r=shallowRef(),i=shallowRef(),g=ref(!1),$=()=>{if(!r.value)return;const L=Date.now(),V=r.value.scrollTop,z=()=>{if(!r.value)return;const oe=(Date.now()-L)/500;oe<1?(r.value.scrollTop=V*(1-easeInOutCubic(oe)),requestAnimationFrame(z)):r.value.scrollTop=0};requestAnimationFrame(z)},y=()=>{r.value&&(g.value=r.value.scrollTop>=e.visibilityHeight)},k=L=>{$(),t("click",L)},j=useThrottleFn(y,300,!0);return useEventListener(i,"scroll",j),onMounted(()=>{var L;i.value=document,r.value=document.documentElement,e.target&&(r.value=(L=document.querySelector(e.target))!=null?L:void 0,r.value||throwError(n,`target does not exist: ${e.target}`),i.value=r.value)}),{visible:g,handleClick:k}},COMPONENT_NAME$i="ElBacktop",__default__$1l=defineComponent({name:COMPONENT_NAME$i}),_sfc_main$26=defineComponent({...__default__$1l,props:backtopProps,emits:backtopEmits,setup(e,{emit:t}){const n=e,r=useNamespace("backtop"),{handleClick:i,visible:g}=useBackTop(n,t,COMPONENT_NAME$i),$=computed(()=>({right:`${n.right}px`,bottom:`${n.bottom}px`}));return(y,k)=>(openBlock(),createBlock(Transition,{name:`${unref(r).namespace.value}-fade-in`},{default:withCtx(()=>[unref(g)?(openBlock(),createElementBlock("div",{key:0,style:normalizeStyle(unref($)),class:normalizeClass(unref(r).b()),onClick:k[0]||(k[0]=withModifiers((...j)=>unref(i)&&unref(i)(...j),["stop"]))},[renderSlot(y.$slots,"default",{},()=>[createVNode(unref(ElIcon),{class:normalizeClass(unref(r).e("icon"))},{default:withCtx(()=>[createVNode(unref(caret_top_default))]),_:1},8,["class"])])],6)):createCommentVNode("v-if",!0)]),_:3},8,["name"]))}});var Backtop=_export_sfc$1(_sfc_main$26,[["__file","/home/runner/work/element-plus/element-plus/packages/components/backtop/src/backtop.vue"]]);const ElBacktop=withInstall(Backtop),badgeProps=buildProps({value:{type:[String,Number],default:""},max:{type:Number,default:99},isDot:Boolean,hidden:Boolean,type:{type:String,values:["primary","success","warning","info","danger"],default:"danger"}}),_hoisted_1$12=["textContent"],__default__$1k=defineComponent({name:"ElBadge"}),_sfc_main$25=defineComponent({...__default__$1k,props:badgeProps,setup(e,{expose:t}){const n=e,r=useNamespace("badge"),i=computed(()=>n.isDot?"":isNumber$1(n.value)&&isNumber$1(n.max)?n.max(openBlock(),createElementBlock("div",{class:normalizeClass(unref(r).b())},[renderSlot(g.$slots,"default"),createVNode(Transition,{name:`${unref(r).namespace.value}-zoom-in-center`,persisted:""},{default:withCtx(()=>[withDirectives(createBaseVNode("sup",{class:normalizeClass([unref(r).e("content"),unref(r).em("content",g.type),unref(r).is("fixed",!!g.$slots.default),unref(r).is("dot",g.isDot)]),textContent:toDisplayString$1(unref(i))},null,10,_hoisted_1$12),[[vShow,!g.hidden&&(unref(i)||g.isDot)]])]),_:1},8,["name"])],2))}});var Badge=_export_sfc$1(_sfc_main$25,[["__file","/home/runner/work/element-plus/element-plus/packages/components/badge/src/badge.vue"]]);const ElBadge=withInstall(Badge),breadcrumbProps=buildProps({separator:{type:String,default:"/"},separatorIcon:{type:iconPropType}}),__default__$1j=defineComponent({name:"ElBreadcrumb"}),_sfc_main$24=defineComponent({...__default__$1j,props:breadcrumbProps,setup(e){const t=e,n=useNamespace("breadcrumb"),r=ref();return provide(breadcrumbKey,t),onMounted(()=>{const i=r.value.querySelectorAll(`.${n.e("item")}`);i.length&&i[i.length-1].setAttribute("aria-current","page")}),(i,g)=>(openBlock(),createElementBlock("div",{ref_key:"breadcrumb",ref:r,class:normalizeClass(unref(n).b()),"aria-label":"Breadcrumb",role:"navigation"},[renderSlot(i.$slots,"default")],2))}});var Breadcrumb=_export_sfc$1(_sfc_main$24,[["__file","/home/runner/work/element-plus/element-plus/packages/components/breadcrumb/src/breadcrumb.vue"]]);const breadcrumbItemProps=buildProps({to:{type:definePropType([String,Object]),default:""},replace:{type:Boolean,default:!1}}),__default__$1i=defineComponent({name:"ElBreadcrumbItem"}),_sfc_main$23=defineComponent({...__default__$1i,props:breadcrumbItemProps,setup(e){const t=e,n=getCurrentInstance(),r=inject(breadcrumbKey,void 0),i=useNamespace("breadcrumb"),{separator:g,separatorIcon:$}=toRefs(r),y=n.appContext.config.globalProperties.$router,k=ref(),j=()=>{!t.to||!y||(t.replace?y.replace(t.to):y.push(t.to))};return(L,V)=>(openBlock(),createElementBlock("span",{class:normalizeClass(unref(i).e("item"))},[createBaseVNode("span",{ref_key:"link",ref:k,class:normalizeClass([unref(i).e("inner"),unref(i).is("link",!!L.to)]),role:"link",onClick:j},[renderSlot(L.$slots,"default")],2),unref($)?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(i).e("separator"))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref($))))]),_:1},8,["class"])):(openBlock(),createElementBlock("span",{key:1,class:normalizeClass(unref(i).e("separator")),role:"presentation"},toDisplayString$1(unref(g)),3))],2))}});var BreadcrumbItem=_export_sfc$1(_sfc_main$23,[["__file","/home/runner/work/element-plus/element-plus/packages/components/breadcrumb/src/breadcrumb-item.vue"]]);const ElBreadcrumb=withInstall(Breadcrumb,{BreadcrumbItem}),ElBreadcrumbItem=withNoopInstall(BreadcrumbItem),useButton=(e,t)=>{useDeprecated({from:"type.text",replacement:"link",version:"3.0.0",scope:"props",ref:"https://element-plus.org/en-US/component/button.html#button-attributes"},computed(()=>e.type==="text"));const n=inject(buttonGroupContextKey,void 0),r=useGlobalConfig("button"),{form:i}=useFormItem(),g=useSize(computed(()=>n==null?void 0:n.size)),$=useDisabled(),y=ref(),k=useSlots(),j=computed(()=>e.type||(n==null?void 0:n.type)||""),L=computed(()=>{var oe,re,ie;return(ie=(re=e.autoInsertSpace)!=null?re:(oe=r.value)==null?void 0:oe.autoInsertSpace)!=null?ie:!1}),V=computed(()=>{var oe;const re=(oe=k.default)==null?void 0:oe.call(k);if(L.value&&(re==null?void 0:re.length)===1){const ie=re[0];if((ie==null?void 0:ie.type)===Text$1){const ae=ie.children;return/^\p{Unified_Ideograph}{2}$/u.test(ae.trim())}}return!1});return{_disabled:$,_size:g,_type:j,_ref:y,shouldAddSpace:V,handleClick:oe=>{e.nativeType==="reset"&&(i==null||i.resetFields()),t("click",oe)}}},buttonTypes=["default","primary","success","warning","info","danger","text",""],buttonNativeTypes=["button","submit","reset"],buttonProps=buildProps({size:useSizeProp,disabled:Boolean,type:{type:String,values:buttonTypes,default:""},icon:{type:iconPropType},nativeType:{type:String,values:buttonNativeTypes,default:"button"},loading:Boolean,loadingIcon:{type:iconPropType,default:()=>loading_default},plain:Boolean,text:Boolean,link:Boolean,bg:Boolean,autofocus:Boolean,round:Boolean,circle:Boolean,color:String,dark:Boolean,autoInsertSpace:{type:Boolean,default:void 0}}),buttonEmits={click:e=>e instanceof MouseEvent};function bound01$1(e,t){isOnePointZero$1(e)&&(e="100%");var n=isPercentage$1(e);return e=t===360?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(t===360?e=(e<0?e%t+t:e%t)/parseFloat(String(t)):e=e%t/parseFloat(String(t)),e)}function clamp01(e){return Math.min(1,Math.max(0,e))}function isOnePointZero$1(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function isPercentage$1(e){return typeof e=="string"&&e.indexOf("%")!==-1}function boundAlpha(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function convertToPercentage(e){return e<=1?"".concat(Number(e)*100,"%"):e}function pad2(e){return e.length===1?"0"+e:String(e)}function rgbToRgb(e,t,n){return{r:bound01$1(e,255)*255,g:bound01$1(t,255)*255,b:bound01$1(n,255)*255}}function rgbToHsl(e,t,n){e=bound01$1(e,255),t=bound01$1(t,255),n=bound01$1(n,255);var r=Math.max(e,t,n),i=Math.min(e,t,n),g=0,$=0,y=(r+i)/2;if(r===i)$=0,g=0;else{var k=r-i;switch($=y>.5?k/(2-r-i):k/(r+i),r){case e:g=(t-n)/k+(t1&&(n-=1),n<1/6?e+(t-e)*(6*n):n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function hslToRgb(e,t,n){var r,i,g;if(e=bound01$1(e,360),t=bound01$1(t,100),n=bound01$1(n,100),t===0)i=n,g=n,r=n;else{var $=n<.5?n*(1+t):n+t-n*t,y=2*n-$;r=hue2rgb(y,$,e+1/3),i=hue2rgb(y,$,e),g=hue2rgb(y,$,e-1/3)}return{r:r*255,g:i*255,b:g*255}}function rgbToHsv(e,t,n){e=bound01$1(e,255),t=bound01$1(t,255),n=bound01$1(n,255);var r=Math.max(e,t,n),i=Math.min(e,t,n),g=0,$=r,y=r-i,k=r===0?0:y/r;if(r===i)g=0;else{switch(r){case e:g=(t-n)/y+(t>16,g:(e&65280)>>8,b:e&255}}var names={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function inputToRGB(e){var t={r:0,g:0,b:0},n=1,r=null,i=null,g=null,$=!1,y=!1;return typeof e=="string"&&(e=stringInputToObject(e)),typeof e=="object"&&(isValidCSSUnit(e.r)&&isValidCSSUnit(e.g)&&isValidCSSUnit(e.b)?(t=rgbToRgb(e.r,e.g,e.b),$=!0,y=String(e.r).substr(-1)==="%"?"prgb":"rgb"):isValidCSSUnit(e.h)&&isValidCSSUnit(e.s)&&isValidCSSUnit(e.v)?(r=convertToPercentage(e.s),i=convertToPercentage(e.v),t=hsvToRgb(e.h,r,i),$=!0,y="hsv"):isValidCSSUnit(e.h)&&isValidCSSUnit(e.s)&&isValidCSSUnit(e.l)&&(r=convertToPercentage(e.s),g=convertToPercentage(e.l),t=hslToRgb(e.h,r,g),$=!0,y="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=boundAlpha(n),{ok:$,format:e.format||y,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var CSS_INTEGER="[-\\+]?\\d+%?",CSS_NUMBER="[-\\+]?\\d*\\.\\d+%?",CSS_UNIT="(?:".concat(CSS_NUMBER,")|(?:").concat(CSS_INTEGER,")"),PERMISSIVE_MATCH3="[\\s|\\(]+(".concat(CSS_UNIT,")[,|\\s]+(").concat(CSS_UNIT,")[,|\\s]+(").concat(CSS_UNIT,")\\s*\\)?"),PERMISSIVE_MATCH4="[\\s|\\(]+(".concat(CSS_UNIT,")[,|\\s]+(").concat(CSS_UNIT,")[,|\\s]+(").concat(CSS_UNIT,")[,|\\s]+(").concat(CSS_UNIT,")\\s*\\)?"),matchers={CSS_UNIT:new RegExp(CSS_UNIT),rgb:new RegExp("rgb"+PERMISSIVE_MATCH3),rgba:new RegExp("rgba"+PERMISSIVE_MATCH4),hsl:new RegExp("hsl"+PERMISSIVE_MATCH3),hsla:new RegExp("hsla"+PERMISSIVE_MATCH4),hsv:new RegExp("hsv"+PERMISSIVE_MATCH3),hsva:new RegExp("hsva"+PERMISSIVE_MATCH4),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function stringInputToObject(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;var t=!1;if(names[e])e=names[e],t=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var n=matchers.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=matchers.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=matchers.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=matchers.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=matchers.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=matchers.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=matchers.hex8.exec(e),n?{r:parseIntFromHex(n[1]),g:parseIntFromHex(n[2]),b:parseIntFromHex(n[3]),a:convertHexToDecimal(n[4]),format:t?"name":"hex8"}:(n=matchers.hex6.exec(e),n?{r:parseIntFromHex(n[1]),g:parseIntFromHex(n[2]),b:parseIntFromHex(n[3]),format:t?"name":"hex"}:(n=matchers.hex4.exec(e),n?{r:parseIntFromHex(n[1]+n[1]),g:parseIntFromHex(n[2]+n[2]),b:parseIntFromHex(n[3]+n[3]),a:convertHexToDecimal(n[4]+n[4]),format:t?"name":"hex8"}:(n=matchers.hex3.exec(e),n?{r:parseIntFromHex(n[1]+n[1]),g:parseIntFromHex(n[2]+n[2]),b:parseIntFromHex(n[3]+n[3]),format:t?"name":"hex"}:!1)))))))))}function isValidCSSUnit(e){return Boolean(matchers.CSS_UNIT.exec(String(e)))}var TinyColor=function(){function e(t,n){t===void 0&&(t=""),n===void 0&&(n={});var r;if(t instanceof e)return t;typeof t=="number"&&(t=numberInputToObject(t)),this.originalInput=t;var i=inputToRGB(t);this.originalInput=t,this.r=i.r,this.g=i.g,this.b=i.b,this.a=i.a,this.roundA=Math.round(100*this.a)/100,this.format=(r=n.format)!==null&&r!==void 0?r:i.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=i.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},e.prototype.getLuminance=function(){var t=this.toRgb(),n,r,i,g=t.r/255,$=t.g/255,y=t.b/255;return g<=.03928?n=g/12.92:n=Math.pow((g+.055)/1.055,2.4),$<=.03928?r=$/12.92:r=Math.pow(($+.055)/1.055,2.4),y<=.03928?i=y/12.92:i=Math.pow((y+.055)/1.055,2.4),.2126*n+.7152*r+.0722*i},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(t){return this.a=boundAlpha(t),this.roundA=Math.round(100*this.a)/100,this},e.prototype.toHsv=function(){var t=rgbToHsv(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},e.prototype.toHsvString=function(){var t=rgbToHsv(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),i=Math.round(t.v*100);return this.a===1?"hsv(".concat(n,", ").concat(r,"%, ").concat(i,"%)"):"hsva(".concat(n,", ").concat(r,"%, ").concat(i,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var t=rgbToHsl(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},e.prototype.toHslString=function(){var t=rgbToHsl(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),i=Math.round(t.l*100);return this.a===1?"hsl(".concat(n,", ").concat(r,"%, ").concat(i,"%)"):"hsla(".concat(n,", ").concat(r,"%, ").concat(i,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(t){return t===void 0&&(t=!1),rgbToHex$1(this.r,this.g,this.b,t)},e.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},e.prototype.toHex8=function(t){return t===void 0&&(t=!1),rgbaToHex(this.r,this.g,this.b,this.a,t)},e.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var t=Math.round(this.r),n=Math.round(this.g),r=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(n,", ").concat(r,")"):"rgba(".concat(t,", ").concat(n,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var t=function(n){return"".concat(Math.round(bound01$1(n,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var t=function(n){return Math.round(bound01$1(n,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+rgbToHex$1(this.r,this.g,this.b,!1),n=0,r=Object.entries(names);n=0,g=!n&&i&&(t.startsWith("hex")||t==="name");return g?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(r=this.toRgbString()),t==="prgb"&&(r=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(r=this.toHexString()),t==="hex3"&&(r=this.toHexString(!0)),t==="hex4"&&(r=this.toHex8String(!0)),t==="hex8"&&(r=this.toHex8String()),t==="name"&&(r=this.toName()),t==="hsl"&&(r=this.toHslString()),t==="hsv"&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=clamp01(n.l),new e(n)},e.prototype.brighten=function(t){t===void 0&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(255*-(t/100)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(255*-(t/100)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(255*-(t/100)))),new e(n)},e.prototype.darken=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=clamp01(n.l),new e(n)},e.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},e.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},e.prototype.desaturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=clamp01(n.s),new e(n)},e.prototype.saturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=clamp01(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){n===void 0&&(n=50);var r=this.toRgb(),i=new e(t).toRgb(),g=n/100,$={r:(i.r-r.r)*g+r.r,g:(i.g-r.g)*g+r.g,b:(i.b-r.b)*g+r.b,a:(i.a-r.a)*g+r.a};return new e($)},e.prototype.analogous=function(t,n){t===void 0&&(t=6),n===void 0&&(n=30);var r=this.toHsl(),i=360/n,g=[this];for(r.h=(r.h-(i*t>>1)+720)%360;--t;)r.h=(r.h+i)%360,g.push(new e(r));return g},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var n=this.toHsv(),r=n.h,i=n.s,g=n.v,$=[],y=1/t;t--;)$.push(new e({h:r,s:i,v:g})),g=(g+y)%1;return $},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb();return new e({r:r.r+(n.r-r.r)*n.a,g:r.g+(n.g-r.g)*n.a,b:r.b+(n.b-r.b)*n.a})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,i=[this],g=360/t,$=1;${let r={};const i=e.color;if(i){const g=new TinyColor(i),$=e.dark?g.tint(20).toString():darken(g,20);if(e.plain)r=n.cssVarBlock({"bg-color":e.dark?darken(g,90):g.tint(90).toString(),"text-color":i,"border-color":e.dark?darken(g,50):g.tint(50).toString(),"hover-text-color":`var(${n.cssVarName("color-white")})`,"hover-bg-color":i,"hover-border-color":i,"active-bg-color":$,"active-text-color":`var(${n.cssVarName("color-white")})`,"active-border-color":$}),t.value&&(r[n.cssVarBlockName("disabled-bg-color")]=e.dark?darken(g,90):g.tint(90).toString(),r[n.cssVarBlockName("disabled-text-color")]=e.dark?darken(g,50):g.tint(50).toString(),r[n.cssVarBlockName("disabled-border-color")]=e.dark?darken(g,80):g.tint(80).toString());else{const y=e.dark?darken(g,30):g.tint(30).toString(),k=g.isDark()?`var(${n.cssVarName("color-white")})`:`var(${n.cssVarName("color-black")})`;if(r=n.cssVarBlock({"bg-color":i,"text-color":k,"border-color":i,"hover-bg-color":y,"hover-text-color":k,"hover-border-color":y,"active-bg-color":$,"active-border-color":$}),t.value){const j=e.dark?darken(g,50):g.tint(50).toString();r[n.cssVarBlockName("disabled-bg-color")]=j,r[n.cssVarBlockName("disabled-text-color")]=e.dark?"rgba(255, 255, 255, 0.5)":`var(${n.cssVarName("color-white")})`,r[n.cssVarBlockName("disabled-border-color")]=j}}}return r})}const _hoisted_1$11=["aria-disabled","disabled","autofocus","type"],__default__$1h=defineComponent({name:"ElButton"}),_sfc_main$22=defineComponent({...__default__$1h,props:buttonProps,emits:buttonEmits,setup(e,{expose:t,emit:n}){const r=e,i=useButtonCustomStyle(r),g=useNamespace("button"),{_ref:$,_size:y,_type:k,_disabled:j,shouldAddSpace:L,handleClick:V}=useButton(r,n);return t({ref:$,size:y,type:k,disabled:j,shouldAddSpace:L}),(z,oe)=>(openBlock(),createElementBlock("button",{ref_key:"_ref",ref:$,class:normalizeClass([unref(g).b(),unref(g).m(unref(k)),unref(g).m(unref(y)),unref(g).is("disabled",unref(j)),unref(g).is("loading",z.loading),unref(g).is("plain",z.plain),unref(g).is("round",z.round),unref(g).is("circle",z.circle),unref(g).is("text",z.text),unref(g).is("link",z.link),unref(g).is("has-bg",z.bg)]),"aria-disabled":unref(j)||z.loading,disabled:unref(j)||z.loading,autofocus:z.autofocus,type:z.nativeType,style:normalizeStyle(unref(i)),onClick:oe[0]||(oe[0]=(...re)=>unref(V)&&unref(V)(...re))},[z.loading?(openBlock(),createElementBlock(Fragment,{key:0},[z.$slots.loading?renderSlot(z.$slots,"loading",{key:0}):(openBlock(),createBlock(unref(ElIcon),{key:1,class:normalizeClass(unref(g).is("loading"))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(z.loadingIcon)))]),_:1},8,["class"]))],64)):z.icon||z.$slots.icon?(openBlock(),createBlock(unref(ElIcon),{key:1},{default:withCtx(()=>[z.icon?(openBlock(),createBlock(resolveDynamicComponent(z.icon),{key:0})):renderSlot(z.$slots,"icon",{key:1})]),_:3})):createCommentVNode("v-if",!0),z.$slots.default?(openBlock(),createElementBlock("span",{key:2,class:normalizeClass({[unref(g).em("text","expand")]:unref(L)})},[renderSlot(z.$slots,"default")],2)):createCommentVNode("v-if",!0)],14,_hoisted_1$11))}});var Button=_export_sfc$1(_sfc_main$22,[["__file","/home/runner/work/element-plus/element-plus/packages/components/button/src/button.vue"]]);const buttonGroupProps={size:buttonProps.size,type:buttonProps.type},__default__$1g=defineComponent({name:"ElButtonGroup"}),_sfc_main$21=defineComponent({...__default__$1g,props:buttonGroupProps,setup(e){const t=e;provide(buttonGroupContextKey,reactive({size:toRef(t,"size"),type:toRef(t,"type")}));const n=useNamespace("button");return(r,i)=>(openBlock(),createElementBlock("div",{class:normalizeClass(`${unref(n).b("group")}`)},[renderSlot(r.$slots,"default")],2))}});var ButtonGroup=_export_sfc$1(_sfc_main$21,[["__file","/home/runner/work/element-plus/element-plus/packages/components/button/src/button-group.vue"]]);const ElButton=withInstall(Button,{ButtonGroup}),ElButtonGroup$1=withNoopInstall(ButtonGroup);var dayjs_min={exports:{}};(function(e,t){(function(n,r){e.exports=r()})(commonjsGlobal$1,function(){var n=1e3,r=6e4,i=36e5,g="millisecond",$="second",y="minute",k="hour",j="day",L="week",V="month",z="quarter",oe="year",re="date",ie="Invalid Date",ae=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,le=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,de={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(Ue){var kt=["th","st","nd","rd"],At=Ue%100;return"["+Ue+(kt[(At-20)%10]||kt[At]||kt[0])+"]"}},pe=function(Ue,kt,At){var Pt=String(Ue);return!Pt||Pt.length>=kt?Ue:""+Array(kt+1-Pt.length).join(At)+Ue},he={s:pe,z:function(Ue){var kt=-Ue.utcOffset(),At=Math.abs(kt),Pt=Math.floor(At/60),jt=At%60;return(kt<=0?"+":"-")+pe(Pt,2,"0")+":"+pe(jt,2,"0")},m:function Ue(kt,At){if(kt.date()1)return Ue(hn[0])}else{var Dt=kt.name;_e[Dt]=kt,jt=Dt}return!Pt&&jt&&(ue=jt),jt||!Pt&&ue},Oe=function(Ue,kt){if(Ie(Ue))return Ue.clone();var At=typeof kt=="object"?kt:{};return At.date=Ue,At.args=arguments,new qe(At)},$e=he;$e.l=Ce,$e.i=Ie,$e.w=function(Ue,kt){return Oe(Ue,{locale:kt.$L,utc:kt.$u,x:kt.$x,$offset:kt.$offset})};var qe=function(){function Ue(At){this.$L=Ce(At.locale,null,!0),this.parse(At)}var kt=Ue.prototype;return kt.parse=function(At){this.$d=function(Pt){var jt=Pt.date,bn=Pt.utc;if(jt===null)return new Date(NaN);if($e.u(jt))return new Date;if(jt instanceof Date)return new Date(jt);if(typeof jt=="string"&&!/Z$/i.test(jt)){var hn=jt.match(ae);if(hn){var Dt=hn[2]-1||0,wn=(hn[7]||"0").substring(0,3);return bn?new Date(Date.UTC(hn[1],Dt,hn[3]||1,hn[4]||0,hn[5]||0,hn[6]||0,wn)):new Date(hn[1],Dt,hn[3]||1,hn[4]||0,hn[5]||0,hn[6]||0,wn)}}return new Date(jt)}(At),this.$x=At.x||{},this.init()},kt.init=function(){var At=this.$d;this.$y=At.getFullYear(),this.$M=At.getMonth(),this.$D=At.getDate(),this.$W=At.getDay(),this.$H=At.getHours(),this.$m=At.getMinutes(),this.$s=At.getSeconds(),this.$ms=At.getMilliseconds()},kt.$utils=function(){return $e},kt.isValid=function(){return this.$d.toString()!==ie},kt.isSame=function(At,Pt){var jt=Oe(At);return this.startOf(Pt)<=jt&&jt<=this.endOf(Pt)},kt.isAfter=function(At,Pt){return Oe(At)68?1900:2e3)},j=function(ie){return function(ae){this[ie]=+ae}},L=[/[+-]\d\d:?(\d\d)?|Z/,function(ie){(this.zone||(this.zone={})).offset=function(ae){if(!ae||ae==="Z")return 0;var le=ae.match(/([+-]|\d\d)/g),de=60*le[1]+(+le[2]||0);return de===0?0:le[0]==="+"?-de:de}(ie)}],V=function(ie){var ae=y[ie];return ae&&(ae.indexOf?ae:ae.s.concat(ae.f))},z=function(ie,ae){var le,de=y.meridiem;if(de){for(var pe=1;pe<=24;pe+=1)if(ie.indexOf(de(pe,0,ae))>-1){le=pe>12;break}}else le=ie===(ae?"pm":"PM");return le},oe={A:[$,function(ie){this.afternoon=z(ie,!1)}],a:[$,function(ie){this.afternoon=z(ie,!0)}],S:[/\d/,function(ie){this.milliseconds=100*+ie}],SS:[i,function(ie){this.milliseconds=10*+ie}],SSS:[/\d{3}/,function(ie){this.milliseconds=+ie}],s:[g,j("seconds")],ss:[g,j("seconds")],m:[g,j("minutes")],mm:[g,j("minutes")],H:[g,j("hours")],h:[g,j("hours")],HH:[g,j("hours")],hh:[g,j("hours")],D:[g,j("day")],DD:[i,j("day")],Do:[$,function(ie){var ae=y.ordinal,le=ie.match(/\d+/);if(this.day=le[0],ae)for(var de=1;de<=31;de+=1)ae(de).replace(/\[|\]/g,"")===ie&&(this.day=de)}],M:[g,j("month")],MM:[i,j("month")],MMM:[$,function(ie){var ae=V("months"),le=(V("monthsShort")||ae.map(function(de){return de.slice(0,3)})).indexOf(ie)+1;if(le<1)throw new Error;this.month=le%12||le}],MMMM:[$,function(ie){var ae=V("months").indexOf(ie)+1;if(ae<1)throw new Error;this.month=ae%12||ae}],Y:[/[+-]?\d+/,j("year")],YY:[i,function(ie){this.year=k(ie)}],YYYY:[/\d{4}/,j("year")],Z:L,ZZ:L};function re(ie){var ae,le;ae=ie,le=y&&y.formats;for(var de=(ie=ae.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(Oe,$e,qe){var ze=qe&&qe.toUpperCase();return $e||le[qe]||n[qe]||le[ze].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(Ue,kt,At){return kt||At.slice(1)})})).match(r),pe=de.length,he=0;he-1)return new Date((jt==="X"?1e3:1)*Pt);var hn=re(jt)(Pt),Dt=hn.year,wn=hn.month,_n=hn.day,vn=hn.hours,Cn=hn.minutes,xn=hn.seconds,En=hn.milliseconds,Sn=hn.zone,Bn=new Date,An=_n||(Dt||wn?1:Bn.getDate()),Pn=Dt||Bn.getFullYear(),Mn=0;Dt&&!wn||(Mn=wn>0?wn-1:Bn.getMonth());var Fn=vn||0,jn=Cn||0,zn=xn||0,Jn=En||0;return Sn?new Date(Date.UTC(Pn,Mn,An,Fn,jn,zn,Jn+60*Sn.offset*1e3)):bn?new Date(Date.UTC(Pn,Mn,An,Fn,jn,zn,Jn)):new Date(Pn,Mn,An,Fn,jn,zn,Jn)}catch{return new Date("")}}(ue,Ce,_e),this.init(),ze&&ze!==!0&&(this.$L=this.locale(ze).$L),qe&&ue!=this.format(Ce)&&(this.$d=new Date("")),y={}}else if(Ce instanceof Array)for(var Ue=Ce.length,kt=1;kt<=Ue;kt+=1){Ie[1]=Ce[kt-1];var At=le.apply(this,Ie);if(At.isValid()){this.$d=At.$d,this.$L=At.$L,this.init();break}kt===Ue&&(this.$d=new Date(""))}else pe.call(this,he)}}})})(customParseFormat$1);var customParseFormat=customParseFormat$1.exports;const timeUnits$1=["hours","minutes","seconds"],DEFAULT_FORMATS_TIME="HH:mm:ss",DEFAULT_FORMATS_DATE="YYYY-MM-DD",DEFAULT_FORMATS_DATEPICKER={date:DEFAULT_FORMATS_DATE,dates:DEFAULT_FORMATS_DATE,week:"gggg[w]ww",year:"YYYY",month:"YYYY-MM",datetime:`${DEFAULT_FORMATS_DATE} ${DEFAULT_FORMATS_TIME}`,monthrange:"YYYY-MM",daterange:DEFAULT_FORMATS_DATE,datetimerange:`${DEFAULT_FORMATS_DATE} ${DEFAULT_FORMATS_TIME}`},buildTimeList=(e,t)=>[e>0?e-1:void 0,e,eArray.from(Array.from({length:e}).keys()),extractDateFormat=e=>e.replace(/\W?m{1,2}|\W?ZZ/g,"").replace(/\W?h{1,2}|\W?s{1,3}|\W?a/gi,"").trim(),extractTimeFormat=e=>e.replace(/\W?D{1,2}|\W?Do|\W?d{1,4}|\W?M{1,4}|\W?Y{2,4}/g,"").trim(),dateEquals=function(e,t){const n=isDate$2(e),r=isDate$2(t);return n&&r?e.getTime()===t.getTime():!n&&!r?e===t:!1},valueEquals=function(e,t){const n=isArray$4(e),r=isArray$4(t);return n&&r?e.length!==t.length?!1:e.every((i,g)=>dateEquals(i,t[g])):!n&&!r?dateEquals(e,t):!1},parseDate=function(e,t,n){const r=isEmpty(t)||t==="x"?dayjs(e).locale(n):dayjs(e,t).locale(n);return r.isValid()?r:void 0},formatter=function(e,t,n){return isEmpty(t)?e:t==="x"?+e:dayjs(e).locale(n).format(t)},makeList=(e,t)=>{var n;const r=[],i=t==null?void 0:t();for(let g=0;g({})},modelValue:{type:definePropType([Date,Array,String,Number]),default:""},rangeSeparator:{type:String,default:"-"},startPlaceholder:String,endPlaceholder:String,defaultValue:{type:definePropType([Date,Array])},defaultTime:{type:definePropType([Date,Array])},isRange:{type:Boolean,default:!1},...disabledTimeListsProps,disabledDate:{type:Function},cellClassName:{type:Function},shortcuts:{type:Array,default:()=>[]},arrowControl:{type:Boolean,default:!1},label:{type:String,default:void 0},tabindex:{type:definePropType([String,Number]),default:0},validateEvent:{type:Boolean,default:!0},unlinkPanels:Boolean}),_hoisted_1$10=["id","name","placeholder","value","disabled","readonly"],_hoisted_2$G=["id","name","placeholder","value","disabled","readonly"],__default__$1f=defineComponent({name:"Picker"}),_sfc_main$20=defineComponent({...__default__$1f,props:timePickerDefaultProps,emits:["update:modelValue","change","focus","blur","calendar-change","panel-change","visible-change","keydown"],setup(e,{expose:t,emit:n}){const r=e,{lang:i}=useLocale(),g=useNamespace("date"),$=useNamespace("input"),y=useNamespace("range"),{form:k,formItem:j}=useFormItem(),L=inject("ElPopperOptions",{}),V=ref(),z=ref(),oe=ref(!1),re=ref(!1),ie=ref(null);let ae=!1,le=!1;watch(oe,Nn=>{Nn?nextTick(()=>{Nn&&(ie.value=r.modelValue)}):(eo.value=null,nextTick(()=>{de(r.modelValue)}))});const de=(Nn,In)=>{(In||!valueEquals(Nn,ie.value))&&(n("change",Nn),r.validateEvent&&(j==null||j.validate("change").catch(Gn=>void 0)))},pe=Nn=>{if(!valueEquals(r.modelValue,Nn)){let In;isArray$4(Nn)?In=Nn.map(Gn=>formatter(Gn,r.valueFormat,i.value)):Nn&&(In=formatter(Nn,r.valueFormat,i.value)),n("update:modelValue",Nn&&In,i.value)}},he=Nn=>{n("keydown",Nn)},ue=computed(()=>{if(z.value){const Nn=jn.value?z.value:z.value.$el;return Array.from(Nn.querySelectorAll("input"))}return[]}),_e=(Nn,In,Gn)=>{const Xn=ue.value;!Xn.length||(!Gn||Gn==="min"?(Xn[0].setSelectionRange(Nn,In),Xn[0].focus()):Gn==="max"&&(Xn[1].setSelectionRange(Nn,In),Xn[1].focus()))},Ie=()=>{At(!0,!0),nextTick(()=>{le=!1})},Ce=(Nn="",In=!1)=>{In||(le=!0),oe.value=In;let Gn;isArray$4(Nn)?Gn=Nn.map(Xn=>Xn.toDate()):Gn=Nn&&Nn.toDate(),eo.value=null,pe(Gn)},Oe=()=>{re.value=!0},$e=()=>{n("visible-change",!0)},qe=Nn=>{(Nn==null?void 0:Nn.key)===EVENT_CODE.esc&&At(!0,!0)},ze=()=>{re.value=!1,oe.value=!1,le=!1,n("visible-change",!1)},Ue=()=>{oe.value=!0},kt=()=>{oe.value=!1},At=(Nn=!0,In=!1)=>{le=In;const[Gn,Xn]=unref(ue);let ao=Gn;!Nn&&jn.value&&(ao=Xn),ao&&ao.focus()},Pt=Nn=>{r.readonly||hn.value||oe.value||le||(oe.value=!0,n("focus",Nn))};let jt;const bn=Nn=>{const In=async()=>{setTimeout(()=>{var Gn;jt===In&&(!(((Gn=V.value)==null?void 0:Gn.isFocusInsideContent())&&!ae)&&ue.value.filter(Xn=>Xn.contains(document.activeElement)).length===0&&(Un(),oe.value=!1,n("blur",Nn),r.validateEvent&&(j==null||j.validate("blur").catch(Xn=>void 0))),ae=!1)},0)};jt=In,In()},hn=computed(()=>r.disabled||(k==null?void 0:k.disabled)),Dt=computed(()=>{let Nn;if(Bn.value?ho.value.getDefaultValue&&(Nn=ho.value.getDefaultValue()):isArray$4(r.modelValue)?Nn=r.modelValue.map(In=>parseDate(In,r.valueFormat,i.value)):Nn=parseDate(r.modelValue,r.valueFormat,i.value),ho.value.getRangeAvailableTime){const In=ho.value.getRangeAvailableTime(Nn);isEqual$1(In,Nn)||(Nn=In,pe(isArray$4(Nn)?Nn.map(Gn=>Gn.toDate()):Nn.toDate()))}return isArray$4(Nn)&&Nn.some(In=>!In)&&(Nn=[]),Nn}),wn=computed(()=>{if(!ho.value.panelReady)return"";const Nn=to(Dt.value);return isArray$4(eo.value)?[eo.value[0]||Nn&&Nn[0]||"",eo.value[1]||Nn&&Nn[1]||""]:eo.value!==null?eo.value:!vn.value&&Bn.value||!oe.value&&Bn.value?"":Nn?Cn.value?Nn.join(", "):Nn:""}),_n=computed(()=>r.type.includes("time")),vn=computed(()=>r.type.startsWith("time")),Cn=computed(()=>r.type==="dates"),xn=computed(()=>r.prefixIcon||(_n.value?clock_default:calendar_default)),En=ref(!1),Sn=Nn=>{r.readonly||hn.value||En.value&&(Nn.stopPropagation(),Ie(),pe(null),de(null,!0),En.value=!1,oe.value=!1,ho.value.handleClear&&ho.value.handleClear())},Bn=computed(()=>{const{modelValue:Nn}=r;return!Nn||isArray$4(Nn)&&!Nn.filter(Boolean).length}),An=async Nn=>{var In;r.readonly||hn.value||(((In=Nn.target)==null?void 0:In.tagName)!=="INPUT"||ue.value.includes(document.activeElement))&&(oe.value=!0)},Pn=()=>{r.readonly||hn.value||!Bn.value&&r.clearable&&(En.value=!0)},Mn=()=>{En.value=!1},Fn=Nn=>{var In;r.readonly||hn.value||(((In=Nn.touches[0].target)==null?void 0:In.tagName)!=="INPUT"||ue.value.includes(document.activeElement))&&(oe.value=!0)},jn=computed(()=>r.type.includes("range")),zn=useSize(),Jn=computed(()=>{var Nn,In;return(In=(Nn=unref(V))==null?void 0:Nn.popperRef)==null?void 0:In.contentRef}),io=computed(()=>{var Nn;return unref(jn)?unref(z):(Nn=unref(z))==null?void 0:Nn.$el});onClickOutside(io,Nn=>{const In=unref(Jn),Gn=unref(io);In&&(Nn.target===In||Nn.composedPath().includes(In))||Nn.target===Gn||Nn.composedPath().includes(Gn)||(oe.value=!1)});const eo=ref(null),Un=()=>{if(eo.value){const Nn=Yn(wn.value);Nn&&Hn(Nn)&&(pe(isArray$4(Nn)?Nn.map(In=>In.toDate()):Nn.toDate()),eo.value=null)}eo.value===""&&(pe(null),de(null),eo.value=null)},Yn=Nn=>Nn?ho.value.parseUserInput(Nn):null,to=Nn=>Nn?ho.value.formatToString(Nn):null,Hn=Nn=>ho.value.isValidValue(Nn),On=async Nn=>{if(r.readonly||hn.value)return;const{code:In}=Nn;if(he(Nn),In===EVENT_CODE.esc){oe.value===!0&&(oe.value=!1,Nn.preventDefault(),Nn.stopPropagation());return}if(In===EVENT_CODE.down&&(ho.value.handleFocusPicker&&(Nn.preventDefault(),Nn.stopPropagation()),oe.value===!1&&(oe.value=!0,await nextTick()),ho.value.handleFocusPicker)){ho.value.handleFocusPicker();return}if(In===EVENT_CODE.tab){ae=!0;return}if(In===EVENT_CODE.enter||In===EVENT_CODE.numpadEnter){(eo.value===null||eo.value===""||Hn(Yn(wn.value)))&&(Un(),oe.value=!1),Nn.stopPropagation();return}if(eo.value){Nn.stopPropagation();return}ho.value.handleKeydownInput&&ho.value.handleKeydownInput(Nn)},Wn=Nn=>{eo.value=Nn,oe.value||(oe.value=!0)},oo=Nn=>{const In=Nn.target;eo.value?eo.value=[In.value,eo.value[1]]:eo.value=[In.value,null]},ro=Nn=>{const In=Nn.target;eo.value?eo.value=[eo.value[0],In.value]:eo.value=[null,In.value]},Qn=()=>{var Nn;const In=eo.value,Gn=Yn(In&&In[0]),Xn=unref(Dt);if(Gn&&Gn.isValid()){eo.value=[to(Gn),((Nn=wn.value)==null?void 0:Nn[1])||null];const ao=[Gn,Xn&&(Xn[1]||null)];Hn(ao)&&(pe(ao),eo.value=null)}},lo=()=>{var Nn;const In=unref(eo),Gn=Yn(In&&In[1]),Xn=unref(Dt);if(Gn&&Gn.isValid()){eo.value=[((Nn=unref(wn))==null?void 0:Nn[0])||null,to(Gn)];const ao=[Xn&&Xn[0],Gn];Hn(ao)&&(pe(ao),eo.value=null)}},ho=ref({}),Tn=Nn=>{ho.value[Nn[0]]=Nn[1],ho.value.panelReady=!0},Ln=Nn=>{n("calendar-change",Nn)},Rn=(Nn,In,Gn)=>{n("panel-change",Nn,In,Gn)};return provide("EP_PICKER_BASE",{props:r}),t({focus:At,handleFocusInput:Pt,handleBlurInput:bn,handleOpen:Ue,handleClose:kt,onPick:Ce}),(Nn,In)=>(openBlock(),createBlock(unref(ElTooltip),mergeProps({ref_key:"refPopper",ref:V,visible:oe.value,effect:"light",pure:"",trigger:"click"},Nn.$attrs,{role:"dialog",teleported:"",transition:`${unref(g).namespace.value}-zoom-in-top`,"popper-class":[`${unref(g).namespace.value}-picker__popper`,Nn.popperClass],"popper-options":unref(L),"fallback-placements":["bottom","top","right","left"],"gpu-acceleration":!1,"stop-popper-mouse-event":!1,"hide-after":0,persistent:"",onBeforeShow:Oe,onShow:$e,onHide:ze}),{default:withCtx(()=>[unref(jn)?(openBlock(),createElementBlock("div",{key:1,ref_key:"inputRef",ref:z,class:normalizeClass([unref(g).b("editor"),unref(g).bm("editor",Nn.type),unref($).e("wrapper"),unref(g).is("disabled",unref(hn)),unref(g).is("active",oe.value),unref(y).b("editor"),unref(zn)?unref(y).bm("editor",unref(zn)):"",Nn.$attrs.class]),style:normalizeStyle(Nn.$attrs.style),onClick:Pt,onMouseenter:Pn,onMouseleave:Mn,onTouchstart:Fn,onKeydown:On},[unref(xn)?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass([unref($).e("icon"),unref(y).e("icon")]),onMousedown:withModifiers(An,["prevent"]),onTouchstart:Fn},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(xn))))]),_:1},8,["class","onMousedown"])):createCommentVNode("v-if",!0),createBaseVNode("input",{id:Nn.id&&Nn.id[0],autocomplete:"off",name:Nn.name&&Nn.name[0],placeholder:Nn.startPlaceholder,value:unref(wn)&&unref(wn)[0],disabled:unref(hn),readonly:!Nn.editable||Nn.readonly,class:normalizeClass(unref(y).b("input")),onMousedown:An,onInput:oo,onChange:Qn,onFocus:Pt,onBlur:bn},null,42,_hoisted_1$10),renderSlot(Nn.$slots,"range-separator",{},()=>[createBaseVNode("span",{class:normalizeClass(unref(y).b("separator"))},toDisplayString$1(Nn.rangeSeparator),3)]),createBaseVNode("input",{id:Nn.id&&Nn.id[1],autocomplete:"off",name:Nn.name&&Nn.name[1],placeholder:Nn.endPlaceholder,value:unref(wn)&&unref(wn)[1],disabled:unref(hn),readonly:!Nn.editable||Nn.readonly,class:normalizeClass(unref(y).b("input")),onMousedown:An,onFocus:Pt,onBlur:bn,onInput:ro,onChange:lo},null,42,_hoisted_2$G),Nn.clearIcon?(openBlock(),createBlock(unref(ElIcon),{key:1,class:normalizeClass([unref($).e("icon"),unref(y).e("close-icon"),{[unref(y).e("close-icon--hidden")]:!En.value}]),onClick:Sn},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(Nn.clearIcon)))]),_:1},8,["class"])):createCommentVNode("v-if",!0)],38)):(openBlock(),createBlock(unref(ElInput),{key:0,id:Nn.id,ref_key:"inputRef",ref:z,"container-role":"combobox","model-value":unref(wn),name:Nn.name,size:unref(zn),disabled:unref(hn),placeholder:Nn.placeholder,class:normalizeClass([unref(g).b("editor"),unref(g).bm("editor",Nn.type),Nn.$attrs.class]),style:normalizeStyle(Nn.$attrs.style),readonly:!Nn.editable||Nn.readonly||unref(Cn)||Nn.type==="week",label:Nn.label,tabindex:Nn.tabindex,"validate-event":!1,onInput:Wn,onFocus:Pt,onBlur:bn,onKeydown:On,onChange:Un,onMousedown:An,onMouseenter:Pn,onMouseleave:Mn,onTouchstart:Fn,onClick:In[0]||(In[0]=withModifiers(()=>{},["stop"]))},{prefix:withCtx(()=>[unref(xn)?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref($).e("icon")),onMousedown:withModifiers(An,["prevent"]),onTouchstart:Fn},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(xn))))]),_:1},8,["class","onMousedown"])):createCommentVNode("v-if",!0)]),suffix:withCtx(()=>[En.value&&Nn.clearIcon?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(`${unref($).e("icon")} clear-icon`),onClick:withModifiers(Sn,["stop"])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(Nn.clearIcon)))]),_:1},8,["class","onClick"])):createCommentVNode("v-if",!0)]),_:1},8,["id","model-value","name","size","disabled","placeholder","class","style","readonly","label","tabindex","onKeydown"]))]),content:withCtx(()=>[renderSlot(Nn.$slots,"default",{visible:oe.value,actualVisible:re.value,parsedValue:unref(Dt),format:Nn.format,unlinkPanels:Nn.unlinkPanels,type:Nn.type,defaultValue:Nn.defaultValue,onPick:Ce,onSelectRange:_e,onSetPickerOption:Tn,onCalendarChange:Ln,onPanelChange:Rn,onKeydown:qe,onMousedown:In[1]||(In[1]=withModifiers(()=>{},["stop"]))})]),_:3},16,["visible","transition","popper-class","popper-options"]))}});var CommonPicker=_export_sfc$1(_sfc_main$20,[["__file","/home/runner/work/element-plus/element-plus/packages/components/time-picker/src/common/picker.vue"]]);const panelTimePickerProps=buildProps({...timePanelSharedProps,datetimeRole:String,parsedValue:{type:definePropType(Object)}}),useTimePanel=({getAvailableHours:e,getAvailableMinutes:t,getAvailableSeconds:n})=>{const r=($,y,k,j)=>{const L={hour:e,minute:t,second:n};let V=$;return["hour","minute","second"].forEach(z=>{if(L[z]){let oe;const re=L[z];switch(z){case"minute":{oe=re(V.hour(),y,j);break}case"second":{oe=re(V.hour(),V.minute(),y,j);break}default:{oe=re(y,j);break}}if((oe==null?void 0:oe.length)&&!oe.includes(V[z]())){const ie=k?0:oe.length-1;V=V[z](oe[ie])}}}),V},i={};return{timePickerOptions:i,getAvailableTime:r,onSetOption:([$,y])=>{i[$]=y}}},makeAvailableArr=e=>{const t=(r,i)=>r||i,n=r=>r!==!0;return e.map(t).filter(n)},getTimeLists=(e,t,n)=>({getHoursList:($,y)=>makeList(24,e&&(()=>e==null?void 0:e($,y))),getMinutesList:($,y,k)=>makeList(60,t&&(()=>t==null?void 0:t($,y,k))),getSecondsList:($,y,k,j)=>makeList(60,n&&(()=>n==null?void 0:n($,y,k,j)))}),buildAvailableTimeSlotGetter=(e,t,n)=>{const{getHoursList:r,getMinutesList:i,getSecondsList:g}=getTimeLists(e,t,n);return{getAvailableHours:(j,L)=>makeAvailableArr(r(j,L)),getAvailableMinutes:(j,L,V)=>makeAvailableArr(i(j,L,V)),getAvailableSeconds:(j,L,V,z)=>makeAvailableArr(g(j,L,V,z))}},useOldValue=e=>{const t=ref(e.parsedValue);return watch(()=>e.visible,n=>{n||(t.value=e.parsedValue)}),t},nodeList=new Map;let startClick;isClient&&(document.addEventListener("mousedown",e=>startClick=e),document.addEventListener("mouseup",e=>{for(const t of nodeList.values())for(const{documentHandler:n}of t)n(e,startClick)}));function createDocumentHandler(e,t){let n=[];return Array.isArray(t.arg)?n=t.arg:isElement$1(t.arg)&&n.push(t.arg),function(r,i){const g=t.instance.popperRef,$=r.target,y=i==null?void 0:i.target,k=!t||!t.instance,j=!$||!y,L=e.contains($)||e.contains(y),V=e===$,z=n.length&&n.some(re=>re==null?void 0:re.contains($))||n.length&&n.includes(y),oe=g&&(g.contains($)||g.contains(y));k||j||L||V||z||oe||t.value(r,i)}}const ClickOutside={beforeMount(e,t){nodeList.has(e)||nodeList.set(e,[]),nodeList.get(e).push({documentHandler:createDocumentHandler(e,t),bindingFn:t.value})},updated(e,t){nodeList.has(e)||nodeList.set(e,[]);const n=nodeList.get(e),r=n.findIndex(g=>g.bindingFn===t.oldValue),i={documentHandler:createDocumentHandler(e,t),bindingFn:t.value};r>=0?n.splice(r,1,i):n.push(i)},unmounted(e){nodeList.delete(e)}},REPEAT_INTERVAL=100,REPEAT_DELAY=600,vRepeatClick={beforeMount(e,t){const n=t.value,{interval:r=REPEAT_INTERVAL,delay:i=REPEAT_DELAY}=isFunction$4(n)?{}:n;let g,$;const y=()=>isFunction$4(n)?n():n.handler(),k=()=>{$&&(clearTimeout($),$=void 0),g&&(clearInterval(g),g=void 0)};e.addEventListener("mousedown",j=>{j.button===0&&(k(),y(),document.addEventListener("mouseup",()=>k(),{once:!0}),$=setTimeout(()=>{g=setInterval(()=>{y()},r)},i))})}},FOCUSABLE_CHILDREN="_trap-focus-children",FOCUS_STACK=[],FOCUS_HANDLER=e=>{if(FOCUS_STACK.length===0)return;const t=FOCUS_STACK[FOCUS_STACK.length-1][FOCUSABLE_CHILDREN];if(t.length>0&&e.code===EVENT_CODE.tab){if(t.length===1){e.preventDefault(),document.activeElement!==t[0]&&t[0].focus();return}const n=e.shiftKey,r=e.target===t[0],i=e.target===t[t.length-1];r&&n&&(e.preventDefault(),t[t.length-1].focus()),i&&!n&&(e.preventDefault(),t[0].focus())}},TrapFocus={beforeMount(e){e[FOCUSABLE_CHILDREN]=obtainAllFocusableElements$1(e),FOCUS_STACK.push(e),FOCUS_STACK.length<=1&&document.addEventListener("keydown",FOCUS_HANDLER)},updated(e){nextTick(()=>{e[FOCUSABLE_CHILDREN]=obtainAllFocusableElements$1(e)})},unmounted(){FOCUS_STACK.shift(),FOCUS_STACK.length===0&&document.removeEventListener("keydown",FOCUS_HANDLER)}};var v=!1,o,f,s,u,d,N,l,p,m,w,D,x,E,M,F;function a(){if(!v){v=!0;var e=navigator.userAgent,t=/(?:MSIE.(\d+\.\d+))|(?:(?:Firefox|GranParadiso|Iceweasel).(\d+\.\d+))|(?:Opera(?:.+Version.|.)(\d+\.\d+))|(?:AppleWebKit.(\d+(?:\.\d+)?))|(?:Trident\/\d+\.\d+.*rv:(\d+\.\d+))/.exec(e),n=/(Mac OS X)|(Windows)|(Linux)/.exec(e);if(x=/\b(iPhone|iP[ao]d)/.exec(e),E=/\b(iP[ao]d)/.exec(e),w=/Android/i.exec(e),M=/FBAN\/\w+;/i.exec(e),F=/Mobile/i.exec(e),D=!!/Win64/.exec(e),t){o=t[1]?parseFloat(t[1]):t[5]?parseFloat(t[5]):NaN,o&&document&&document.documentMode&&(o=document.documentMode);var r=/(?:Trident\/(\d+.\d+))/.exec(e);N=r?parseFloat(r[1])+4:o,f=t[2]?parseFloat(t[2]):NaN,s=t[3]?parseFloat(t[3]):NaN,u=t[4]?parseFloat(t[4]):NaN,u?(t=/(?:Chrome\/(\d+\.\d+))/.exec(e),d=t&&t[1]?parseFloat(t[1]):NaN):d=NaN}else o=f=s=d=u=NaN;if(n){if(n[1]){var i=/(?:Mac OS X (\d+(?:[._]\d+)?))/.exec(e);l=i?parseFloat(i[1].replace("_",".")):!0}else l=!1;p=!!n[2],m=!!n[3]}else l=p=m=!1}}var _={ie:function(){return a()||o},ieCompatibilityMode:function(){return a()||N>o},ie64:function(){return _.ie()&&D},firefox:function(){return a()||f},opera:function(){return a()||s},webkit:function(){return a()||u},safari:function(){return _.webkit()},chrome:function(){return a()||d},windows:function(){return a()||p},osx:function(){return a()||l},linux:function(){return a()||m},iphone:function(){return a()||x},mobile:function(){return a()||x||E||w||F},nativeApp:function(){return a()||M},android:function(){return a()||w},ipad:function(){return a()||E}},A=_,c=!!(typeof window<"u"&&window.document&&window.document.createElement),U={canUseDOM:c,canUseWorkers:typeof Worker<"u",canUseEventListeners:c&&!!(window.addEventListener||window.attachEvent),canUseViewport:c&&!!window.screen,isInWorker:!c},h=U,X;h.canUseDOM&&(X=document.implementation&&document.implementation.hasFeature&&document.implementation.hasFeature("","")!==!0);function S(e,t){if(!h.canUseDOM||t&&!("addEventListener"in document))return!1;var n="on"+e,r=n in document;if(!r){var i=document.createElement("div");i.setAttribute(n,"return;"),r=typeof i[n]=="function"}return!r&&X&&e==="wheel"&&(r=document.implementation.hasFeature("Events.wheel","3.0")),r}var b=S,O=10,I=40,P=800;function T(e){var t=0,n=0,r=0,i=0;return"detail"in e&&(n=e.detail),"wheelDelta"in e&&(n=-e.wheelDelta/120),"wheelDeltaY"in e&&(n=-e.wheelDeltaY/120),"wheelDeltaX"in e&&(t=-e.wheelDeltaX/120),"axis"in e&&e.axis===e.HORIZONTAL_AXIS&&(t=n,n=0),r=t*O,i=n*O,"deltaY"in e&&(i=e.deltaY),"deltaX"in e&&(r=e.deltaX),(r||i)&&e.deltaMode&&(e.deltaMode==1?(r*=I,i*=I):(r*=P,i*=P)),r&&!t&&(t=r<1?-1:1),i&&!n&&(n=i<1?-1:1),{spinX:t,spinY:n,pixelX:r,pixelY:i}}T.getEventType=function(){return A.firefox()?"DOMMouseScroll":b("wheel")?"wheel":"mousewheel"};var Y=T;/** +* Checks if an event is supported in the current execution environment. +* +* NOTE: This will not work correctly for non-generic events such as `change`, +* `reset`, `load`, `error`, and `select`. +* +* Borrows from Modernizr. +* +* @param {string} eventNameSuffix Event name, e.g. "click". +* @param {?boolean} capture Check if the capture phase is supported. +* @return {boolean} True if the event is supported. +* @internal +* @license Modernizr 3.0.0pre (Custom Build) | MIT +*/const mousewheel=function(e,t){if(e&&e.addEventListener){const n=function(r){const i=Y(r);t&&Reflect.apply(t,this,[r,i])};e.addEventListener("wheel",n,{passive:!0})}},Mousewheel={beforeMount(e,t){mousewheel(e,t.value)}},basicTimeSpinnerProps=buildProps({role:{type:String,required:!0},spinnerDate:{type:definePropType(Object),required:!0},showSeconds:{type:Boolean,default:!0},arrowControl:Boolean,amPmMode:{type:definePropType(String),default:""},...disabledTimeListsProps}),_hoisted_1$$=["onClick"],_hoisted_2$F=["onMouseenter"],_sfc_main$1$=defineComponent({__name:"basic-time-spinner",props:basicTimeSpinnerProps,emits:["change","select-range","set-option"],setup(e,{emit:t}){const n=e,r=useNamespace("time"),{getHoursList:i,getMinutesList:g,getSecondsList:$}=getTimeLists(n.disabledHours,n.disabledMinutes,n.disabledSeconds);let y=!1;const k=ref(),j=ref(),L=ref(),V=ref(),z={hours:j,minutes:L,seconds:V},oe=computed(()=>n.showSeconds?timeUnits$1:timeUnits$1.slice(0,2)),re=computed(()=>{const{spinnerDate:hn}=n,Dt=hn.hour(),wn=hn.minute(),_n=hn.second();return{hours:Dt,minutes:wn,seconds:_n}}),ie=computed(()=>{const{hours:hn,minutes:Dt}=unref(re);return{hours:i(n.role),minutes:g(hn,n.role),seconds:$(hn,Dt,n.role)}}),ae=computed(()=>{const{hours:hn,minutes:Dt,seconds:wn}=unref(re);return{hours:buildTimeList(hn,23),minutes:buildTimeList(Dt,59),seconds:buildTimeList(wn,59)}}),le=debounce$1(hn=>{y=!1,he(hn)},200),de=hn=>{if(!!!n.amPmMode)return"";const wn=n.amPmMode==="A";let _n=hn<12?" am":" pm";return wn&&(_n=_n.toUpperCase()),_n},pe=hn=>{let Dt;switch(hn){case"hours":Dt=[0,2];break;case"minutes":Dt=[3,5];break;case"seconds":Dt=[6,8];break}const[wn,_n]=Dt;t("select-range",wn,_n),k.value=hn},he=hn=>{Ie(hn,unref(re)[hn])},ue=()=>{he("hours"),he("minutes"),he("seconds")},_e=hn=>hn.querySelector(`.${r.namespace.value}-scrollbar__wrap`),Ie=(hn,Dt)=>{if(n.arrowControl)return;const wn=unref(z[hn]);wn&&wn.$el&&(_e(wn.$el).scrollTop=Math.max(0,Dt*Ce(hn)))},Ce=hn=>{const Dt=unref(z[hn]);return(Dt==null?void 0:Dt.$el.querySelector("li").offsetHeight)||0},Oe=()=>{qe(1)},$e=()=>{qe(-1)},qe=hn=>{k.value||pe("hours");const Dt=k.value,wn=unref(re)[Dt],_n=k.value==="hours"?24:60,vn=ze(Dt,wn,hn,_n);Ue(Dt,vn),Ie(Dt,vn),nextTick(()=>pe(Dt))},ze=(hn,Dt,wn,_n)=>{let vn=(Dt+wn+_n)%_n;const Cn=unref(ie)[hn];for(;Cn[vn]&&vn!==Dt;)vn=(vn+wn+_n)%_n;return vn},Ue=(hn,Dt)=>{if(unref(ie)[hn][Dt])return;const{hours:vn,minutes:Cn,seconds:xn}=unref(re);let En;switch(hn){case"hours":En=n.spinnerDate.hour(Dt).minute(Cn).second(xn);break;case"minutes":En=n.spinnerDate.hour(vn).minute(Dt).second(xn);break;case"seconds":En=n.spinnerDate.hour(vn).minute(Cn).second(Dt);break}t("change",En)},kt=(hn,{value:Dt,disabled:wn})=>{wn||(Ue(hn,Dt),pe(hn),Ie(hn,Dt))},At=hn=>{y=!0,le(hn);const Dt=Math.min(Math.round((_e(unref(z[hn]).$el).scrollTop-(Pt(hn)*.5-10)/Ce(hn)+3)/Ce(hn)),hn==="hours"?23:59);Ue(hn,Dt)},Pt=hn=>unref(z[hn]).$el.offsetHeight,jt=()=>{const hn=Dt=>{const wn=unref(z[Dt]);wn&&wn.$el&&(_e(wn.$el).onscroll=()=>{At(Dt)})};hn("hours"),hn("minutes"),hn("seconds")};onMounted(()=>{nextTick(()=>{!n.arrowControl&&jt(),ue(),n.role==="start"&&pe("hours")})});const bn=(hn,Dt)=>{z[Dt].value=hn};return t("set-option",[`${n.role}_scrollDown`,qe]),t("set-option",[`${n.role}_emitSelectRange`,pe]),watch(()=>n.spinnerDate,()=>{y||ue()}),(hn,Dt)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(r).b("spinner"),{"has-seconds":hn.showSeconds}])},[hn.arrowControl?createCommentVNode("v-if",!0):(openBlock(!0),createElementBlock(Fragment,{key:0},renderList(unref(oe),wn=>(openBlock(),createBlock(unref(ElScrollbar),{key:wn,ref_for:!0,ref:_n=>bn(_n,wn),class:normalizeClass(unref(r).be("spinner","wrapper")),"wrap-style":"max-height: inherit;","view-class":unref(r).be("spinner","list"),noresize:"",tag:"ul",onMouseenter:_n=>pe(wn),onMousemove:_n=>he(wn)},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(ie)[wn],(_n,vn)=>(openBlock(),createElementBlock("li",{key:vn,class:normalizeClass([unref(r).be("spinner","item"),unref(r).is("active",vn===unref(re)[wn]),unref(r).is("disabled",_n)]),onClick:Cn=>kt(wn,{value:vn,disabled:_n})},[wn==="hours"?(openBlock(),createElementBlock(Fragment,{key:0},[createTextVNode(toDisplayString$1(("0"+(hn.amPmMode?vn%12||12:vn)).slice(-2))+toDisplayString$1(de(vn)),1)],64)):(openBlock(),createElementBlock(Fragment,{key:1},[createTextVNode(toDisplayString$1(("0"+vn).slice(-2)),1)],64))],10,_hoisted_1$$))),128))]),_:2},1032,["class","view-class","onMouseenter","onMousemove"]))),128)),hn.arrowControl?(openBlock(!0),createElementBlock(Fragment,{key:1},renderList(unref(oe),wn=>(openBlock(),createElementBlock("div",{key:wn,class:normalizeClass([unref(r).be("spinner","wrapper"),unref(r).is("arrow")]),onMouseenter:_n=>pe(wn)},[withDirectives((openBlock(),createBlock(unref(ElIcon),{class:normalizeClass(["arrow-up",unref(r).be("spinner","arrow")])},{default:withCtx(()=>[createVNode(unref(arrow_up_default))]),_:1},8,["class"])),[[unref(vRepeatClick),$e]]),withDirectives((openBlock(),createBlock(unref(ElIcon),{class:normalizeClass(["arrow-down",unref(r).be("spinner","arrow")])},{default:withCtx(()=>[createVNode(unref(arrow_down_default))]),_:1},8,["class"])),[[unref(vRepeatClick),Oe]]),createBaseVNode("ul",{class:normalizeClass(unref(r).be("spinner","list"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(ae)[wn],(_n,vn)=>(openBlock(),createElementBlock("li",{key:vn,class:normalizeClass([unref(r).be("spinner","item"),unref(r).is("active",_n===unref(re)[wn]),unref(r).is("disabled",unref(ie)[wn][_n])])},[typeof _n=="number"?(openBlock(),createElementBlock(Fragment,{key:0},[wn==="hours"?(openBlock(),createElementBlock(Fragment,{key:0},[createTextVNode(toDisplayString$1(("0"+(hn.amPmMode?_n%12||12:_n)).slice(-2))+toDisplayString$1(de(_n)),1)],64)):(openBlock(),createElementBlock(Fragment,{key:1},[createTextVNode(toDisplayString$1(("0"+_n).slice(-2)),1)],64))],64)):createCommentVNode("v-if",!0)],2))),128))],2)],42,_hoisted_2$F))),128)):createCommentVNode("v-if",!0)],2))}});var TimeSpinner=_export_sfc$1(_sfc_main$1$,[["__file","/home/runner/work/element-plus/element-plus/packages/components/time-picker/src/time-picker-com/basic-time-spinner.vue"]]);const _sfc_main$1_=defineComponent({__name:"panel-time-pick",props:panelTimePickerProps,emits:["pick","select-range","set-picker-option"],setup(e,{emit:t}){const n=e,r=inject("EP_PICKER_BASE"),{arrowControl:i,disabledHours:g,disabledMinutes:$,disabledSeconds:y,defaultValue:k}=r.props,{getAvailableHours:j,getAvailableMinutes:L,getAvailableSeconds:V}=buildAvailableTimeSlotGetter(g,$,y),z=useNamespace("time"),{t:oe,lang:re}=useLocale(),ie=ref([0,2]),ae=useOldValue(n),le=computed(()=>isUndefined(n.actualVisible)?`${z.namespace.value}-zoom-in-top`:""),de=computed(()=>n.format.includes("ss")),pe=computed(()=>n.format.includes("A")?"A":n.format.includes("a")?"a":""),he=bn=>{const hn=dayjs(bn).locale(re.value),Dt=kt(hn);return hn.isSame(Dt)},ue=()=>{t("pick",ae.value,!1)},_e=(bn=!1,hn=!1)=>{hn||t("pick",n.parsedValue,bn)},Ie=bn=>{if(!n.visible)return;const hn=kt(bn).millisecond(0);t("pick",hn,!0)},Ce=(bn,hn)=>{t("select-range",bn,hn),ie.value=[bn,hn]},Oe=bn=>{const hn=[0,3].concat(de.value?[6]:[]),Dt=["hours","minutes"].concat(de.value?["seconds"]:[]),_n=(hn.indexOf(ie.value[0])+bn+hn.length)%hn.length;qe.start_emitSelectRange(Dt[_n])},$e=bn=>{const hn=bn.code,{left:Dt,right:wn,up:_n,down:vn}=EVENT_CODE;if([Dt,wn].includes(hn)){Oe(hn===Dt?-1:1),bn.preventDefault();return}if([_n,vn].includes(hn)){const Cn=hn===_n?-1:1;qe.start_scrollDown(Cn),bn.preventDefault();return}},{timePickerOptions:qe,onSetOption:ze,getAvailableTime:Ue}=useTimePanel({getAvailableHours:j,getAvailableMinutes:L,getAvailableSeconds:V}),kt=bn=>Ue(bn,n.datetimeRole||"",!0),At=bn=>bn?dayjs(bn,n.format).locale(re.value):null,Pt=bn=>bn?bn.format(n.format):null,jt=()=>dayjs(k).locale(re.value);return t("set-picker-option",["isValidValue",he]),t("set-picker-option",["formatToString",Pt]),t("set-picker-option",["parseUserInput",At]),t("set-picker-option",["handleKeydownInput",$e]),t("set-picker-option",["getRangeAvailableTime",kt]),t("set-picker-option",["getDefaultValue",jt]),(bn,hn)=>(openBlock(),createBlock(Transition,{name:unref(le)},{default:withCtx(()=>[bn.actualVisible||bn.visible?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(z).b("panel"))},[createBaseVNode("div",{class:normalizeClass([unref(z).be("panel","content"),{"has-seconds":unref(de)}])},[createVNode(TimeSpinner,{ref:"spinner",role:bn.datetimeRole||"start","arrow-control":unref(i),"show-seconds":unref(de),"am-pm-mode":unref(pe),"spinner-date":bn.parsedValue,"disabled-hours":unref(g),"disabled-minutes":unref($),"disabled-seconds":unref(y),onChange:Ie,onSetOption:unref(ze),onSelectRange:Ce},null,8,["role","arrow-control","show-seconds","am-pm-mode","spinner-date","disabled-hours","disabled-minutes","disabled-seconds","onSetOption"])],2),createBaseVNode("div",{class:normalizeClass(unref(z).be("panel","footer"))},[createBaseVNode("button",{type:"button",class:normalizeClass([unref(z).be("panel","btn"),"cancel"]),onClick:ue},toDisplayString$1(unref(oe)("el.datepicker.cancel")),3),createBaseVNode("button",{type:"button",class:normalizeClass([unref(z).be("panel","btn"),"confirm"]),onClick:hn[0]||(hn[0]=Dt=>_e())},toDisplayString$1(unref(oe)("el.datepicker.confirm")),3)],2)],2)):createCommentVNode("v-if",!0)]),_:1},8,["name"]))}});var TimePickPanel=_export_sfc$1(_sfc_main$1_,[["__file","/home/runner/work/element-plus/element-plus/packages/components/time-picker/src/time-picker-com/panel-time-pick.vue"]]);const panelTimeRangeProps=buildProps({...timePanelSharedProps,parsedValue:{type:definePropType(Array)}}),_hoisted_1$_=["disabled"],_sfc_main$1Z=defineComponent({__name:"panel-time-range",props:panelTimeRangeProps,emits:["pick","select-range","set-picker-option"],setup(e,{emit:t}){const n=e,r=(An,Pn)=>{const Mn=[];for(let Fn=An;Fn<=Pn;Fn++)Mn.push(Fn);return Mn},{t:i,lang:g}=useLocale(),$=useNamespace("time"),y=useNamespace("picker"),k=inject("EP_PICKER_BASE"),{arrowControl:j,disabledHours:L,disabledMinutes:V,disabledSeconds:z,defaultValue:oe}=k.props,re=computed(()=>n.parsedValue[0]),ie=computed(()=>n.parsedValue[1]),ae=useOldValue(n),le=()=>{t("pick",ae.value,!1)},de=computed(()=>n.format.includes("ss")),pe=computed(()=>n.format.includes("A")?"A":n.format.includes("a")?"a":""),he=(An=!1)=>{t("pick",[re.value,ie.value],An)},ue=An=>{Ce(An.millisecond(0),ie.value)},_e=An=>{Ce(re.value,An.millisecond(0))},Ie=An=>{const Pn=An.map(Fn=>dayjs(Fn).locale(g.value)),Mn=hn(Pn);return Pn[0].isSame(Mn[0])&&Pn[1].isSame(Mn[1])},Ce=(An,Pn)=>{t("pick",[An,Pn],!0)},Oe=computed(()=>re.value>ie.value),$e=ref([0,2]),qe=(An,Pn)=>{t("select-range",An,Pn,"min"),$e.value=[An,Pn]},ze=computed(()=>de.value?11:8),Ue=(An,Pn)=>{t("select-range",An,Pn,"max");const Mn=unref(ze);$e.value=[An+Mn,Pn+Mn]},kt=An=>{const Pn=de.value?[0,3,6,11,14,17]:[0,3,8,11],Mn=["hours","minutes"].concat(de.value?["seconds"]:[]),jn=(Pn.indexOf($e.value[0])+An+Pn.length)%Pn.length,zn=Pn.length/2;jn{const Pn=An.code,{left:Mn,right:Fn,up:jn,down:zn}=EVENT_CODE;if([Mn,Fn].includes(Pn)){kt(Pn===Mn?-1:1),An.preventDefault();return}if([jn,zn].includes(Pn)){const Jn=Pn===jn?-1:1,io=$e.value[0]{const Mn=L?L(An):[],Fn=An==="start",zn=(Pn||(Fn?ie.value:re.value)).hour(),Jn=Fn?r(zn+1,23):r(0,zn-1);return union$1(Mn,Jn)},jt=(An,Pn,Mn)=>{const Fn=V?V(An,Pn):[],jn=Pn==="start",zn=Mn||(jn?ie.value:re.value),Jn=zn.hour();if(An!==Jn)return Fn;const io=zn.minute(),eo=jn?r(io+1,59):r(0,io-1);return union$1(Fn,eo)},bn=(An,Pn,Mn,Fn)=>{const jn=z?z(An,Pn,Mn):[],zn=Mn==="start",Jn=Fn||(zn?ie.value:re.value),io=Jn.hour(),eo=Jn.minute();if(An!==io||Pn!==eo)return jn;const Un=Jn.second(),Yn=zn?r(Un+1,59):r(0,Un-1);return union$1(jn,Yn)},hn=([An,Pn])=>[Cn(An,"start",!0,Pn),Cn(Pn,"end",!1,An)],{getAvailableHours:Dt,getAvailableMinutes:wn,getAvailableSeconds:_n}=buildAvailableTimeSlotGetter(Pt,jt,bn),{timePickerOptions:vn,getAvailableTime:Cn,onSetOption:xn}=useTimePanel({getAvailableHours:Dt,getAvailableMinutes:wn,getAvailableSeconds:_n}),En=An=>An?isArray$4(An)?An.map(Pn=>dayjs(Pn,n.format).locale(g.value)):dayjs(An,n.format).locale(g.value):null,Sn=An=>An?isArray$4(An)?An.map(Pn=>Pn.format(n.format)):An.format(n.format):null,Bn=()=>{if(isArray$4(oe))return oe.map(Pn=>dayjs(Pn).locale(g.value));const An=dayjs(oe).locale(g.value);return[An,An.add(60,"m")]};return t("set-picker-option",["formatToString",Sn]),t("set-picker-option",["parseUserInput",En]),t("set-picker-option",["isValidValue",Ie]),t("set-picker-option",["handleKeydownInput",At]),t("set-picker-option",["getDefaultValue",Bn]),t("set-picker-option",["getRangeAvailableTime",hn]),(An,Pn)=>An.actualVisible?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass([unref($).b("range-picker"),unref(y).b("panel")])},[createBaseVNode("div",{class:normalizeClass(unref($).be("range-picker","content"))},[createBaseVNode("div",{class:normalizeClass(unref($).be("range-picker","cell"))},[createBaseVNode("div",{class:normalizeClass(unref($).be("range-picker","header"))},toDisplayString$1(unref(i)("el.datepicker.startTime")),3),createBaseVNode("div",{class:normalizeClass([unref($).be("range-picker","body"),unref($).be("panel","content"),unref($).is("arrow",unref(j)),{"has-seconds":unref(de)}])},[createVNode(TimeSpinner,{ref:"minSpinner",role:"start","show-seconds":unref(de),"am-pm-mode":unref(pe),"arrow-control":unref(j),"spinner-date":unref(re),"disabled-hours":Pt,"disabled-minutes":jt,"disabled-seconds":bn,onChange:ue,onSetOption:unref(xn),onSelectRange:qe},null,8,["show-seconds","am-pm-mode","arrow-control","spinner-date","onSetOption"])],2)],2),createBaseVNode("div",{class:normalizeClass(unref($).be("range-picker","cell"))},[createBaseVNode("div",{class:normalizeClass(unref($).be("range-picker","header"))},toDisplayString$1(unref(i)("el.datepicker.endTime")),3),createBaseVNode("div",{class:normalizeClass([unref($).be("range-picker","body"),unref($).be("panel","content"),unref($).is("arrow",unref(j)),{"has-seconds":unref(de)}])},[createVNode(TimeSpinner,{ref:"maxSpinner",role:"end","show-seconds":unref(de),"am-pm-mode":unref(pe),"arrow-control":unref(j),"spinner-date":unref(ie),"disabled-hours":Pt,"disabled-minutes":jt,"disabled-seconds":bn,onChange:_e,onSetOption:unref(xn),onSelectRange:Ue},null,8,["show-seconds","am-pm-mode","arrow-control","spinner-date","onSetOption"])],2)],2)],2),createBaseVNode("div",{class:normalizeClass(unref($).be("panel","footer"))},[createBaseVNode("button",{type:"button",class:normalizeClass([unref($).be("panel","btn"),"cancel"]),onClick:Pn[0]||(Pn[0]=Mn=>le())},toDisplayString$1(unref(i)("el.datepicker.cancel")),3),createBaseVNode("button",{type:"button",class:normalizeClass([unref($).be("panel","btn"),"confirm"]),disabled:unref(Oe),onClick:Pn[1]||(Pn[1]=Mn=>he())},toDisplayString$1(unref(i)("el.datepicker.confirm")),11,_hoisted_1$_)],2)],2)):createCommentVNode("v-if",!0)}});var TimeRangePanel=_export_sfc$1(_sfc_main$1Z,[["__file","/home/runner/work/element-plus/element-plus/packages/components/time-picker/src/time-picker-com/panel-time-range.vue"]]);dayjs.extend(customParseFormat);var TimePicker=defineComponent({name:"ElTimePicker",install:null,props:{...timePickerDefaultProps,isRange:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(e,t){const n=ref(),[r,i]=e.isRange?["timerange",TimeRangePanel]:["time",TimePickPanel],g=$=>t.emit("update:modelValue",$);return provide("ElPopperOptions",e.popperOptions),t.expose({focus:$=>{var y;(y=n.value)==null||y.handleFocusInput($)},blur:$=>{var y;(y=n.value)==null||y.handleBlurInput($)},handleOpen:()=>{var $;($=n.value)==null||$.handleOpen()},handleClose:()=>{var $;($=n.value)==null||$.handleClose()}}),()=>{var $;const y=($=e.format)!=null?$:DEFAULT_FORMATS_TIME;return createVNode(CommonPicker,mergeProps(e,{ref:n,type:r,format:y,"onUpdate:modelValue":g}),{default:k=>createVNode(i,k,null)})}}});const _TimePicker=TimePicker;_TimePicker.install=e=>{e.component(_TimePicker.name,_TimePicker)};const ElTimePicker=_TimePicker,getPrevMonthLastDays=(e,t)=>{const n=e.subtract(1,"month").endOf("month").date();return rangeArr(t).map((r,i)=>n-(t-i-1))},getMonthDays=e=>{const t=e.daysInMonth();return rangeArr(t).map((n,r)=>r+1)},toNestedArr=e=>rangeArr(e.length/7).map(t=>{const n=t*7;return e.slice(n,n+7)}),dateTableProps=buildProps({selectedDay:{type:definePropType(Object)},range:{type:definePropType(Array)},date:{type:definePropType(Object),required:!0},hideHeader:{type:Boolean}}),dateTableEmits={pick:e=>isObject$4(e)};var localeData$1={exports:{}};(function(e,t){(function(n,r){e.exports=r()})(commonjsGlobal$1,function(){return function(n,r,i){var g=r.prototype,$=function(V){return V&&(V.indexOf?V:V.s)},y=function(V,z,oe,re,ie){var ae=V.name?V:V.$locale(),le=$(ae[z]),de=$(ae[oe]),pe=le||de.map(function(ue){return ue.slice(0,re)});if(!ie)return pe;var he=ae.weekStart;return pe.map(function(ue,_e){return pe[(_e+(he||0))%7]})},k=function(){return i.Ls[i.locale()]},j=function(V,z){return V.formats[z]||function(oe){return oe.replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(re,ie,ae){return ie||ae.slice(1)})}(V.formats[z.toUpperCase()])},L=function(){var V=this;return{months:function(z){return z?z.format("MMMM"):y(V,"months")},monthsShort:function(z){return z?z.format("MMM"):y(V,"monthsShort","months",3)},firstDayOfWeek:function(){return V.$locale().weekStart||0},weekdays:function(z){return z?z.format("dddd"):y(V,"weekdays")},weekdaysMin:function(z){return z?z.format("dd"):y(V,"weekdaysMin","weekdays",2)},weekdaysShort:function(z){return z?z.format("ddd"):y(V,"weekdaysShort","weekdays",3)},longDateFormat:function(z){return j(V.$locale(),z)},meridiem:this.$locale().meridiem,ordinal:this.$locale().ordinal}};g.localeData=function(){return L.bind(this)()},i.localeData=function(){var V=k();return{firstDayOfWeek:function(){return V.weekStart||0},weekdays:function(){return i.weekdays()},weekdaysShort:function(){return i.weekdaysShort()},weekdaysMin:function(){return i.weekdaysMin()},months:function(){return i.months()},monthsShort:function(){return i.monthsShort()},longDateFormat:function(z){return j(V,z)},meridiem:V.meridiem,ordinal:V.ordinal}},i.months=function(){return y(k(),"months")},i.monthsShort=function(){return y(k(),"monthsShort","months",3)},i.weekdays=function(V){return y(k(),"weekdays",null,null,V)},i.weekdaysShort=function(V){return y(k(),"weekdaysShort","weekdays",3,V)},i.weekdaysMin=function(V){return y(k(),"weekdaysMin","weekdays",2,V)}}})})(localeData$1);var localeData=localeData$1.exports;const useDateTable=(e,t)=>{dayjs.extend(localeData);const n=dayjs.localeData().firstDayOfWeek(),{t:r,lang:i}=useLocale(),g=dayjs().locale(i.value),$=computed(()=>!!e.range&&!!e.range.length),y=computed(()=>{let z=[];if($.value){const[oe,re]=e.range,ie=rangeArr(re.date()-oe.date()+1).map(de=>({text:oe.date()+de,type:"current"}));let ae=ie.length%7;ae=ae===0?0:7-ae;const le=rangeArr(ae).map((de,pe)=>({text:pe+1,type:"next"}));z=ie.concat(le)}else{const oe=e.date.startOf("month").day(),re=getPrevMonthLastDays(e.date,(oe-n+7)%7).map(de=>({text:de,type:"prev"})),ie=getMonthDays(e.date).map(de=>({text:de,type:"current"}));z=[...re,...ie];const ae=7-(z.length%7||7),le=rangeArr(ae).map((de,pe)=>({text:pe+1,type:"next"}));z=z.concat(le)}return toNestedArr(z)}),k=computed(()=>{const z=n;return z===0?WEEK_DAYS.map(oe=>r(`el.datepicker.weeks.${oe}`)):WEEK_DAYS.slice(z).concat(WEEK_DAYS.slice(0,z)).map(oe=>r(`el.datepicker.weeks.${oe}`))}),j=(z,oe)=>{switch(oe){case"prev":return e.date.startOf("month").subtract(1,"month").date(z);case"next":return e.date.startOf("month").add(1,"month").date(z);case"current":return e.date.date(z)}};return{now:g,isInRange:$,rows:y,weekDays:k,getFormattedDate:j,handlePickDay:({text:z,type:oe})=>{const re=j(z,oe);t("pick",re)},getSlotData:({text:z,type:oe})=>{const re=j(z,oe);return{isSelected:re.isSame(e.selectedDay),type:`${oe}-month`,day:re.format("YYYY-MM-DD"),date:re.toDate()}}}},_hoisted_1$Z={key:0},_hoisted_2$E=["onClick"],__default__$1e=defineComponent({name:"DateTable"}),_sfc_main$1Y=defineComponent({...__default__$1e,props:dateTableProps,emits:dateTableEmits,setup(e,{expose:t,emit:n}){const r=e,{isInRange:i,now:g,rows:$,weekDays:y,getFormattedDate:k,handlePickDay:j,getSlotData:L}=useDateTable(r,n),V=useNamespace("calendar-table"),z=useNamespace("calendar-day"),oe=({text:re,type:ie})=>{const ae=[ie];if(ie==="current"){const le=k(re,ie);le.isSame(r.selectedDay,"day")&&ae.push(z.is("selected")),le.isSame(g,"day")&&ae.push(z.is("today"))}return ae};return t({getFormattedDate:k}),(re,ie)=>(openBlock(),createElementBlock("table",{class:normalizeClass([unref(V).b(),unref(V).is("range",unref(i))]),cellspacing:"0",cellpadding:"0"},[re.hideHeader?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("thead",_hoisted_1$Z,[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(y),ae=>(openBlock(),createElementBlock("th",{key:ae},toDisplayString$1(ae),1))),128))])),createBaseVNode("tbody",null,[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref($),(ae,le)=>(openBlock(),createElementBlock("tr",{key:le,class:normalizeClass({[unref(V).e("row")]:!0,[unref(V).em("row","hide-border")]:le===0&&re.hideHeader})},[(openBlock(!0),createElementBlock(Fragment,null,renderList(ae,(de,pe)=>(openBlock(),createElementBlock("td",{key:pe,class:normalizeClass(oe(de)),onClick:he=>unref(j)(de)},[createBaseVNode("div",{class:normalizeClass(unref(z).b())},[renderSlot(re.$slots,"date-cell",{data:unref(L)(de)},()=>[createBaseVNode("span",null,toDisplayString$1(de.text),1)])],2)],10,_hoisted_2$E))),128))],2))),128))])],2))}});var DateTable$1=_export_sfc$1(_sfc_main$1Y,[["__file","/home/runner/work/element-plus/element-plus/packages/components/calendar/src/date-table.vue"]]);const adjacentMonth=(e,t)=>{const n=e.endOf("month"),r=t.startOf("month"),g=n.isSame(r,"week")?r.add(1,"week"):r;return[[e,n],[g.startOf("week"),t]]},threeConsecutiveMonth=(e,t)=>{const n=e.endOf("month"),r=e.add(1,"month").startOf("month"),i=n.isSame(r,"week")?r.add(1,"week"):r,g=i.endOf("month"),$=t.startOf("month"),y=g.isSame($,"week")?$.add(1,"week"):$;return[[e,n],[i.startOf("week"),g],[y.startOf("week"),t]]},useCalendar=(e,t,n)=>{const r=useSlots(),{lang:i}=useLocale(),g=ref(),$=dayjs().locale(i.value),y=computed({get(){return e.modelValue?j.value:g.value},set(le){if(!le)return;g.value=le;const de=le.toDate();t(INPUT_EVENT,de),t(UPDATE_MODEL_EVENT,de)}}),k=computed(()=>{if(!e.range)return[];const le=e.range.map(he=>dayjs(he).locale(i.value)),[de,pe]=le;return de.isAfter(pe)?[]:de.isSame(pe,"month")?re(de,pe):de.add(1,"month").month()!==pe.month()?[]:re(de,pe)}),j=computed(()=>e.modelValue?dayjs(e.modelValue).locale(i.value):y.value||(k.value.length?k.value[0][0]:$)),L=computed(()=>j.value.subtract(1,"month").date(1)),V=computed(()=>j.value.add(1,"month").date(1)),z=computed(()=>j.value.subtract(1,"year").date(1)),oe=computed(()=>j.value.add(1,"year").date(1)),re=(le,de)=>{const pe=le.startOf("week"),he=de.endOf("week"),ue=pe.get("month"),_e=he.get("month");return ue===_e?[[pe,he]]:(ue+1)%12===_e?adjacentMonth(pe,he):ue+2===_e||(ue+1)%11===_e?threeConsecutiveMonth(pe,he):[]},ie=le=>{y.value=le},ae=le=>{const pe={"prev-month":L.value,"next-month":V.value,"prev-year":z.value,"next-year":oe.value,today:$}[le];pe.isSame(j.value,"day")||ie(pe)};return useDeprecated({from:'"dateCell"',replacement:'"date-cell"',scope:"ElCalendar",version:"2.3.0",ref:"https://element-plus.org/en-US/component/calendar.html#slots",type:"Slot"},computed(()=>!!r.dateCell)),{calculateValidatedDateRange:re,date:j,realSelectedDay:y,pickDay:ie,selectDate:ae,validatedRange:k}},isValidRange$1=e=>isArray$4(e)&&e.length===2&&e.every(t=>isDate$2(t)),calendarProps=buildProps({modelValue:{type:Date},range:{type:definePropType(Array),validator:isValidRange$1}}),calendarEmits={[UPDATE_MODEL_EVENT]:e=>isDate$2(e),[INPUT_EVENT]:e=>isDate$2(e)},COMPONENT_NAME$h="ElCalendar",__default__$1d=defineComponent({name:COMPONENT_NAME$h}),_sfc_main$1X=defineComponent({...__default__$1d,props:calendarProps,emits:calendarEmits,setup(e,{expose:t,emit:n}){const r=e,i=useNamespace("calendar"),{calculateValidatedDateRange:g,date:$,pickDay:y,realSelectedDay:k,selectDate:j,validatedRange:L}=useCalendar(r,n),{t:V}=useLocale(),z=computed(()=>{const oe=`el.datepicker.month${$.value.format("M")}`;return`${$.value.year()} ${V("el.datepicker.year")} ${V(oe)}`});return t({selectedDay:k,pickDay:y,selectDate:j,calculateValidatedDateRange:g}),(oe,re)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref(i).b())},[createBaseVNode("div",{class:normalizeClass(unref(i).e("header"))},[renderSlot(oe.$slots,"header",{date:unref(z)},()=>[createBaseVNode("div",{class:normalizeClass(unref(i).e("title"))},toDisplayString$1(unref(z)),3),unref(L).length===0?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(i).e("button-group"))},[createVNode(unref(ElButtonGroup$1),null,{default:withCtx(()=>[createVNode(unref(ElButton),{size:"small",onClick:re[0]||(re[0]=ie=>unref(j)("prev-month"))},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(V)("el.datepicker.prevMonth")),1)]),_:1}),createVNode(unref(ElButton),{size:"small",onClick:re[1]||(re[1]=ie=>unref(j)("today"))},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(V)("el.datepicker.today")),1)]),_:1}),createVNode(unref(ElButton),{size:"small",onClick:re[2]||(re[2]=ie=>unref(j)("next-month"))},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(V)("el.datepicker.nextMonth")),1)]),_:1})]),_:1})],2)):createCommentVNode("v-if",!0)])],2),unref(L).length===0?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(i).e("body"))},[createVNode(DateTable$1,{date:unref($),"selected-day":unref(k),onPick:unref(y)},createSlots({_:2},[oe.$slots["date-cell"]||oe.$slots.dateCell?{name:"date-cell",fn:withCtx(ie=>[oe.$slots["date-cell"]?renderSlot(oe.$slots,"date-cell",normalizeProps(mergeProps({key:0},ie))):renderSlot(oe.$slots,"dateCell",normalizeProps(mergeProps({key:1},ie)))])}:void 0]),1032,["date","selected-day","onPick"])],2)):(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref(i).e("body"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(L),(ie,ae)=>(openBlock(),createBlock(DateTable$1,{key:ae,date:ie[0],"selected-day":unref(k),range:ie,"hide-header":ae!==0,onPick:unref(y)},createSlots({_:2},[oe.$slots["date-cell"]||oe.$slots.dateCell?{name:"date-cell",fn:withCtx(le=>[oe.$slots["date-cell"]?renderSlot(oe.$slots,"date-cell",normalizeProps(mergeProps({key:0},le))):renderSlot(oe.$slots,"dateCell",normalizeProps(mergeProps({key:1},le)))])}:void 0]),1032,["date","selected-day","range","hide-header","onPick"]))),128))],2))],2))}});var Calendar=_export_sfc$1(_sfc_main$1X,[["__file","/home/runner/work/element-plus/element-plus/packages/components/calendar/src/calendar.vue"]]);const ElCalendar=withInstall(Calendar),cardProps=buildProps({header:{type:String,default:""},bodyStyle:{type:definePropType([String,Object,Array]),default:""},shadow:{type:String,values:["always","hover","never"],default:"always"}}),__default__$1c=defineComponent({name:"ElCard"}),_sfc_main$1W=defineComponent({...__default__$1c,props:cardProps,setup(e){const t=useNamespace("card");return(n,r)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(t).b(),unref(t).is(`${n.shadow}-shadow`)])},[n.$slots.header||n.header?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(t).e("header"))},[renderSlot(n.$slots,"header",{},()=>[createTextVNode(toDisplayString$1(n.header),1)])],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(t).e("body")),style:normalizeStyle(n.bodyStyle)},[renderSlot(n.$slots,"default")],6)],2))}});var Card=_export_sfc$1(_sfc_main$1W,[["__file","/home/runner/work/element-plus/element-plus/packages/components/card/src/card.vue"]]);const ElCard=withInstall(Card),carouselProps=buildProps({initialIndex:{type:Number,default:0},height:{type:String,default:""},trigger:{type:String,values:["hover","click"],default:"hover"},autoplay:{type:Boolean,default:!0},interval:{type:Number,default:3e3},indicatorPosition:{type:String,values:["","none","outside"],default:""},indicator:{type:Boolean,default:!0},arrow:{type:String,values:["always","hover","never"],default:"hover"},type:{type:String,values:["","card"],default:""},loop:{type:Boolean,default:!0},direction:{type:String,values:["horizontal","vertical"],default:"horizontal"},pauseOnHover:{type:Boolean,default:!0}}),carouselEmits={change:(e,t)=>[e,t].every(isNumber$1)},THROTTLE_TIME=300,useCarousel=(e,t,n)=>{const{children:r,addChild:i,removeChild:g}=useOrderedChildren(getCurrentInstance(),"ElCarouselItem"),$=ref(-1),y=ref(null),k=ref(!1),j=ref(),L=computed(()=>e.arrow!=="never"&&!unref(oe)),V=computed(()=>r.value.some(Pt=>Pt.props.label.toString().length>0)),z=computed(()=>e.type==="card"),oe=computed(()=>e.direction==="vertical"),re=throttle(Pt=>{pe(Pt)},THROTTLE_TIME,{trailing:!0}),ie=throttle(Pt=>{qe(Pt)},THROTTLE_TIME);function ae(){y.value&&(clearInterval(y.value),y.value=null)}function le(){e.interval<=0||!e.autoplay||y.value||(y.value=setInterval(()=>de(),e.interval))}const de=()=>{$.valueDt.props.name===Pt);hn.length>0&&(Pt=r.value.indexOf(hn[0]))}if(Pt=Number(Pt),Number.isNaN(Pt)||Pt!==Math.floor(Pt))return;const jt=r.value.length,bn=$.value;Pt<0?$.value=e.loop?jt-1:0:Pt>=jt?$.value=e.loop?0:jt-1:$.value=Pt,bn===$.value&&he(bn),kt()}function he(Pt){r.value.forEach((jt,bn)=>{jt.translateItem(bn,$.value,Pt)})}function ue(Pt,jt){var bn,hn,Dt,wn;const _n=unref(r),vn=_n.length;if(vn===0||!Pt.states.inStage)return!1;const Cn=jt+1,xn=jt-1,En=vn-1,Sn=_n[En].states.active,Bn=_n[0].states.active,An=(hn=(bn=_n[Cn])==null?void 0:bn.states)==null?void 0:hn.active,Pn=(wn=(Dt=_n[xn])==null?void 0:Dt.states)==null?void 0:wn.active;return jt===En&&Bn||An?"left":jt===0&&Sn||Pn?"right":!1}function _e(){k.value=!0,e.pauseOnHover&&ae()}function Ie(){k.value=!1,le()}function Ce(Pt){unref(oe)||r.value.forEach((jt,bn)=>{Pt===ue(jt,bn)&&(jt.states.hover=!0)})}function Oe(){unref(oe)||r.value.forEach(Pt=>{Pt.states.hover=!1})}function $e(Pt){$.value=Pt}function qe(Pt){e.trigger==="hover"&&Pt!==$.value&&($.value=Pt)}function ze(){pe($.value-1)}function Ue(){pe($.value+1)}function kt(){ae(),le()}watch(()=>$.value,(Pt,jt)=>{he(jt),jt>-1&&t("change",Pt,jt)}),watch(()=>e.autoplay,Pt=>{Pt?le():ae()}),watch(()=>e.loop,()=>{pe($.value)}),watch(()=>e.interval,()=>{kt()}),watch(()=>r.value,()=>{r.value.length>0&&pe(e.initialIndex)});const At=shallowRef();return onMounted(()=>{At.value=useResizeObserver(j.value,()=>{he()}),le()}),onBeforeUnmount(()=>{ae(),j.value&&At.value&&At.value.stop()}),provide(carouselContextKey,{root:j,isCardType:z,isVertical:oe,items:r,loop:e.loop,addItem:i,removeItem:g,setActiveItem:pe}),{root:j,activeIndex:$,arrowDisplay:L,hasLabel:V,hover:k,isCardType:z,items:r,handleButtonEnter:Ce,handleButtonLeave:Oe,handleIndicatorClick:$e,handleMouseEnter:_e,handleMouseLeave:Ie,setActiveItem:pe,prev:ze,next:Ue,throttledArrowClick:re,throttledIndicatorHover:ie}},_hoisted_1$Y=["onMouseenter","onClick"],_hoisted_2$D={key:0},COMPONENT_NAME$g="ElCarousel",__default__$1b=defineComponent({name:COMPONENT_NAME$g}),_sfc_main$1V=defineComponent({...__default__$1b,props:carouselProps,emits:carouselEmits,setup(e,{expose:t,emit:n}){const r=e,{root:i,activeIndex:g,arrowDisplay:$,hasLabel:y,hover:k,isCardType:j,items:L,handleButtonEnter:V,handleButtonLeave:z,handleIndicatorClick:oe,handleMouseEnter:re,handleMouseLeave:ie,setActiveItem:ae,prev:le,next:de,throttledArrowClick:pe,throttledIndicatorHover:he}=useCarousel(r,n),ue=useNamespace("carousel"),_e=computed(()=>{const Ce=[ue.b(),ue.m(r.direction)];return unref(j)&&Ce.push(ue.m("card")),Ce}),Ie=computed(()=>{const Ce=[ue.e("indicators"),ue.em("indicators",r.direction)];return unref(y)&&Ce.push(ue.em("indicators","labels")),(r.indicatorPosition==="outside"||unref(j))&&Ce.push(ue.em("indicators","outside")),Ce});return t({setActiveItem:ae,prev:le,next:de}),(Ce,Oe)=>(openBlock(),createElementBlock("div",{ref_key:"root",ref:i,class:normalizeClass(unref(_e)),onMouseenter:Oe[6]||(Oe[6]=withModifiers((...$e)=>unref(re)&&unref(re)(...$e),["stop"])),onMouseleave:Oe[7]||(Oe[7]=withModifiers((...$e)=>unref(ie)&&unref(ie)(...$e),["stop"]))},[createBaseVNode("div",{class:normalizeClass(unref(ue).e("container")),style:normalizeStyle({height:Ce.height})},[unref($)?(openBlock(),createBlock(Transition,{key:0,name:"carousel-arrow-left",persisted:""},{default:withCtx(()=>[withDirectives(createBaseVNode("button",{type:"button",class:normalizeClass([unref(ue).e("arrow"),unref(ue).em("arrow","left")]),onMouseenter:Oe[0]||(Oe[0]=$e=>unref(V)("left")),onMouseleave:Oe[1]||(Oe[1]=(...$e)=>unref(z)&&unref(z)(...$e)),onClick:Oe[2]||(Oe[2]=withModifiers($e=>unref(pe)(unref(g)-1),["stop"]))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_left_default))]),_:1})],34),[[vShow,(Ce.arrow==="always"||unref(k))&&(r.loop||unref(g)>0)]])]),_:1})):createCommentVNode("v-if",!0),unref($)?(openBlock(),createBlock(Transition,{key:1,name:"carousel-arrow-right",persisted:""},{default:withCtx(()=>[withDirectives(createBaseVNode("button",{type:"button",class:normalizeClass([unref(ue).e("arrow"),unref(ue).em("arrow","right")]),onMouseenter:Oe[3]||(Oe[3]=$e=>unref(V)("right")),onMouseleave:Oe[4]||(Oe[4]=(...$e)=>unref(z)&&unref(z)(...$e)),onClick:Oe[5]||(Oe[5]=withModifiers($e=>unref(pe)(unref(g)+1),["stop"]))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_right_default))]),_:1})],34),[[vShow,(Ce.arrow==="always"||unref(k))&&(r.loop||unref(g)(openBlock(),createElementBlock("li",{key:qe,class:normalizeClass([unref(ue).e("indicator"),unref(ue).em("indicator",Ce.direction),unref(ue).is("active",qe===unref(g))]),onMouseenter:ze=>unref(he)(qe),onClick:withModifiers(ze=>unref(oe)(qe),["stop"])},[createBaseVNode("button",{class:normalizeClass(unref(ue).e("button"))},[unref(y)?(openBlock(),createElementBlock("span",_hoisted_2$D,toDisplayString$1($e.props.label),1)):createCommentVNode("v-if",!0)],2)],42,_hoisted_1$Y))),128))],2)):createCommentVNode("v-if",!0)],34))}});var Carousel=_export_sfc$1(_sfc_main$1V,[["__file","/home/runner/work/element-plus/element-plus/packages/components/carousel/src/carousel.vue"]]);const carouselItemProps=buildProps({name:{type:String,default:""},label:{type:[String,Number],default:""}}),useCarouselItem=(e,t)=>{const n=inject(carouselContextKey),r=getCurrentInstance(),i=.83,g=ref(!1),$=ref(0),y=ref(1),k=ref(!1),j=ref(!1),L=ref(!1),V=ref(!1),{isCardType:z,isVertical:oe}=n;function re(pe,he,ue){const _e=ue-1,Ie=he-1,Ce=he+1,Oe=ue/2;return he===0&&pe===_e?-1:he===_e&&pe===0?ue:pe=Oe?ue+1:pe>Ce&&pe-he>=Oe?-2:pe}function ie(pe,he){var ue;const _e=((ue=n.root.value)==null?void 0:ue.offsetWidth)||0;return L.value?_e*((2-i)*(pe-he)+1)/4:pe{var _e;const Ie=unref(z),Ce=(_e=n.items.value.length)!=null?_e:Number.NaN,Oe=pe===he;!Ie&&!isUndefined(ue)&&(V.value=Oe||pe===ue),!Oe&&Ce>2&&n.loop&&(pe=re(pe,he,Ce));const $e=unref(oe);k.value=Oe,Ie?(L.value=Math.round(Math.abs(pe-he))<=1,$.value=ie(pe,he),y.value=unref(k)?1:i):$.value=ae(pe,he,$e),j.value=!0};function de(){if(n&&unref(z)){const pe=n.items.value.findIndex(({uid:he})=>he===r.uid);n.setActiveItem(pe)}}return onMounted(()=>{n.addItem({props:e,states:reactive({hover:g,translate:$,scale:y,active:k,ready:j,inStage:L,animating:V}),uid:r.uid,translateItem:le})}),onUnmounted(()=>{n.removeItem(r.uid)}),{active:k,animating:V,hover:g,inStage:L,isVertical:oe,translate:$,isCardType:z,scale:y,ready:j,handleItemClick:de}},__default__$1a=defineComponent({name:"ElCarouselItem"}),_sfc_main$1U=defineComponent({...__default__$1a,props:carouselItemProps,setup(e){const t=e,n=useNamespace("carousel"),{active:r,animating:i,hover:g,inStage:$,isVertical:y,translate:k,isCardType:j,scale:L,ready:V,handleItemClick:z}=useCarouselItem(t),oe=computed(()=>{const ie=`${`translate${unref(y)?"Y":"X"}`}(${unref(k)}px)`,ae=`scale(${unref(L)})`;return{transform:[ie,ae].join(" ")}});return(re,ie)=>withDirectives((openBlock(),createElementBlock("div",{class:normalizeClass([unref(n).e("item"),unref(n).is("active",unref(r)),unref(n).is("in-stage",unref($)),unref(n).is("hover",unref(g)),unref(n).is("animating",unref(i)),{[unref(n).em("item","card")]:unref(j)}]),style:normalizeStyle(unref(oe)),onClick:ie[0]||(ie[0]=(...ae)=>unref(z)&&unref(z)(...ae))},[unref(j)?withDirectives((openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(n).e("mask"))},null,2)),[[vShow,!unref(r)]]):createCommentVNode("v-if",!0),renderSlot(re.$slots,"default")],6)),[[vShow,unref(V)]])}});var CarouselItem=_export_sfc$1(_sfc_main$1U,[["__file","/home/runner/work/element-plus/element-plus/packages/components/carousel/src/carousel-item.vue"]]);const ElCarousel=withInstall(Carousel,{CarouselItem}),ElCarouselItem=withNoopInstall(CarouselItem),checkboxProps={modelValue:{type:[Number,String,Boolean],default:void 0},label:{type:[String,Boolean,Number,Object]},indeterminate:Boolean,disabled:Boolean,checked:Boolean,name:{type:String,default:void 0},trueLabel:{type:[String,Number],default:void 0},falseLabel:{type:[String,Number],default:void 0},id:{type:String,default:void 0},controls:{type:String,default:void 0},border:Boolean,size:useSizeProp,tabindex:[String,Number],validateEvent:{type:Boolean,default:!0}},checkboxEmits={[UPDATE_MODEL_EVENT]:e=>isString$3(e)||isNumber$1(e)||isBoolean$1(e),change:e=>isString$3(e)||isNumber$1(e)||isBoolean$1(e)},useCheckboxDisabled=({model:e,isChecked:t})=>{const n=inject(checkboxGroupContextKey,void 0),r=computed(()=>{var g,$;const y=(g=n==null?void 0:n.max)==null?void 0:g.value,k=($=n==null?void 0:n.min)==null?void 0:$.value;return!isUndefined(y)&&e.value.length>=y&&!t.value||!isUndefined(k)&&e.value.length<=k&&t.value});return{isDisabled:useDisabled(computed(()=>(n==null?void 0:n.disabled.value)||r.value)),isLimitDisabled:r}},useCheckboxEvent=(e,{model:t,isLimitExceeded:n,hasOwnLabel:r,isDisabled:i,isLabeledByFormItem:g})=>{const $=inject(checkboxGroupContextKey,void 0),{formItem:y}=useFormItem(),{emit:k}=getCurrentInstance();function j(re){var ie,ae;return re===e.trueLabel||re===!0?(ie=e.trueLabel)!=null?ie:!0:(ae=e.falseLabel)!=null?ae:!1}function L(re,ie){k("change",j(re),ie)}function V(re){if(n.value)return;const ie=re.target;k("change",j(ie.checked),re)}async function z(re){n.value||!r.value&&!i.value&&g.value&&(re.composedPath().some(le=>le.tagName==="LABEL")||(t.value=j([!1,e.falseLabel].includes(t.value)),await nextTick(),L(t.value,re)))}const oe=computed(()=>($==null?void 0:$.validateEvent)||e.validateEvent);return watch(()=>e.modelValue,()=>{oe.value&&(y==null||y.validate("change").catch(re=>void 0))}),{handleChange:V,onClickRoot:z}},useCheckboxModel=e=>{const t=ref(!1),{emit:n}=getCurrentInstance(),r=inject(checkboxGroupContextKey,void 0),i=computed(()=>isUndefined(r)===!1),g=ref(!1);return{model:computed({get(){var y,k;return i.value?(y=r==null?void 0:r.modelValue)==null?void 0:y.value:(k=e.modelValue)!=null?k:t.value},set(y){var k,j;i.value&&isArray$4(y)?(g.value=((k=r==null?void 0:r.max)==null?void 0:k.value)!==void 0&&y.length>(r==null?void 0:r.max.value),g.value===!1&&((j=r==null?void 0:r.changeEvent)==null||j.call(r,y))):(n(UPDATE_MODEL_EVENT,y),t.value=y)}}),isGroup:i,isLimitExceeded:g}},useCheckboxStatus=(e,t,{model:n})=>{const r=inject(checkboxGroupContextKey,void 0),i=ref(!1),g=computed(()=>{const j=n.value;return isBoolean$1(j)?j:isArray$4(j)?isObject$4(e.label)?j.map(toRaw).some(L=>isEqual$1(L,e.label)):j.map(toRaw).includes(e.label):j!=null?j===e.trueLabel:!!j}),$=useSize(computed(()=>{var j;return(j=r==null?void 0:r.size)==null?void 0:j.value}),{prop:!0}),y=useSize(computed(()=>{var j;return(j=r==null?void 0:r.size)==null?void 0:j.value})),k=computed(()=>!!(t.default||e.label));return{checkboxButtonSize:$,isChecked:g,isFocused:i,checkboxSize:y,hasOwnLabel:k}},setStoreValue=(e,{model:t})=>{function n(){isArray$4(t.value)&&!t.value.includes(e.label)?t.value.push(e.label):t.value=e.trueLabel||!0}e.checked&&n()},useCheckbox=(e,t)=>{const{formItem:n}=useFormItem(),{model:r,isGroup:i,isLimitExceeded:g}=useCheckboxModel(e),{isFocused:$,isChecked:y,checkboxButtonSize:k,checkboxSize:j,hasOwnLabel:L}=useCheckboxStatus(e,t,{model:r}),{isDisabled:V}=useCheckboxDisabled({model:r,isChecked:y}),{inputId:z,isLabeledByFormItem:oe}=useFormItemInputId(e,{formItemContext:n,disableIdGeneration:L,disableIdManagement:i}),{handleChange:re,onClickRoot:ie}=useCheckboxEvent(e,{model:r,isLimitExceeded:g,hasOwnLabel:L,isDisabled:V,isLabeledByFormItem:oe});return setStoreValue(e,{model:r}),{inputId:z,isLabeledByFormItem:oe,isChecked:y,isDisabled:V,isFocused:$,checkboxButtonSize:k,checkboxSize:j,hasOwnLabel:L,model:r,handleChange:re,onClickRoot:ie}},_hoisted_1$X=["tabindex","role","aria-checked"],_hoisted_2$C=["id","aria-hidden","name","tabindex","disabled","true-value","false-value"],_hoisted_3$k=["id","aria-hidden","disabled","value","name","tabindex"],__default__$19=defineComponent({name:"ElCheckbox"}),_sfc_main$1T=defineComponent({...__default__$19,props:checkboxProps,emits:checkboxEmits,setup(e){const t=e,n=useSlots(),{inputId:r,isLabeledByFormItem:i,isChecked:g,isDisabled:$,isFocused:y,checkboxSize:k,hasOwnLabel:j,model:L,handleChange:V,onClickRoot:z}=useCheckbox(t,n),oe=useNamespace("checkbox"),re=computed(()=>[oe.b(),oe.m(k.value),oe.is("disabled",$.value),oe.is("bordered",t.border),oe.is("checked",g.value)]),ie=computed(()=>[oe.e("input"),oe.is("disabled",$.value),oe.is("checked",g.value),oe.is("indeterminate",t.indeterminate),oe.is("focus",y.value)]);return(ae,le)=>(openBlock(),createBlock(resolveDynamicComponent(!unref(j)&&unref(i)?"span":"label"),{class:normalizeClass(unref(re)),"aria-controls":ae.indeterminate?ae.controls:null,onClick:unref(z)},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass(unref(ie)),tabindex:ae.indeterminate?0:void 0,role:ae.indeterminate?"checkbox":void 0,"aria-checked":ae.indeterminate?"mixed":void 0},[ae.trueLabel||ae.falseLabel?withDirectives((openBlock(),createElementBlock("input",{key:0,id:unref(r),"onUpdate:modelValue":le[0]||(le[0]=de=>isRef(L)?L.value=de:null),class:normalizeClass(unref(oe).e("original")),type:"checkbox","aria-hidden":ae.indeterminate?"true":"false",name:ae.name,tabindex:ae.tabindex,disabled:unref($),"true-value":ae.trueLabel,"false-value":ae.falseLabel,onChange:le[1]||(le[1]=(...de)=>unref(V)&&unref(V)(...de)),onFocus:le[2]||(le[2]=de=>y.value=!0),onBlur:le[3]||(le[3]=de=>y.value=!1)},null,42,_hoisted_2$C)),[[vModelCheckbox,unref(L)]]):withDirectives((openBlock(),createElementBlock("input",{key:1,id:unref(r),"onUpdate:modelValue":le[4]||(le[4]=de=>isRef(L)?L.value=de:null),class:normalizeClass(unref(oe).e("original")),type:"checkbox","aria-hidden":ae.indeterminate?"true":"false",disabled:unref($),value:ae.label,name:ae.name,tabindex:ae.tabindex,onChange:le[5]||(le[5]=(...de)=>unref(V)&&unref(V)(...de)),onFocus:le[6]||(le[6]=de=>y.value=!0),onBlur:le[7]||(le[7]=de=>y.value=!1)},null,42,_hoisted_3$k)),[[vModelCheckbox,unref(L)]]),createBaseVNode("span",{class:normalizeClass(unref(oe).e("inner"))},null,2)],10,_hoisted_1$X),unref(j)?(openBlock(),createElementBlock("span",{key:0,class:normalizeClass(unref(oe).e("label"))},[renderSlot(ae.$slots,"default"),ae.$slots.default?createCommentVNode("v-if",!0):(openBlock(),createElementBlock(Fragment,{key:0},[createTextVNode(toDisplayString$1(ae.label),1)],64))],2)):createCommentVNode("v-if",!0)]),_:3},8,["class","aria-controls","onClick"]))}});var Checkbox=_export_sfc$1(_sfc_main$1T,[["__file","/home/runner/work/element-plus/element-plus/packages/components/checkbox/src/checkbox.vue"]]);const _hoisted_1$W=["name","tabindex","disabled","true-value","false-value"],_hoisted_2$B=["name","tabindex","disabled","value"],__default__$18=defineComponent({name:"ElCheckboxButton"}),_sfc_main$1S=defineComponent({...__default__$18,props:checkboxProps,emits:checkboxEmits,setup(e){const t=e,n=useSlots(),{isFocused:r,isChecked:i,isDisabled:g,checkboxButtonSize:$,model:y,handleChange:k}=useCheckbox(t,n),j=inject(checkboxGroupContextKey,void 0),L=useNamespace("checkbox"),V=computed(()=>{var oe,re,ie,ae;const le=(re=(oe=j==null?void 0:j.fill)==null?void 0:oe.value)!=null?re:"";return{backgroundColor:le,borderColor:le,color:(ae=(ie=j==null?void 0:j.textColor)==null?void 0:ie.value)!=null?ae:"",boxShadow:le?`-1px 0 0 0 ${le}`:void 0}}),z=computed(()=>[L.b("button"),L.bm("button",$.value),L.is("disabled",g.value),L.is("checked",i.value),L.is("focus",r.value)]);return(oe,re)=>(openBlock(),createElementBlock("label",{class:normalizeClass(unref(z))},[oe.trueLabel||oe.falseLabel?withDirectives((openBlock(),createElementBlock("input",{key:0,"onUpdate:modelValue":re[0]||(re[0]=ie=>isRef(y)?y.value=ie:null),class:normalizeClass(unref(L).be("button","original")),type:"checkbox",name:oe.name,tabindex:oe.tabindex,disabled:unref(g),"true-value":oe.trueLabel,"false-value":oe.falseLabel,onChange:re[1]||(re[1]=(...ie)=>unref(k)&&unref(k)(...ie)),onFocus:re[2]||(re[2]=ie=>r.value=!0),onBlur:re[3]||(re[3]=ie=>r.value=!1)},null,42,_hoisted_1$W)),[[vModelCheckbox,unref(y)]]):withDirectives((openBlock(),createElementBlock("input",{key:1,"onUpdate:modelValue":re[4]||(re[4]=ie=>isRef(y)?y.value=ie:null),class:normalizeClass(unref(L).be("button","original")),type:"checkbox",name:oe.name,tabindex:oe.tabindex,disabled:unref(g),value:oe.label,onChange:re[5]||(re[5]=(...ie)=>unref(k)&&unref(k)(...ie)),onFocus:re[6]||(re[6]=ie=>r.value=!0),onBlur:re[7]||(re[7]=ie=>r.value=!1)},null,42,_hoisted_2$B)),[[vModelCheckbox,unref(y)]]),oe.$slots.default||oe.label?(openBlock(),createElementBlock("span",{key:2,class:normalizeClass(unref(L).be("button","inner")),style:normalizeStyle(unref(i)?unref(V):void 0)},[renderSlot(oe.$slots,"default",{},()=>[createTextVNode(toDisplayString$1(oe.label),1)])],6)):createCommentVNode("v-if",!0)],2))}});var CheckboxButton=_export_sfc$1(_sfc_main$1S,[["__file","/home/runner/work/element-plus/element-plus/packages/components/checkbox/src/checkbox-button.vue"]]);const checkboxGroupProps=buildProps({modelValue:{type:definePropType(Array),default:()=>[]},disabled:Boolean,min:Number,max:Number,size:useSizeProp,label:String,fill:String,textColor:String,tag:{type:String,default:"div"},validateEvent:{type:Boolean,default:!0}}),checkboxGroupEmits={[UPDATE_MODEL_EVENT]:e=>isArray$4(e),change:e=>isArray$4(e)},__default__$17=defineComponent({name:"ElCheckboxGroup"}),_sfc_main$1R=defineComponent({...__default__$17,props:checkboxGroupProps,emits:checkboxGroupEmits,setup(e,{emit:t}){const n=e,r=useNamespace("checkbox"),{formItem:i}=useFormItem(),{inputId:g,isLabeledByFormItem:$}=useFormItemInputId(n,{formItemContext:i}),y=async j=>{t(UPDATE_MODEL_EVENT,j),await nextTick(),t("change",j)},k=computed({get(){return n.modelValue},set(j){y(j)}});return provide(checkboxGroupContextKey,{...pick$1(toRefs(n),["size","min","max","disabled","validateEvent","fill","textColor"]),modelValue:k,changeEvent:y}),watch(()=>n.modelValue,()=>{n.validateEvent&&(i==null||i.validate("change").catch(j=>void 0))}),(j,L)=>{var V;return openBlock(),createBlock(resolveDynamicComponent(j.tag),{id:unref(g),class:normalizeClass(unref(r).b("group")),role:"group","aria-label":unref($)?void 0:j.label||"checkbox-group","aria-labelledby":unref($)?(V=unref(i))==null?void 0:V.labelId:void 0},{default:withCtx(()=>[renderSlot(j.$slots,"default")]),_:3},8,["id","class","aria-label","aria-labelledby"])}}});var CheckboxGroup=_export_sfc$1(_sfc_main$1R,[["__file","/home/runner/work/element-plus/element-plus/packages/components/checkbox/src/checkbox-group.vue"]]);const ElCheckbox=withInstall(Checkbox,{CheckboxButton,CheckboxGroup}),ElCheckboxButton=withNoopInstall(CheckboxButton),ElCheckboxGroup$1=withNoopInstall(CheckboxGroup),radioPropsBase=buildProps({size:useSizeProp,disabled:Boolean,label:{type:[String,Number,Boolean],default:""}}),radioProps=buildProps({...radioPropsBase,modelValue:{type:[String,Number,Boolean],default:""},name:{type:String,default:""},border:Boolean}),radioEmits={[UPDATE_MODEL_EVENT]:e=>isString$3(e)||isNumber$1(e)||isBoolean$1(e),[CHANGE_EVENT]:e=>isString$3(e)||isNumber$1(e)||isBoolean$1(e)},useRadio=(e,t)=>{const n=ref(),r=inject(radioGroupKey,void 0),i=computed(()=>!!r),g=computed({get(){return i.value?r.modelValue:e.modelValue},set(L){i.value?r.changeEvent(L):t&&t(UPDATE_MODEL_EVENT,L),n.value.checked=e.modelValue===e.label}}),$=useSize(computed(()=>r==null?void 0:r.size)),y=useDisabled(computed(()=>r==null?void 0:r.disabled)),k=ref(!1),j=computed(()=>y.value||i.value&&g.value!==e.label?-1:0);return{radioRef:n,isGroup:i,radioGroup:r,focus:k,size:$,disabled:y,tabIndex:j,modelValue:g}},_hoisted_1$V=["value","name","disabled"],__default__$16=defineComponent({name:"ElRadio"}),_sfc_main$1Q=defineComponent({...__default__$16,props:radioProps,emits:radioEmits,setup(e,{emit:t}){const n=e,r=useNamespace("radio"),{radioRef:i,radioGroup:g,focus:$,size:y,disabled:k,modelValue:j}=useRadio(n,t);function L(){nextTick(()=>t("change",j.value))}return(V,z)=>{var oe;return openBlock(),createElementBlock("label",{class:normalizeClass([unref(r).b(),unref(r).is("disabled",unref(k)),unref(r).is("focus",unref($)),unref(r).is("bordered",V.border),unref(r).is("checked",unref(j)===V.label),unref(r).m(unref(y))])},[createBaseVNode("span",{class:normalizeClass([unref(r).e("input"),unref(r).is("disabled",unref(k)),unref(r).is("checked",unref(j)===V.label)])},[withDirectives(createBaseVNode("input",{ref_key:"radioRef",ref:i,"onUpdate:modelValue":z[0]||(z[0]=re=>isRef(j)?j.value=re:null),class:normalizeClass(unref(r).e("original")),value:V.label,name:V.name||((oe=unref(g))==null?void 0:oe.name),disabled:unref(k),type:"radio",onFocus:z[1]||(z[1]=re=>$.value=!0),onBlur:z[2]||(z[2]=re=>$.value=!1),onChange:L},null,42,_hoisted_1$V),[[vModelRadio,unref(j)]]),createBaseVNode("span",{class:normalizeClass(unref(r).e("inner"))},null,2)],2),createBaseVNode("span",{class:normalizeClass(unref(r).e("label")),onKeydown:z[3]||(z[3]=withModifiers(()=>{},["stop"]))},[renderSlot(V.$slots,"default",{},()=>[createTextVNode(toDisplayString$1(V.label),1)])],34)],2)}}});var Radio=_export_sfc$1(_sfc_main$1Q,[["__file","/home/runner/work/element-plus/element-plus/packages/components/radio/src/radio.vue"]]);const radioButtonProps=buildProps({...radioPropsBase,name:{type:String,default:""}}),_hoisted_1$U=["value","name","disabled"],__default__$15=defineComponent({name:"ElRadioButton"}),_sfc_main$1P=defineComponent({...__default__$15,props:radioButtonProps,setup(e){const t=e,n=useNamespace("radio"),{radioRef:r,focus:i,size:g,disabled:$,modelValue:y,radioGroup:k}=useRadio(t),j=computed(()=>({backgroundColor:(k==null?void 0:k.fill)||"",borderColor:(k==null?void 0:k.fill)||"",boxShadow:k!=null&&k.fill?`-1px 0 0 0 ${k.fill}`:"",color:(k==null?void 0:k.textColor)||""}));return(L,V)=>{var z;return openBlock(),createElementBlock("label",{class:normalizeClass([unref(n).b("button"),unref(n).is("active",unref(y)===L.label),unref(n).is("disabled",unref($)),unref(n).is("focus",unref(i)),unref(n).bm("button",unref(g))])},[withDirectives(createBaseVNode("input",{ref_key:"radioRef",ref:r,"onUpdate:modelValue":V[0]||(V[0]=oe=>isRef(y)?y.value=oe:null),class:normalizeClass(unref(n).be("button","original-radio")),value:L.label,type:"radio",name:L.name||((z=unref(k))==null?void 0:z.name),disabled:unref($),onFocus:V[1]||(V[1]=oe=>i.value=!0),onBlur:V[2]||(V[2]=oe=>i.value=!1)},null,42,_hoisted_1$U),[[vModelRadio,unref(y)]]),createBaseVNode("span",{class:normalizeClass(unref(n).be("button","inner")),style:normalizeStyle(unref(y)===L.label?unref(j):{}),onKeydown:V[3]||(V[3]=withModifiers(()=>{},["stop"]))},[renderSlot(L.$slots,"default",{},()=>[createTextVNode(toDisplayString$1(L.label),1)])],38)],2)}}});var RadioButton=_export_sfc$1(_sfc_main$1P,[["__file","/home/runner/work/element-plus/element-plus/packages/components/radio/src/radio-button.vue"]]);const radioGroupProps=buildProps({id:{type:String,default:void 0},size:useSizeProp,disabled:Boolean,modelValue:{type:[String,Number,Boolean],default:""},fill:{type:String,default:""},label:{type:String,default:void 0},textColor:{type:String,default:""},name:{type:String,default:void 0},validateEvent:{type:Boolean,default:!0}}),radioGroupEmits=radioEmits,_hoisted_1$T=["id","aria-label","aria-labelledby"],__default__$14=defineComponent({name:"ElRadioGroup"}),_sfc_main$1O=defineComponent({...__default__$14,props:radioGroupProps,emits:radioGroupEmits,setup(e,{emit:t}){const n=e,r=useNamespace("radio"),i=useId(),g=ref(),{formItem:$}=useFormItem(),{inputId:y,isLabeledByFormItem:k}=useFormItemInputId(n,{formItemContext:$}),j=V=>{t(UPDATE_MODEL_EVENT,V),nextTick(()=>t("change",V))};onMounted(()=>{const V=g.value.querySelectorAll("[type=radio]"),z=V[0];!Array.from(V).some(oe=>oe.checked)&&z&&(z.tabIndex=0)});const L=computed(()=>n.name||i.value);return provide(radioGroupKey,reactive({...toRefs(n),changeEvent:j,name:L})),watch(()=>n.modelValue,()=>{n.validateEvent&&($==null||$.validate("change").catch(V=>void 0))}),(V,z)=>(openBlock(),createElementBlock("div",{id:unref(y),ref_key:"radioGroupRef",ref:g,class:normalizeClass(unref(r).b("group")),role:"radiogroup","aria-label":unref(k)?void 0:V.label||"radio-group","aria-labelledby":unref(k)?unref($).labelId:void 0},[renderSlot(V.$slots,"default")],10,_hoisted_1$T))}});var RadioGroup=_export_sfc$1(_sfc_main$1O,[["__file","/home/runner/work/element-plus/element-plus/packages/components/radio/src/radio-group.vue"]]);const ElRadio=withInstall(Radio,{RadioButton,RadioGroup}),ElRadioGroup=withNoopInstall(RadioGroup),ElRadioButton=withNoopInstall(RadioButton);var NodeContent$1=defineComponent({name:"NodeContent",setup(){return{ns:useNamespace("cascader-node")}},render(){const{ns:e}=this,{node:t,panel:n}=this.$parent,{data:r,label:i}=t,{renderLabelFn:g}=n;return h$1("span",{class:e.e("label")},g?g({node:t,data:r}):i)}});const CASCADER_PANEL_INJECTION_KEY=Symbol(),_sfc_main$1N=defineComponent({name:"ElCascaderNode",components:{ElCheckbox,ElRadio,NodeContent:NodeContent$1,ElIcon,Check:check_default,Loading:loading_default,ArrowRight:arrow_right_default},props:{node:{type:Object,required:!0},menuId:String},emits:["expand"],setup(e,{emit:t}){const n=inject(CASCADER_PANEL_INJECTION_KEY),r=useNamespace("cascader-node"),i=computed(()=>n.isHoverMenu),g=computed(()=>n.config.multiple),$=computed(()=>n.config.checkStrictly),y=computed(()=>{var _e;return(_e=n.checkedNodes[0])==null?void 0:_e.uid}),k=computed(()=>e.node.isDisabled),j=computed(()=>e.node.isLeaf),L=computed(()=>$.value&&!j.value||!k.value),V=computed(()=>oe(n.expandingNode)),z=computed(()=>$.value&&n.checkedNodes.some(oe)),oe=_e=>{var Ie;const{level:Ce,uid:Oe}=e.node;return((Ie=_e==null?void 0:_e.pathNodes[Ce-1])==null?void 0:Ie.uid)===Oe},re=()=>{V.value||n.expandNode(e.node)},ie=_e=>{const{node:Ie}=e;_e!==Ie.checked&&n.handleCheckChange(Ie,_e)},ae=()=>{n.lazyLoad(e.node,()=>{j.value||re()})},le=_e=>{!i.value||(de(),!j.value&&t("expand",_e))},de=()=>{const{node:_e}=e;!L.value||_e.loading||(_e.loaded?re():ae())},pe=()=>{i.value&&!j.value||(j.value&&!k.value&&!$.value&&!g.value?ue(!0):de())},he=_e=>{$.value?(ie(_e),e.node.loaded&&re()):ue(_e)},ue=_e=>{e.node.loaded?(ie(_e),!$.value&&re()):ae()};return{panel:n,isHoverMenu:i,multiple:g,checkStrictly:$,checkedNodeId:y,isDisabled:k,isLeaf:j,expandable:L,inExpandingPath:V,inCheckedPath:z,ns:r,handleHoverExpand:le,handleExpand:de,handleClick:pe,handleCheck:ue,handleSelectCheck:he}}}),_hoisted_1$S=["id","aria-haspopup","aria-owns","aria-expanded","tabindex"],_hoisted_2$A=createBaseVNode("span",null,null,-1);function _sfc_render$B(e,t,n,r,i,g){const $=resolveComponent("el-checkbox"),y=resolveComponent("el-radio"),k=resolveComponent("check"),j=resolveComponent("el-icon"),L=resolveComponent("node-content"),V=resolveComponent("loading"),z=resolveComponent("arrow-right");return openBlock(),createElementBlock("li",{id:`${e.menuId}-${e.node.uid}`,role:"menuitem","aria-haspopup":!e.isLeaf,"aria-owns":e.isLeaf?null:e.menuId,"aria-expanded":e.inExpandingPath,tabindex:e.expandable?-1:void 0,class:normalizeClass([e.ns.b(),e.ns.is("selectable",e.checkStrictly),e.ns.is("active",e.node.checked),e.ns.is("disabled",!e.expandable),e.inExpandingPath&&"in-active-path",e.inCheckedPath&&"in-checked-path"]),onMouseenter:t[2]||(t[2]=(...oe)=>e.handleHoverExpand&&e.handleHoverExpand(...oe)),onFocus:t[3]||(t[3]=(...oe)=>e.handleHoverExpand&&e.handleHoverExpand(...oe)),onClick:t[4]||(t[4]=(...oe)=>e.handleClick&&e.handleClick(...oe))},[createCommentVNode(" prefix "),e.multiple?(openBlock(),createBlock($,{key:0,"model-value":e.node.checked,indeterminate:e.node.indeterminate,disabled:e.isDisabled,onClick:t[0]||(t[0]=withModifiers(()=>{},["stop"])),"onUpdate:modelValue":e.handleSelectCheck},null,8,["model-value","indeterminate","disabled","onUpdate:modelValue"])):e.checkStrictly?(openBlock(),createBlock(y,{key:1,"model-value":e.checkedNodeId,label:e.node.uid,disabled:e.isDisabled,"onUpdate:modelValue":e.handleSelectCheck,onClick:t[1]||(t[1]=withModifiers(()=>{},["stop"]))},{default:withCtx(()=>[createCommentVNode(` + Add an empty element to avoid render label, + do not use empty fragment here for https://github.com/vuejs/vue-next/pull/2485 + `),_hoisted_2$A]),_:1},8,["model-value","label","disabled","onUpdate:modelValue"])):e.isLeaf&&e.node.checked?(openBlock(),createBlock(j,{key:2,class:normalizeClass(e.ns.e("prefix"))},{default:withCtx(()=>[createVNode(k)]),_:1},8,["class"])):createCommentVNode("v-if",!0),createCommentVNode(" content "),createVNode(L),createCommentVNode(" postfix "),e.isLeaf?createCommentVNode("v-if",!0):(openBlock(),createElementBlock(Fragment,{key:3},[e.node.loading?(openBlock(),createBlock(j,{key:0,class:normalizeClass([e.ns.is("loading"),e.ns.e("postfix")])},{default:withCtx(()=>[createVNode(V)]),_:1},8,["class"])):(openBlock(),createBlock(j,{key:1,class:normalizeClass(["arrow-right",e.ns.e("postfix")])},{default:withCtx(()=>[createVNode(z)]),_:1},8,["class"]))],64))],42,_hoisted_1$S)}var ElCascaderNode=_export_sfc$1(_sfc_main$1N,[["render",_sfc_render$B],["__file","/home/runner/work/element-plus/element-plus/packages/components/cascader-panel/src/node.vue"]]);const _sfc_main$1M=defineComponent({name:"ElCascaderMenu",components:{Loading:loading_default,ElIcon,ElScrollbar,ElCascaderNode},props:{nodes:{type:Array,required:!0},index:{type:Number,required:!0}},setup(e){const t=getCurrentInstance(),n=useNamespace("cascader-menu"),{t:r}=useLocale(),i=generateId();let g=null,$=null;const y=inject(CASCADER_PANEL_INJECTION_KEY),k=ref(null),j=computed(()=>!e.nodes.length),L=computed(()=>!y.initialLoaded),V=computed(()=>`cascader-menu-${i}-${e.index}`),z=ae=>{g=ae.target},oe=ae=>{if(!(!y.isHoverMenu||!g||!k.value))if(g.contains(ae.target)){re();const le=t.vnode.el,{left:de}=le.getBoundingClientRect(),{offsetWidth:pe,offsetHeight:he}=le,ue=ae.clientX-de,_e=g.offsetTop,Ie=_e+g.offsetHeight;k.value.innerHTML=` + + + `}else $||($=window.setTimeout(ie,y.config.hoverThreshold))},re=()=>{!$||(clearTimeout($),$=null)},ie=()=>{!k.value||(k.value.innerHTML="",re())};return{ns:n,panel:y,hoverZone:k,isEmpty:j,isLoading:L,menuId:V,t:r,handleExpand:z,handleMouseMove:oe,clearHoverZone:ie}}});function _sfc_render$A(e,t,n,r,i,g){const $=resolveComponent("el-cascader-node"),y=resolveComponent("loading"),k=resolveComponent("el-icon"),j=resolveComponent("el-scrollbar");return openBlock(),createBlock(j,{key:e.menuId,tag:"ul",role:"menu",class:normalizeClass(e.ns.b()),"wrap-class":e.ns.e("wrap"),"view-class":[e.ns.e("list"),e.ns.is("empty",e.isEmpty)],onMousemove:e.handleMouseMove,onMouseleave:e.clearHoverZone},{default:withCtx(()=>{var L;return[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.nodes,V=>(openBlock(),createBlock($,{key:V.uid,node:V,"menu-id":e.menuId,onExpand:e.handleExpand},null,8,["node","menu-id","onExpand"]))),128)),e.isLoading?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(e.ns.e("empty-text"))},[createVNode(k,{size:"14",class:normalizeClass(e.ns.is("loading"))},{default:withCtx(()=>[createVNode(y)]),_:1},8,["class"]),createTextVNode(" "+toDisplayString$1(e.t("el.cascader.loading")),1)],2)):e.isEmpty?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(e.ns.e("empty-text"))},toDisplayString$1(e.t("el.cascader.noData")),3)):(L=e.panel)!=null&&L.isHoverMenu?(openBlock(),createElementBlock("svg",{key:2,ref:"hoverZone",class:normalizeClass(e.ns.e("hover-zone"))},null,2)):createCommentVNode("v-if",!0)]}),_:1},8,["class","wrap-class","view-class","onMousemove","onMouseleave"])}var ElCascaderMenu=_export_sfc$1(_sfc_main$1M,[["render",_sfc_render$A],["__file","/home/runner/work/element-plus/element-plus/packages/components/cascader-panel/src/menu.vue"]]);let uid=0;const calculatePathNodes=e=>{const t=[e];let{parent:n}=e;for(;n;)t.unshift(n),n=n.parent;return t};class Node$2{constructor(t,n,r,i=!1){this.data=t,this.config=n,this.parent=r,this.root=i,this.uid=uid++,this.checked=!1,this.indeterminate=!1,this.loading=!1;const{value:g,label:$,children:y}=n,k=t[y],j=calculatePathNodes(this);this.level=i?0:r?r.level+1:1,this.value=t[g],this.label=t[$],this.pathNodes=j,this.pathValues=j.map(L=>L.value),this.pathLabels=j.map(L=>L.label),this.childrenData=k,this.children=(k||[]).map(L=>new Node$2(L,n,this)),this.loaded=!n.lazy||this.isLeaf||!isEmpty(k)}get isDisabled(){const{data:t,parent:n,config:r}=this,{disabled:i,checkStrictly:g}=r;return(isFunction$4(i)?i(t,this):!!t[i])||!g&&(n==null?void 0:n.isDisabled)}get isLeaf(){const{data:t,config:n,childrenData:r,loaded:i}=this,{lazy:g,leaf:$}=n,y=isFunction$4($)?$(t,this):t[$];return isUndefined(y)?g&&!i?!1:!(Array.isArray(r)&&r.length):!!y}get valueByOption(){return this.config.emitPath?this.pathValues:this.value}appendChild(t){const{childrenData:n,children:r}=this,i=new Node$2(t,this.config,this);return Array.isArray(n)?n.push(t):this.childrenData=[t],r.push(i),i}calcText(t,n){const r=t?this.pathLabels.join(n):this.label;return this.text=r,r}broadcast(t,...n){const r=`onParent${capitalize(t)}`;this.children.forEach(i=>{i&&(i.broadcast(t,...n),i[r]&&i[r](...n))})}emit(t,...n){const{parent:r}=this,i=`onChild${capitalize(t)}`;r&&(r[i]&&r[i](...n),r.emit(t,...n))}onParentCheck(t){this.isDisabled||this.setCheckState(t)}onChildCheck(){const{children:t}=this,n=t.filter(i=>!i.isDisabled),r=n.length?n.every(i=>i.checked):!1;this.setCheckState(r)}setCheckState(t){const n=this.children.length,r=this.children.reduce((i,g)=>{const $=g.checked?1:g.indeterminate?.5:0;return i+$},0);this.checked=this.loaded&&this.children.filter(i=>!i.isDisabled).every(i=>i.loaded&&i.checked)&&t,this.indeterminate=this.loaded&&r!==n&&r>0}doCheck(t){if(this.checked===t)return;const{checkStrictly:n,multiple:r}=this.config;n||!r?this.checked=t:(this.broadcast("check",t),this.setCheckState(t),this.emit("check"))}}const flatNodes=(e,t)=>e.reduce((n,r)=>(r.isLeaf?n.push(r):(!t&&n.push(r),n=n.concat(flatNodes(r.children,t))),n),[]);class Store{constructor(t,n){this.config=n;const r=(t||[]).map(i=>new Node$2(i,this.config));this.nodes=r,this.allNodes=flatNodes(r,!1),this.leafNodes=flatNodes(r,!0)}getNodes(){return this.nodes}getFlattedNodes(t){return t?this.leafNodes:this.allNodes}appendNode(t,n){const r=n?n.appendChild(t):new Node$2(t,this.config);n||this.nodes.push(r),this.allNodes.push(r),r.isLeaf&&this.leafNodes.push(r)}appendNodes(t,n){t.forEach(r=>this.appendNode(r,n))}getNodeByValue(t,n=!1){return!t&&t!==0?null:this.getFlattedNodes(n).find(i=>isEqual$1(i.value,t)||isEqual$1(i.pathValues,t))||null}getSameNode(t){return t&&this.getFlattedNodes(!1).find(({value:r,level:i})=>isEqual$1(t.value,r)&&t.level===i)||null}}const CommonProps=buildProps({modelValue:{type:definePropType([Number,String,Array])},options:{type:definePropType(Array),default:()=>[]},props:{type:definePropType(Object),default:()=>({})}}),DefaultProps={expandTrigger:"click",multiple:!1,checkStrictly:!1,emitPath:!0,lazy:!1,lazyLoad:NOOP,value:"value",label:"label",children:"children",leaf:"leaf",disabled:"disabled",hoverThreshold:500},useCascaderConfig=e=>computed(()=>({...DefaultProps,...e.props})),getMenuIndex=e=>{if(!e)return 0;const t=e.id.split("-");return Number(t[t.length-2])},checkNode=e=>{if(!e)return;const t=e.querySelector("input");t?t.click():isLeaf(e)&&e.click()},sortByOriginalOrder=(e,t)=>{const n=t.slice(0),r=n.map(g=>g.uid),i=e.reduce((g,$)=>{const y=r.indexOf($.uid);return y>-1&&(g.push($),n.splice(y,1),r.splice(y,1)),g},[]);return i.push(...n),i},_sfc_main$1L=defineComponent({name:"ElCascaderPanel",components:{ElCascaderMenu},props:{...CommonProps,border:{type:Boolean,default:!0},renderLabel:Function},emits:[UPDATE_MODEL_EVENT,CHANGE_EVENT,"close","expand-change"],setup(e,{emit:t,slots:n}){let r=!1;const i=useNamespace("cascader"),g=useCascaderConfig(e);let $=null;const y=ref(!0),k=ref([]),j=ref(null),L=ref([]),V=ref(null),z=ref([]),oe=computed(()=>g.value.expandTrigger==="hover"),re=computed(()=>e.renderLabel||n.default),ie=()=>{const{options:ze}=e,Ue=g.value;r=!1,$=new Store(ze,Ue),L.value=[$.getNodes()],Ue.lazy&&isEmpty(e.options)?(y.value=!1,ae(void 0,kt=>{kt&&($=new Store(kt,Ue),L.value=[$.getNodes()]),y.value=!0,Ce(!1,!0)})):Ce(!1,!0)},ae=(ze,Ue)=>{const kt=g.value;ze=ze||new Node$2({},kt,void 0,!0),ze.loading=!0;const At=Pt=>{const jt=ze,bn=jt.root?null:jt;Pt&&($==null||$.appendNodes(Pt,bn)),jt.loading=!1,jt.loaded=!0,jt.childrenData=jt.childrenData||[],Ue&&Ue(Pt)};kt.lazyLoad(ze,At)},le=(ze,Ue)=>{var kt;const{level:At}=ze,Pt=L.value.slice(0,At);let jt;ze.isLeaf?jt=ze.pathNodes[At-2]:(jt=ze,Pt.push(ze.children)),((kt=V.value)==null?void 0:kt.uid)!==(jt==null?void 0:jt.uid)&&(V.value=ze,L.value=Pt,!Ue&&t("expand-change",(ze==null?void 0:ze.pathValues)||[]))},de=(ze,Ue,kt=!0)=>{const{checkStrictly:At,multiple:Pt}=g.value,jt=z.value[0];r=!0,!Pt&&(jt==null||jt.doCheck(!1)),ze.doCheck(Ue),Ie(),kt&&!Pt&&!At&&t("close"),!kt&&!Pt&&!At&&pe(ze)},pe=ze=>{!ze||(ze=ze.parent,pe(ze),ze&&le(ze))},he=ze=>$==null?void 0:$.getFlattedNodes(ze),ue=ze=>{var Ue;return(Ue=he(ze))==null?void 0:Ue.filter(kt=>kt.checked!==!1)},_e=()=>{z.value.forEach(ze=>ze.doCheck(!1)),Ie()},Ie=()=>{var ze;const{checkStrictly:Ue,multiple:kt}=g.value,At=z.value,Pt=ue(!Ue),jt=sortByOriginalOrder(At,Pt),bn=jt.map(hn=>hn.valueByOption);z.value=jt,j.value=kt?bn:(ze=bn[0])!=null?ze:null},Ce=(ze=!1,Ue=!1)=>{const{modelValue:kt}=e,{lazy:At,multiple:Pt,checkStrictly:jt}=g.value,bn=!jt;if(!(!y.value||r||!Ue&&isEqual$1(kt,j.value)))if(At&&!ze){const Dt=unique(flattenDeep(castArray(kt))).map(wn=>$==null?void 0:$.getNodeByValue(wn)).filter(wn=>!!wn&&!wn.loaded&&!wn.loading);Dt.length?Dt.forEach(wn=>{ae(wn,()=>Ce(!1,Ue))}):Ce(!0,Ue)}else{const hn=Pt?castArray(kt):[kt],Dt=unique(hn.map(wn=>$==null?void 0:$.getNodeByValue(wn,bn)));Oe(Dt,Ue),j.value=cloneDeep(kt)}},Oe=(ze,Ue=!0)=>{const{checkStrictly:kt}=g.value,At=z.value,Pt=ze.filter(hn=>!!hn&&(kt||hn.isLeaf)),jt=$==null?void 0:$.getSameNode(V.value),bn=Ue&&jt||Pt[0];bn?bn.pathNodes.forEach(hn=>le(hn,!0)):V.value=null,At.forEach(hn=>hn.doCheck(!1)),Pt.forEach(hn=>hn.doCheck(!0)),z.value=Pt,nextTick($e)},$e=()=>{!isClient||k.value.forEach(ze=>{const Ue=ze==null?void 0:ze.$el;if(Ue){const kt=Ue.querySelector(`.${i.namespace.value}-scrollbar__wrap`),At=Ue.querySelector(`.${i.b("node")}.${i.is("active")}`)||Ue.querySelector(`.${i.b("node")}.in-active-path`);scrollIntoView(kt,At)}})},qe=ze=>{const Ue=ze.target,{code:kt}=ze;switch(kt){case EVENT_CODE.up:case EVENT_CODE.down:{ze.preventDefault();const At=kt===EVENT_CODE.up?-1:1;focusNode(getSibling(Ue,At,`.${i.b("node")}[tabindex="-1"]`));break}case EVENT_CODE.left:{ze.preventDefault();const At=k.value[getMenuIndex(Ue)-1],Pt=At==null?void 0:At.$el.querySelector(`.${i.b("node")}[aria-expanded="true"]`);focusNode(Pt);break}case EVENT_CODE.right:{ze.preventDefault();const At=k.value[getMenuIndex(Ue)+1],Pt=At==null?void 0:At.$el.querySelector(`.${i.b("node")}[tabindex="-1"]`);focusNode(Pt);break}case EVENT_CODE.enter:checkNode(Ue);break}};return provide(CASCADER_PANEL_INJECTION_KEY,reactive({config:g,expandingNode:V,checkedNodes:z,isHoverMenu:oe,initialLoaded:y,renderLabelFn:re,lazyLoad:ae,expandNode:le,handleCheckChange:de})),watch([g,()=>e.options],ie,{deep:!0,immediate:!0}),watch(()=>e.modelValue,()=>{r=!1,Ce()},{deep:!0}),watch(()=>j.value,ze=>{isEqual$1(ze,e.modelValue)||(t(UPDATE_MODEL_EVENT,ze),t(CHANGE_EVENT,ze))}),onBeforeUpdate(()=>k.value=[]),onMounted(()=>!isEmpty(e.modelValue)&&Ce()),{ns:i,menuList:k,menus:L,checkedNodes:z,handleKeyDown:qe,handleCheckChange:de,getFlattedNodes:he,getCheckedNodes:ue,clearCheckedNodes:_e,calculateCheckedValue:Ie,scrollToExpandingNode:$e}}});function _sfc_render$z(e,t,n,r,i,g){const $=resolveComponent("el-cascader-menu");return openBlock(),createElementBlock("div",{class:normalizeClass([e.ns.b("panel"),e.ns.is("bordered",e.border)]),onKeydown:t[0]||(t[0]=(...y)=>e.handleKeyDown&&e.handleKeyDown(...y))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.menus,(y,k)=>(openBlock(),createBlock($,{key:k,ref_for:!0,ref:j=>e.menuList[k]=j,index:k,nodes:[...y]},null,8,["index","nodes"]))),128))],34)}var CascaderPanel=_export_sfc$1(_sfc_main$1L,[["render",_sfc_render$z],["__file","/home/runner/work/element-plus/element-plus/packages/components/cascader-panel/src/index.vue"]]);CascaderPanel.install=e=>{e.component(CascaderPanel.name,CascaderPanel)};const _CascaderPanel=CascaderPanel,ElCascaderPanel=_CascaderPanel,tagProps=buildProps({closable:Boolean,type:{type:String,values:["success","info","warning","danger",""],default:""},hit:Boolean,disableTransitions:Boolean,color:{type:String,default:""},size:{type:String,values:componentSizes,default:""},effect:{type:String,values:["dark","light","plain"],default:"light"},round:Boolean}),tagEmits={close:e=>e instanceof MouseEvent,click:e=>e instanceof MouseEvent},__default__$13=defineComponent({name:"ElTag"}),_sfc_main$1K=defineComponent({...__default__$13,props:tagProps,emits:tagEmits,setup(e,{emit:t}){const n=e,r=useSize(),i=useNamespace("tag"),g=computed(()=>{const{type:k,hit:j,effect:L,closable:V,round:z}=n;return[i.b(),i.is("closable",V),i.m(k),i.m(r.value),i.m(L),i.is("hit",j),i.is("round",z)]}),$=k=>{t("close",k)},y=k=>{t("click",k)};return(k,j)=>k.disableTransitions?(openBlock(),createElementBlock("span",{key:0,class:normalizeClass(unref(g)),style:normalizeStyle({backgroundColor:k.color}),onClick:y},[createBaseVNode("span",{class:normalizeClass(unref(i).e("content"))},[renderSlot(k.$slots,"default")],2),k.closable?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(i).e("close")),onClick:withModifiers($,["stop"])},{default:withCtx(()=>[createVNode(unref(close_default))]),_:1},8,["class","onClick"])):createCommentVNode("v-if",!0)],6)):(openBlock(),createBlock(Transition,{key:1,name:`${unref(i).namespace.value}-zoom-in-center`,appear:""},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass(unref(g)),style:normalizeStyle({backgroundColor:k.color}),onClick:y},[createBaseVNode("span",{class:normalizeClass(unref(i).e("content"))},[renderSlot(k.$slots,"default")],2),k.closable?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(i).e("close")),onClick:withModifiers($,["stop"])},{default:withCtx(()=>[createVNode(unref(close_default))]),_:1},8,["class","onClick"])):createCommentVNode("v-if",!0)],6)]),_:3},8,["name"]))}});var Tag=_export_sfc$1(_sfc_main$1K,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tag/src/tag.vue"]]);const ElTag=withInstall(Tag),cascaderProps=buildProps({...CommonProps,size:useSizeProp,placeholder:String,disabled:Boolean,clearable:Boolean,filterable:Boolean,filterMethod:{type:definePropType(Function),default:(e,t)=>e.text.includes(t)},separator:{type:String,default:" / "},showAllLevels:{type:Boolean,default:!0},collapseTags:Boolean,collapseTagsTooltip:{type:Boolean,default:!1},debounce:{type:Number,default:300},beforeFilter:{type:definePropType(Function),default:()=>!0},popperClass:{type:String,default:""},teleported:useTooltipContentProps.teleported,tagType:{...tagProps.type,default:"info"},validateEvent:{type:Boolean,default:!0}}),cascaderEmits={[UPDATE_MODEL_EVENT]:e=>!!e,[CHANGE_EVENT]:e=>!!e,focus:e=>e instanceof FocusEvent,blur:e=>e instanceof FocusEvent,visibleChange:e=>isBoolean$1(e),expandChange:e=>!!e,removeTag:e=>!!e},_hoisted_1$R={key:0},_hoisted_2$z=["placeholder","onKeydown"],_hoisted_3$j=["onClick"],COMPONENT_NAME$f="ElCascader",__default__$12=defineComponent({name:COMPONENT_NAME$f}),_sfc_main$1J=defineComponent({...__default__$12,props:cascaderProps,emits:cascaderEmits,setup(e,{expose:t,emit:n}){const r=e,i={modifiers:[{name:"arrowPosition",enabled:!0,phase:"main",fn:({state:Tn})=>{const{modifiersData:Ln,placement:Rn}=Tn;["right","left","bottom","top"].includes(Rn)||(Ln.arrow.x=35)},requires:["arrow"]}]},g=useAttrs$1();let $=0,y=0;const k=useNamespace("cascader"),j=useNamespace("input"),{t:L}=useLocale(),{form:V,formItem:z}=useFormItem(),oe=ref(null),re=ref(null),ie=ref(null),ae=ref(null),le=ref(null),de=ref(!1),pe=ref(!1),he=ref(!1),ue=ref(""),_e=ref(""),Ie=ref([]),Ce=ref([]),Oe=ref([]),$e=ref(!1),qe=computed(()=>g.style),ze=computed(()=>r.disabled||(V==null?void 0:V.disabled)),Ue=computed(()=>r.placeholder||L("el.cascader.placeholder")),kt=computed(()=>_e.value||Ie.value.length>0||$e.value?"":Ue.value),At=useSize(),Pt=computed(()=>["small"].includes(At.value)?"small":"default"),jt=computed(()=>!!r.props.multiple),bn=computed(()=>!r.filterable||jt.value),hn=computed(()=>jt.value?_e.value:ue.value),Dt=computed(()=>{var Tn;return((Tn=ae.value)==null?void 0:Tn.checkedNodes)||[]}),wn=computed(()=>!r.clearable||ze.value||he.value||!pe.value?!1:!!Dt.value.length),_n=computed(()=>{const{showAllLevels:Tn,separator:Ln}=r,Rn=Dt.value;return Rn.length?jt.value?"":Rn[0].calcText(Tn,Ln):""}),vn=computed({get(){return cloneDeep(r.modelValue)},set(Tn){n(UPDATE_MODEL_EVENT,Tn),n(CHANGE_EVENT,Tn),r.validateEvent&&(z==null||z.validate("change").catch(Ln=>void 0))}}),Cn=computed(()=>{var Tn,Ln;return(Ln=(Tn=oe.value)==null?void 0:Tn.popperRef)==null?void 0:Ln.contentRef}),xn=computed(()=>[k.b(),k.m(At.value),k.is("disabled",ze.value),g.class]),En=computed(()=>[j.e("icon"),"icon-arrow-down",k.is("reverse",de.value)]),Sn=Tn=>{var Ln,Rn,Nn;ze.value||(Tn=Tn!=null?Tn:!de.value,Tn!==de.value&&(de.value=Tn,(Rn=(Ln=re.value)==null?void 0:Ln.input)==null||Rn.setAttribute("aria-expanded",`${Tn}`),Tn?(Bn(),nextTick((Nn=ae.value)==null?void 0:Nn.scrollToExpandingNode)):r.filterable&&Hn(),n("visibleChange",Tn)))},Bn=()=>{nextTick(()=>{var Tn;(Tn=oe.value)==null||Tn.updatePopper()})},An=()=>{he.value=!1},Pn=Tn=>{const{showAllLevels:Ln,separator:Rn}=r;return{node:Tn,key:Tn.uid,text:Tn.calcText(Ln,Rn),hitState:!1,closable:!ze.value&&!Tn.isDisabled,isCollapseTag:!1}},Mn=Tn=>{var Ln;const Rn=Tn.node;Rn.doCheck(!1),(Ln=ae.value)==null||Ln.calculateCheckedValue(),n("removeTag",Rn.valueByOption)},Fn=()=>{if(!jt.value)return;const Tn=Dt.value,Ln=[],Rn=[];if(Tn.forEach(Nn=>Rn.push(Pn(Nn))),Ce.value=Rn,Tn.length){const[Nn,...In]=Tn,Gn=In.length;Ln.push(Pn(Nn)),Gn&&(r.collapseTags?Ln.push({key:-1,text:`+ ${Gn}`,closable:!1,isCollapseTag:!0}):In.forEach(Xn=>Ln.push(Pn(Xn))))}Ie.value=Ln},jn=()=>{var Tn,Ln;const{filterMethod:Rn,showAllLevels:Nn,separator:In}=r,Gn=(Ln=(Tn=ae.value)==null?void 0:Tn.getFlattedNodes(!r.props.checkStrictly))==null?void 0:Ln.filter(Xn=>Xn.isDisabled?!1:(Xn.calcText(Nn,In),Rn(Xn,hn.value)));jt.value&&(Ie.value.forEach(Xn=>{Xn.hitState=!1}),Ce.value.forEach(Xn=>{Xn.hitState=!1})),he.value=!0,Oe.value=Gn,Bn()},zn=()=>{var Tn;let Ln;he.value&&le.value?Ln=le.value.$el.querySelector(`.${k.e("suggestion-item")}`):Ln=(Tn=ae.value)==null?void 0:Tn.$el.querySelector(`.${k.b("node")}[tabindex="-1"]`),Ln&&(Ln.focus(),!he.value&&Ln.click())},Jn=()=>{var Tn,Ln;const Rn=(Tn=re.value)==null?void 0:Tn.input,Nn=ie.value,In=(Ln=le.value)==null?void 0:Ln.$el;if(!(!isClient||!Rn)){if(In){const Gn=In.querySelector(`.${k.e("suggestion-list")}`);Gn.style.minWidth=`${Rn.offsetWidth}px`}if(Nn){const{offsetHeight:Gn}=Nn,Xn=Ie.value.length>0?`${Math.max(Gn+6,$)}px`:`${$}px`;Rn.style.height=Xn,Bn()}}},io=Tn=>{var Ln;return(Ln=ae.value)==null?void 0:Ln.getCheckedNodes(Tn)},eo=Tn=>{Bn(),n("expandChange",Tn)},Un=Tn=>{var Ln;const Rn=(Ln=Tn.target)==null?void 0:Ln.value;if(Tn.type==="compositionend")$e.value=!1,nextTick(()=>ho(Rn));else{const Nn=Rn[Rn.length-1]||"";$e.value=!isKorean(Nn)}},Yn=Tn=>{if(!$e.value)switch(Tn.code){case EVENT_CODE.enter:Sn();break;case EVENT_CODE.down:Sn(!0),nextTick(zn),Tn.preventDefault();break;case EVENT_CODE.esc:de.value===!0&&(Tn.preventDefault(),Tn.stopPropagation(),Sn(!1));break;case EVENT_CODE.tab:Sn(!1);break}},to=()=>{var Tn;(Tn=ae.value)==null||Tn.clearCheckedNodes(),!de.value&&r.filterable&&Hn(),Sn(!1)},Hn=()=>{const{value:Tn}=_n;ue.value=Tn,_e.value=Tn},On=Tn=>{var Ln,Rn;const{checked:Nn}=Tn;jt.value?(Ln=ae.value)==null||Ln.handleCheckChange(Tn,!Nn,!1):(!Nn&&((Rn=ae.value)==null||Rn.handleCheckChange(Tn,!0,!1)),Sn(!1))},Wn=Tn=>{const Ln=Tn.target,{code:Rn}=Tn;switch(Rn){case EVENT_CODE.up:case EVENT_CODE.down:{const Nn=Rn===EVENT_CODE.up?-1:1;focusNode(getSibling(Ln,Nn,`.${k.e("suggestion-item")}[tabindex="-1"]`));break}case EVENT_CODE.enter:Ln.click();break}},oo=()=>{const Tn=Ie.value,Ln=Tn[Tn.length-1];y=_e.value?0:y+1,!(!Ln||!y||r.collapseTags&&Tn.length>1)&&(Ln.hitState?Mn(Ln):Ln.hitState=!0)},ro=Tn=>{n("focus",Tn)},Qn=Tn=>{n("blur",Tn)},lo=debounce$1(()=>{const{value:Tn}=hn;if(!Tn)return;const Ln=r.beforeFilter(Tn);isPromise$1(Ln)?Ln.then(jn).catch(()=>{}):Ln!==!1?jn():An()},r.debounce),ho=(Tn,Ln)=>{!de.value&&Sn(!0),!(Ln!=null&&Ln.isComposing)&&(Tn?lo():An())};return watch(he,Bn),watch([Dt,ze],Fn),watch(Ie,()=>{nextTick(()=>Jn())}),watch(_n,Hn,{immediate:!0}),onMounted(()=>{const Tn=re.value.input,Ln=Number.parseFloat(useCssVar(j.cssVarName("input-height"),Tn).value)-2;$=Tn.offsetHeight||Ln,useResizeObserver(Tn,Jn)}),t({getCheckedNodes:io,cascaderPanelRef:Cn}),(Tn,Ln)=>(openBlock(),createBlock(unref(ElTooltip),{ref_key:"tooltipRef",ref:oe,visible:de.value,teleported:Tn.teleported,"popper-class":[unref(k).e("dropdown"),Tn.popperClass],"popper-options":i,"fallback-placements":["bottom-start","bottom","top-start","top","right","left"],"stop-popper-mouse-event":!1,"gpu-acceleration":!1,placement:"bottom-start",transition:`${unref(k).namespace.value}-zoom-in-top`,effect:"light",pure:"",persistent:"",onHide:An},{default:withCtx(()=>[withDirectives((openBlock(),createElementBlock("div",{class:normalizeClass(unref(xn)),style:normalizeStyle(unref(qe)),onClick:Ln[5]||(Ln[5]=()=>Sn(unref(bn)?void 0:!0)),onKeydown:Yn,onMouseenter:Ln[6]||(Ln[6]=Rn=>pe.value=!0),onMouseleave:Ln[7]||(Ln[7]=Rn=>pe.value=!1)},[createVNode(unref(ElInput),{ref_key:"input",ref:re,modelValue:ue.value,"onUpdate:modelValue":Ln[1]||(Ln[1]=Rn=>ue.value=Rn),placeholder:unref(kt),readonly:unref(bn),disabled:unref(ze),"validate-event":!1,size:unref(At),class:normalizeClass(unref(k).is("focus",de.value)),onCompositionstart:Un,onCompositionupdate:Un,onCompositionend:Un,onFocus:ro,onBlur:Qn,onInput:ho},{suffix:withCtx(()=>[unref(wn)?(openBlock(),createBlock(unref(ElIcon),{key:"clear",class:normalizeClass([unref(j).e("icon"),"icon-circle-close"]),onClick:withModifiers(to,["stop"])},{default:withCtx(()=>[createVNode(unref(circle_close_default))]),_:1},8,["class","onClick"])):(openBlock(),createBlock(unref(ElIcon),{key:"arrow-down",class:normalizeClass(unref(En)),onClick:Ln[0]||(Ln[0]=withModifiers(Rn=>Sn(),["stop"]))},{default:withCtx(()=>[createVNode(unref(arrow_down_default))]),_:1},8,["class"]))]),_:1},8,["modelValue","placeholder","readonly","disabled","size","class"]),unref(jt)?(openBlock(),createElementBlock("div",{key:0,ref_key:"tagWrapper",ref:ie,class:normalizeClass(unref(k).e("tags"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(Ie.value,Rn=>(openBlock(),createBlock(unref(ElTag),{key:Rn.key,type:Tn.tagType,size:unref(Pt),hit:Rn.hitState,closable:Rn.closable,"disable-transitions":"",onClose:Nn=>Mn(Rn)},{default:withCtx(()=>[Rn.isCollapseTag===!1?(openBlock(),createElementBlock("span",_hoisted_1$R,toDisplayString$1(Rn.text),1)):(openBlock(),createBlock(unref(ElTooltip),{key:1,disabled:de.value||!Tn.collapseTagsTooltip,"fallback-placements":["bottom","top","right","left"],placement:"bottom",effect:"light"},{default:withCtx(()=>[createBaseVNode("span",null,toDisplayString$1(Rn.text),1)]),content:withCtx(()=>[createBaseVNode("div",{class:normalizeClass(unref(k).e("collapse-tags"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(Ce.value.slice(1),(Nn,In)=>(openBlock(),createElementBlock("div",{key:In,class:normalizeClass(unref(k).e("collapse-tag"))},[(openBlock(),createBlock(unref(ElTag),{key:Nn.key,class:"in-tooltip",type:Tn.tagType,size:unref(Pt),hit:Nn.hitState,closable:Nn.closable,"disable-transitions":"",onClose:Gn=>Mn(Nn)},{default:withCtx(()=>[createBaseVNode("span",null,toDisplayString$1(Nn.text),1)]),_:2},1032,["type","size","hit","closable","onClose"]))],2))),128))],2)]),_:2},1032,["disabled"]))]),_:2},1032,["type","size","hit","closable","onClose"]))),128)),Tn.filterable&&!unref(ze)?withDirectives((openBlock(),createElementBlock("input",{key:0,"onUpdate:modelValue":Ln[2]||(Ln[2]=Rn=>_e.value=Rn),type:"text",class:normalizeClass(unref(k).e("search-input")),placeholder:unref(_n)?"":unref(Ue),onInput:Ln[3]||(Ln[3]=Rn=>ho(_e.value,Rn)),onClick:Ln[4]||(Ln[4]=withModifiers(Rn=>Sn(!0),["stop"])),onKeydown:withKeys(oo,["delete"]),onCompositionstart:Un,onCompositionupdate:Un,onCompositionend:Un},null,42,_hoisted_2$z)),[[vModelText,_e.value]]):createCommentVNode("v-if",!0)],2)):createCommentVNode("v-if",!0)],38)),[[unref(ClickOutside),()=>Sn(!1),unref(Cn)]])]),content:withCtx(()=>[withDirectives(createVNode(unref(_CascaderPanel),{ref_key:"panel",ref:ae,modelValue:unref(vn),"onUpdate:modelValue":Ln[8]||(Ln[8]=Rn=>isRef(vn)?vn.value=Rn:null),options:Tn.options,props:r.props,border:!1,"render-label":Tn.$slots.default,onExpandChange:eo,onClose:Ln[9]||(Ln[9]=Rn=>Tn.$nextTick(()=>Sn(!1)))},null,8,["modelValue","options","props","render-label"]),[[vShow,!he.value]]),Tn.filterable?withDirectives((openBlock(),createBlock(unref(ElScrollbar),{key:0,ref_key:"suggestionPanel",ref:le,tag:"ul",class:normalizeClass(unref(k).e("suggestion-panel")),"view-class":unref(k).e("suggestion-list"),onKeydown:Wn},{default:withCtx(()=>[Oe.value.length?(openBlock(!0),createElementBlock(Fragment,{key:0},renderList(Oe.value,Rn=>(openBlock(),createElementBlock("li",{key:Rn.uid,class:normalizeClass([unref(k).e("suggestion-item"),unref(k).is("checked",Rn.checked)]),tabindex:-1,onClick:Nn=>On(Rn)},[createBaseVNode("span",null,toDisplayString$1(Rn.text),1),Rn.checked?(openBlock(),createBlock(unref(ElIcon),{key:0},{default:withCtx(()=>[createVNode(unref(check_default))]),_:1})):createCommentVNode("v-if",!0)],10,_hoisted_3$j))),128)):renderSlot(Tn.$slots,"empty",{key:1},()=>[createBaseVNode("li",{class:normalizeClass(unref(k).e("empty-text"))},toDisplayString$1(unref(L)("el.cascader.noMatch")),3)])]),_:3},8,["class","view-class"])),[[vShow,he.value]]):createCommentVNode("v-if",!0)]),_:3},8,["visible","teleported","popper-class","transition"]))}});var Cascader=_export_sfc$1(_sfc_main$1J,[["__file","/home/runner/work/element-plus/element-plus/packages/components/cascader/src/cascader.vue"]]);Cascader.install=e=>{e.component(Cascader.name,Cascader)};const _Cascader=Cascader,ElCascader=_Cascader,checkTagProps=buildProps({checked:{type:Boolean,default:!1}}),checkTagEmits={"update:checked":e=>isBoolean$1(e),[CHANGE_EVENT]:e=>isBoolean$1(e)},__default__$11=defineComponent({name:"ElCheckTag"}),_sfc_main$1I=defineComponent({...__default__$11,props:checkTagProps,emits:checkTagEmits,setup(e,{emit:t}){const n=e,r=useNamespace("check-tag"),i=()=>{const g=!n.checked;t(CHANGE_EVENT,g),t("update:checked",g)};return(g,$)=>(openBlock(),createElementBlock("span",{class:normalizeClass([unref(r).b(),unref(r).is("checked",g.checked)]),onClick:i},[renderSlot(g.$slots,"default")],2))}});var CheckTag=_export_sfc$1(_sfc_main$1I,[["__file","/home/runner/work/element-plus/element-plus/packages/components/check-tag/src/check-tag.vue"]]);const ElCheckTag=withInstall(CheckTag),colProps=buildProps({tag:{type:String,default:"div"},span:{type:Number,default:24},offset:{type:Number,default:0},pull:{type:Number,default:0},push:{type:Number,default:0},xs:{type:definePropType([Number,Object]),default:()=>mutable({})},sm:{type:definePropType([Number,Object]),default:()=>mutable({})},md:{type:definePropType([Number,Object]),default:()=>mutable({})},lg:{type:definePropType([Number,Object]),default:()=>mutable({})},xl:{type:definePropType([Number,Object]),default:()=>mutable({})}}),__default__$10=defineComponent({name:"ElCol"}),_sfc_main$1H=defineComponent({...__default__$10,props:colProps,setup(e){const t=e,{gutter:n}=inject(rowContextKey,{gutter:computed(()=>0)}),r=useNamespace("col"),i=computed(()=>{const $={};return n.value&&($.paddingLeft=$.paddingRight=`${n.value/2}px`),$}),g=computed(()=>{const $=[];return["span","offset","pull","push"].forEach(j=>{const L=t[j];isNumber$1(L)&&(j==="span"?$.push(r.b(`${t[j]}`)):L>0&&$.push(r.b(`${j}-${t[j]}`)))}),["xs","sm","md","lg","xl"].forEach(j=>{isNumber$1(t[j])?$.push(r.b(`${j}-${t[j]}`)):isObject$4(t[j])&&Object.entries(t[j]).forEach(([L,V])=>{$.push(L!=="span"?r.b(`${j}-${L}-${V}`):r.b(`${j}-${V}`))})}),n.value&&$.push(r.is("guttered")),[r.b(),$]});return($,y)=>(openBlock(),createBlock(resolveDynamicComponent($.tag),{class:normalizeClass(unref(g)),style:normalizeStyle(unref(i))},{default:withCtx(()=>[renderSlot($.$slots,"default")]),_:3},8,["class","style"]))}});var Col=_export_sfc$1(_sfc_main$1H,[["__file","/home/runner/work/element-plus/element-plus/packages/components/col/src/col.vue"]]);const ElCol=withInstall(Col),emitChangeFn=e=>typeof isNumber$1(e),collapseProps=buildProps({accordion:Boolean,modelValue:{type:definePropType([Array,String,Number]),default:()=>mutable([])}}),collapseEmits={[UPDATE_MODEL_EVENT]:emitChangeFn,[CHANGE_EVENT]:emitChangeFn},useCollapse=(e,t)=>{const n=ref(castArray$1(e.modelValue)),r=g=>{n.value=g;const $=e.accordion?n.value[0]:n.value;t(UPDATE_MODEL_EVENT,$),t(CHANGE_EVENT,$)},i=g=>{if(e.accordion)r([n.value[0]===g?"":g]);else{const $=[...n.value],y=$.indexOf(g);y>-1?$.splice(y,1):$.push(g),r($)}};return watch(()=>e.modelValue,()=>n.value=castArray$1(e.modelValue),{deep:!0}),provide(collapseContextKey,{activeNames:n,handleItemClick:i}),{activeNames:n,setActiveNames:r}},useCollapseDOM=()=>{const e=useNamespace("collapse");return{rootKls:computed(()=>e.b())}},__default__$$=defineComponent({name:"ElCollapse"}),_sfc_main$1G=defineComponent({...__default__$$,props:collapseProps,emits:collapseEmits,setup(e,{expose:t,emit:n}){const r=e,{activeNames:i,setActiveNames:g}=useCollapse(r,n),{rootKls:$}=useCollapseDOM();return t({activeNames:i,setActiveNames:g}),(y,k)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref($)),role:"tablist","aria-multiselectable":"true"},[renderSlot(y.$slots,"default")],2))}});var Collapse=_export_sfc$1(_sfc_main$1G,[["__file","/home/runner/work/element-plus/element-plus/packages/components/collapse/src/collapse.vue"]]);const __default__$_=defineComponent({name:"ElCollapseTransition"}),_sfc_main$1F=defineComponent({...__default__$_,setup(e){const t=useNamespace("collapse-transition"),n={beforeEnter(r){r.dataset||(r.dataset={}),r.dataset.oldPaddingTop=r.style.paddingTop,r.dataset.oldPaddingBottom=r.style.paddingBottom,r.style.maxHeight=0,r.style.paddingTop=0,r.style.paddingBottom=0},enter(r){r.dataset.oldOverflow=r.style.overflow,r.scrollHeight!==0?(r.style.maxHeight=`${r.scrollHeight}px`,r.style.paddingTop=r.dataset.oldPaddingTop,r.style.paddingBottom=r.dataset.oldPaddingBottom):(r.style.maxHeight=0,r.style.paddingTop=r.dataset.oldPaddingTop,r.style.paddingBottom=r.dataset.oldPaddingBottom),r.style.overflow="hidden"},afterEnter(r){r.style.maxHeight="",r.style.overflow=r.dataset.oldOverflow},beforeLeave(r){r.dataset||(r.dataset={}),r.dataset.oldPaddingTop=r.style.paddingTop,r.dataset.oldPaddingBottom=r.style.paddingBottom,r.dataset.oldOverflow=r.style.overflow,r.style.maxHeight=`${r.scrollHeight}px`,r.style.overflow="hidden"},leave(r){r.scrollHeight!==0&&(r.style.maxHeight=0,r.style.paddingTop=0,r.style.paddingBottom=0)},afterLeave(r){r.style.maxHeight="",r.style.overflow=r.dataset.oldOverflow,r.style.paddingTop=r.dataset.oldPaddingTop,r.style.paddingBottom=r.dataset.oldPaddingBottom}};return(r,i)=>(openBlock(),createBlock(Transition,mergeProps({name:unref(t).b()},toHandlers(n)),{default:withCtx(()=>[renderSlot(r.$slots,"default")]),_:3},16,["name"]))}});var CollapseTransition=_export_sfc$1(_sfc_main$1F,[["__file","/home/runner/work/element-plus/element-plus/packages/components/collapse-transition/src/collapse-transition.vue"]]);CollapseTransition.install=e=>{e.component(CollapseTransition.name,CollapseTransition)};const _CollapseTransition=CollapseTransition,ElCollapseTransition=_CollapseTransition,collapseItemProps=buildProps({title:{type:String,default:""},name:{type:definePropType([String,Number]),default:()=>generateId()},disabled:Boolean}),useCollapseItem=e=>{const t=inject(collapseContextKey),n=ref(!1),r=ref(!1),i=ref(generateId()),g=computed(()=>t==null?void 0:t.activeNames.value.includes(e.name));return{focusing:n,id:i,isActive:g,handleFocus:()=>{setTimeout(()=>{r.value?r.value=!1:n.value=!0},50)},handleHeaderClick:()=>{e.disabled||(t==null||t.handleItemClick(e.name),n.value=!1,r.value=!0)},handleEnterClick:()=>{t==null||t.handleItemClick(e.name)}}},useCollapseItemDOM=(e,{focusing:t,isActive:n,id:r})=>{const i=useNamespace("collapse"),g=computed(()=>[i.b("item"),i.is("active",unref(n)),i.is("disabled",e.disabled)]),$=computed(()=>[i.be("item","header"),i.is("active",unref(n)),{focusing:unref(t)&&!e.disabled}]),y=computed(()=>[i.be("item","arrow"),i.is("active",unref(n))]),k=computed(()=>i.be("item","wrap")),j=computed(()=>i.be("item","content")),L=computed(()=>i.b(`content-${unref(r)}`)),V=computed(()=>i.b(`head-${unref(r)}`));return{arrowKls:y,headKls:$,rootKls:g,itemWrapperKls:k,itemContentKls:j,scopedContentId:L,scopedHeadId:V}},_hoisted_1$Q=["aria-expanded","aria-controls","aria-describedby"],_hoisted_2$y=["id","tabindex"],_hoisted_3$i=["id","aria-hidden","aria-labelledby"],__default__$Z=defineComponent({name:"ElCollapseItem"}),_sfc_main$1E=defineComponent({...__default__$Z,props:collapseItemProps,setup(e,{expose:t}){const n=e,{focusing:r,id:i,isActive:g,handleFocus:$,handleHeaderClick:y,handleEnterClick:k}=useCollapseItem(n),{arrowKls:j,headKls:L,rootKls:V,itemWrapperKls:z,itemContentKls:oe,scopedContentId:re,scopedHeadId:ie}=useCollapseItemDOM(n,{focusing:r,isActive:g,id:i});return t({isActive:g}),(ae,le)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref(V))},[createBaseVNode("div",{role:"tab","aria-expanded":unref(g),"aria-controls":unref(re),"aria-describedby":unref(re)},[createBaseVNode("div",{id:unref(ie),class:normalizeClass(unref(L)),role:"button",tabindex:ae.disabled?-1:0,onClick:le[0]||(le[0]=(...de)=>unref(y)&&unref(y)(...de)),onKeypress:le[1]||(le[1]=withKeys(withModifiers((...de)=>unref(k)&&unref(k)(...de),["stop","prevent"]),["space","enter"])),onFocus:le[2]||(le[2]=(...de)=>unref($)&&unref($)(...de)),onBlur:le[3]||(le[3]=de=>r.value=!1)},[renderSlot(ae.$slots,"title",{},()=>[createTextVNode(toDisplayString$1(ae.title),1)]),createVNode(unref(ElIcon),{class:normalizeClass(unref(j))},{default:withCtx(()=>[createVNode(unref(arrow_right_default))]),_:1},8,["class"])],42,_hoisted_2$y)],8,_hoisted_1$Q),createVNode(unref(_CollapseTransition),null,{default:withCtx(()=>[withDirectives(createBaseVNode("div",{id:unref(re),class:normalizeClass(unref(z)),role:"tabpanel","aria-hidden":!unref(g),"aria-labelledby":unref(ie)},[createBaseVNode("div",{class:normalizeClass(unref(oe))},[renderSlot(ae.$slots,"default")],2)],10,_hoisted_3$i),[[vShow,unref(g)]])]),_:3})],2))}});var CollapseItem=_export_sfc$1(_sfc_main$1E,[["__file","/home/runner/work/element-plus/element-plus/packages/components/collapse/src/collapse-item.vue"]]);const ElCollapse=withInstall(Collapse,{CollapseItem}),ElCollapseItem=withNoopInstall(CollapseItem);let isDragging=!1;function draggable(e,t){if(!isClient)return;const n=function(g){var $;($=t.drag)==null||$.call(t,g)},r=function(g){var $;document.removeEventListener("mousemove",n),document.removeEventListener("mouseup",r),document.removeEventListener("touchmove",n),document.removeEventListener("touchend",r),document.onselectstart=null,document.ondragstart=null,isDragging=!1,($=t.end)==null||$.call(t,g)},i=function(g){var $;isDragging||(g.preventDefault(),document.onselectstart=()=>!1,document.ondragstart=()=>!1,document.addEventListener("mousemove",n),document.addEventListener("mouseup",r),document.addEventListener("touchmove",n),document.addEventListener("touchend",r),isDragging=!0,($=t.start)==null||$.call(t,g))};e.addEventListener("mousedown",i),e.addEventListener("touchstart",i)}const _sfc_main$1D=defineComponent({name:"ElColorAlphaSlider",props:{color:{type:Object,required:!0},vertical:{type:Boolean,default:!1}},setup(e){const t=useNamespace("color-alpha-slider"),n=getCurrentInstance(),r=shallowRef(),i=shallowRef(),g=ref(0),$=ref(0),y=ref();watch(()=>e.color.get("alpha"),()=>{oe()}),watch(()=>e.color.value,()=>{oe()});function k(){if(!r.value||e.vertical)return 0;const re=n.vnode.el,ie=e.color.get("alpha");return re?Math.round(ie*(re.offsetWidth-r.value.offsetWidth/2)/100):0}function j(){if(!r.value)return 0;const re=n.vnode.el;if(!e.vertical)return 0;const ie=e.color.get("alpha");return re?Math.round(ie*(re.offsetHeight-r.value.offsetHeight/2)/100):0}function L(){if(e.color&&e.color.value){const{r:re,g:ie,b:ae}=e.color.toRgb();return`linear-gradient(to right, rgba(${re}, ${ie}, ${ae}, 0) 0%, rgba(${re}, ${ie}, ${ae}, 1) 100%)`}return""}function V(re){re.target!==r.value&&z(re)}function z(re){if(!i.value||!r.value)return;const ae=n.vnode.el.getBoundingClientRect(),{clientX:le,clientY:de}=getClientXY(re);if(e.vertical){let pe=de-ae.top;pe=Math.max(r.value.offsetHeight/2,pe),pe=Math.min(pe,ae.height-r.value.offsetHeight/2),e.color.set("alpha",Math.round((pe-r.value.offsetHeight/2)/(ae.height-r.value.offsetHeight)*100))}else{let pe=le-ae.left;pe=Math.max(r.value.offsetWidth/2,pe),pe=Math.min(pe,ae.width-r.value.offsetWidth/2),e.color.set("alpha",Math.round((pe-r.value.offsetWidth/2)/(ae.width-r.value.offsetWidth)*100))}}function oe(){g.value=k(),$.value=j(),y.value=L()}return onMounted(()=>{if(!i.value||!r.value)return;const re={drag:ie=>{z(ie)},end:ie=>{z(ie)}};draggable(i.value,re),draggable(r.value,re),oe()}),{thumb:r,bar:i,thumbLeft:g,thumbTop:$,background:y,handleClick:V,update:oe,ns:t}}});function _sfc_render$y(e,t,n,r,i,g){return openBlock(),createElementBlock("div",{class:normalizeClass([e.ns.b(),e.ns.is("vertical",e.vertical)])},[createBaseVNode("div",{ref:"bar",class:normalizeClass(e.ns.e("bar")),style:normalizeStyle({background:e.background}),onClick:t[0]||(t[0]=(...$)=>e.handleClick&&e.handleClick(...$))},null,6),createBaseVNode("div",{ref:"thumb",class:normalizeClass(e.ns.e("thumb")),style:normalizeStyle({left:e.thumbLeft+"px",top:e.thumbTop+"px"})},null,6)],2)}var AlphaSlider=_export_sfc$1(_sfc_main$1D,[["render",_sfc_render$y],["__file","/home/runner/work/element-plus/element-plus/packages/components/color-picker/src/components/alpha-slider.vue"]]);const _sfc_main$1C=defineComponent({name:"ElColorHueSlider",props:{color:{type:Object,required:!0},vertical:Boolean},setup(e){const t=useNamespace("color-hue-slider"),n=getCurrentInstance(),r=ref(),i=ref(),g=ref(0),$=ref(0),y=computed(()=>e.color.get("hue"));watch(()=>y.value,()=>{z()});function k(oe){oe.target!==r.value&&j(oe)}function j(oe){if(!i.value||!r.value)return;const ie=n.vnode.el.getBoundingClientRect(),{clientX:ae,clientY:le}=getClientXY(oe);let de;if(e.vertical){let pe=le-ie.top;pe=Math.min(pe,ie.height-r.value.offsetHeight/2),pe=Math.max(r.value.offsetHeight/2,pe),de=Math.round((pe-r.value.offsetHeight/2)/(ie.height-r.value.offsetHeight)*360)}else{let pe=ae-ie.left;pe=Math.min(pe,ie.width-r.value.offsetWidth/2),pe=Math.max(r.value.offsetWidth/2,pe),de=Math.round((pe-r.value.offsetWidth/2)/(ie.width-r.value.offsetWidth)*360)}e.color.set("hue",de)}function L(){if(!r.value)return 0;const oe=n.vnode.el;if(e.vertical)return 0;const re=e.color.get("hue");return oe?Math.round(re*(oe.offsetWidth-r.value.offsetWidth/2)/360):0}function V(){if(!r.value)return 0;const oe=n.vnode.el;if(!e.vertical)return 0;const re=e.color.get("hue");return oe?Math.round(re*(oe.offsetHeight-r.value.offsetHeight/2)/360):0}function z(){g.value=L(),$.value=V()}return onMounted(()=>{if(!i.value||!r.value)return;const oe={drag:re=>{j(re)},end:re=>{j(re)}};draggable(i.value,oe),draggable(r.value,oe),z()}),{bar:i,thumb:r,thumbLeft:g,thumbTop:$,hueValue:y,handleClick:k,update:z,ns:t}}});function _sfc_render$x(e,t,n,r,i,g){return openBlock(),createElementBlock("div",{class:normalizeClass([e.ns.b(),e.ns.is("vertical",e.vertical)])},[createBaseVNode("div",{ref:"bar",class:normalizeClass(e.ns.e("bar")),onClick:t[0]||(t[0]=(...$)=>e.handleClick&&e.handleClick(...$))},null,2),createBaseVNode("div",{ref:"thumb",class:normalizeClass(e.ns.e("thumb")),style:normalizeStyle({left:e.thumbLeft+"px",top:e.thumbTop+"px"})},null,6)],2)}var HueSlider=_export_sfc$1(_sfc_main$1C,[["render",_sfc_render$x],["__file","/home/runner/work/element-plus/element-plus/packages/components/color-picker/src/components/hue-slider.vue"]]);const colorPickerProps=buildProps({modelValue:String,id:String,showAlpha:Boolean,colorFormat:String,disabled:Boolean,size:useSizeProp,popperClass:{type:String,default:""},label:{type:String,default:void 0},tabindex:{type:[String,Number],default:0},predefine:{type:definePropType(Array)},validateEvent:{type:Boolean,default:!0}}),colorPickerEmits={[UPDATE_MODEL_EVENT]:e=>isString$3(e)||isNil(e),[CHANGE_EVENT]:e=>isString$3(e)||isNil(e),activeChange:e=>isString$3(e)||isNil(e)},colorPickerContextKey=Symbol("colorPickerContextKey"),hsv2hsl=function(e,t,n){return[e,t*n/((e=(2-t)*n)<1?e:2-e)||0,e/2]},isOnePointZero=function(e){return typeof e=="string"&&e.includes(".")&&Number.parseFloat(e)===1},isPercentage=function(e){return typeof e=="string"&&e.includes("%")},bound01=function(e,t){isOnePointZero(e)&&(e="100%");const n=isPercentage(e);return e=Math.min(t,Math.max(0,Number.parseFloat(`${e}`))),n&&(e=Number.parseInt(`${e*t}`,10)/100),Math.abs(e-t)<1e-6?1:e%t/Number.parseFloat(t)},INT_HEX_MAP={10:"A",11:"B",12:"C",13:"D",14:"E",15:"F"},hexOne=e=>{e=Math.min(Math.round(e),255);const t=Math.floor(e/16),n=e%16;return`${INT_HEX_MAP[t]||t}${INT_HEX_MAP[n]||n}`},toHex=function({r:e,g:t,b:n}){return Number.isNaN(+e)||Number.isNaN(+t)||Number.isNaN(+n)?"":`#${hexOne(e)}${hexOne(t)}${hexOne(n)}`},HEX_INT_MAP={A:10,B:11,C:12,D:13,E:14,F:15},parseHexChannel=function(e){return e.length===2?(HEX_INT_MAP[e[0].toUpperCase()]||+e[0])*16+(HEX_INT_MAP[e[1].toUpperCase()]||+e[1]):HEX_INT_MAP[e[1].toUpperCase()]||+e[1]},hsl2hsv=function(e,t,n){t=t/100,n=n/100;let r=t;const i=Math.max(n,.01);n*=2,t*=n<=1?n:2-n,r*=i<=1?i:2-i;const g=(n+t)/2,$=n===0?2*r/(i+r):2*t/(n+t);return{h:e,s:$*100,v:g*100}},rgb2hsv=(e,t,n)=>{e=bound01(e,255),t=bound01(t,255),n=bound01(n,255);const r=Math.max(e,t,n),i=Math.min(e,t,n);let g;const $=r,y=r-i,k=r===0?0:y/r;if(r===i)g=0;else{switch(r){case e:{g=(t-n)/y+(t{this._hue=Math.max(0,Math.min(360,r)),this._saturation=Math.max(0,Math.min(100,i)),this._value=Math.max(0,Math.min(100,g)),this.doOnChange()};if(t.includes("hsl")){const r=t.replace(/hsla|hsl|\(|\)/gm,"").split(/\s|,/g).filter(i=>i!=="").map((i,g)=>g>2?Number.parseFloat(i):Number.parseInt(i,10));if(r.length===4?this._alpha=Number.parseFloat(r[3])*100:r.length===3&&(this._alpha=100),r.length>=3){const{h:i,s:g,v:$}=hsl2hsv(r[0],r[1],r[2]);n(i,g,$)}}else if(t.includes("hsv")){const r=t.replace(/hsva|hsv|\(|\)/gm,"").split(/\s|,/g).filter(i=>i!=="").map((i,g)=>g>2?Number.parseFloat(i):Number.parseInt(i,10));r.length===4?this._alpha=Number.parseFloat(r[3])*100:r.length===3&&(this._alpha=100),r.length>=3&&n(r[0],r[1],r[2])}else if(t.includes("rgb")){const r=t.replace(/rgba|rgb|\(|\)/gm,"").split(/\s|,/g).filter(i=>i!=="").map((i,g)=>g>2?Number.parseFloat(i):Number.parseInt(i,10));if(r.length===4?this._alpha=Number.parseFloat(r[3])*100:r.length===3&&(this._alpha=100),r.length>=3){const{h:i,s:g,v:$}=rgb2hsv(r[0],r[1],r[2]);n(i,g,$)}}else if(t.includes("#")){const r=t.replace("#","").trim();if(!/^[0-9a-fA-F]{3}$|^[0-9a-fA-F]{6}$|^[0-9a-fA-F]{8}$/.test(r))return;let i,g,$;r.length===3?(i=parseHexChannel(r[0]+r[0]),g=parseHexChannel(r[1]+r[1]),$=parseHexChannel(r[2]+r[2])):(r.length===6||r.length===8)&&(i=parseHexChannel(r.slice(0,2)),g=parseHexChannel(r.slice(2,4)),$=parseHexChannel(r.slice(4,6))),r.length===8?this._alpha=parseHexChannel(r.slice(6))/255*100:(r.length===3||r.length===6)&&(this._alpha=100);const{h:y,s:k,v:j}=rgb2hsv(i,g,$);n(y,k,j)}}compare(t){return Math.abs(t._hue-this._hue)<2&&Math.abs(t._saturation-this._saturation)<1&&Math.abs(t._value-this._value)<1&&Math.abs(t._alpha-this._alpha)<1}doOnChange(){const{_hue:t,_saturation:n,_value:r,_alpha:i,format:g}=this;if(this.enableAlpha)switch(g){case"hsl":{const $=hsv2hsl(t,n/100,r/100);this.value=`hsla(${t}, ${Math.round($[1]*100)}%, ${Math.round($[2]*100)}%, ${this.get("alpha")/100})`;break}case"hsv":{this.value=`hsva(${t}, ${Math.round(n)}%, ${Math.round(r)}%, ${this.get("alpha")/100})`;break}case"hex":{this.value=`${toHex(hsv2rgb(t,n,r))}${hexOne(i*255/100)}`;break}default:{const{r:$,g:y,b:k}=hsv2rgb(t,n,r);this.value=`rgba(${$}, ${y}, ${k}, ${this.get("alpha")/100})`}}else switch(g){case"hsl":{const $=hsv2hsl(t,n/100,r/100);this.value=`hsl(${t}, ${Math.round($[1]*100)}%, ${Math.round($[2]*100)}%)`;break}case"hsv":{this.value=`hsv(${t}, ${Math.round(n)}%, ${Math.round(r)}%)`;break}case"rgb":{const{r:$,g:y,b:k}=hsv2rgb(t,n,r);this.value=`rgb(${$}, ${y}, ${k})`;break}default:this.value=toHex(hsv2rgb(t,n,r))}}}const _sfc_main$1B=defineComponent({props:{colors:{type:Array,required:!0},color:{type:Object,required:!0}},setup(e){const t=useNamespace("color-predefine"),{currentColor:n}=inject(colorPickerContextKey),r=ref(g(e.colors,e.color));watch(()=>n.value,$=>{const y=new Color;y.fromString($),r.value.forEach(k=>{k.selected=y.compare(k)})}),watchEffect(()=>{r.value=g(e.colors,e.color)});function i($){e.color.fromString(e.colors[$])}function g($,y){return $.map(k=>{const j=new Color;return j.enableAlpha=!0,j.format="rgba",j.fromString(k),j.selected=j.value===y.value,j})}return{rgbaColors:r,handleSelect:i,ns:t}}}),_hoisted_1$P=["onClick"];function _sfc_render$w(e,t,n,r,i,g){return openBlock(),createElementBlock("div",{class:normalizeClass(e.ns.b())},[createBaseVNode("div",{class:normalizeClass(e.ns.e("colors"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.rgbaColors,($,y)=>(openBlock(),createElementBlock("div",{key:e.colors[y],class:normalizeClass([e.ns.e("color-selector"),e.ns.is("alpha",$._alpha<100),{selected:$.selected}]),onClick:k=>e.handleSelect(y)},[createBaseVNode("div",{style:normalizeStyle({backgroundColor:$.value})},null,4)],10,_hoisted_1$P))),128))],2)],2)}var Predefine=_export_sfc$1(_sfc_main$1B,[["render",_sfc_render$w],["__file","/home/runner/work/element-plus/element-plus/packages/components/color-picker/src/components/predefine.vue"]]);const _sfc_main$1A=defineComponent({name:"ElSlPanel",props:{color:{type:Object,required:!0}},setup(e){const t=useNamespace("color-svpanel"),n=getCurrentInstance(),r=ref(0),i=ref(0),g=ref("hsl(0, 100%, 50%)"),$=computed(()=>{const j=e.color.get("hue"),L=e.color.get("value");return{hue:j,value:L}});function y(){const j=e.color.get("saturation"),L=e.color.get("value"),V=n.vnode.el,{clientWidth:z,clientHeight:oe}=V;i.value=j*z/100,r.value=(100-L)*oe/100,g.value=`hsl(${e.color.get("hue")}, 100%, 50%)`}function k(j){const V=n.vnode.el.getBoundingClientRect(),{clientX:z,clientY:oe}=getClientXY(j);let re=z-V.left,ie=oe-V.top;re=Math.max(0,re),re=Math.min(re,V.width),ie=Math.max(0,ie),ie=Math.min(ie,V.height),i.value=re,r.value=ie,e.color.set({saturation:re/V.width*100,value:100-ie/V.height*100})}return watch(()=>$.value,()=>{y()}),onMounted(()=>{draggable(n.vnode.el,{drag:j=>{k(j)},end:j=>{k(j)}}),y()}),{cursorTop:r,cursorLeft:i,background:g,colorValue:$,handleDrag:k,update:y,ns:t}}}),_hoisted_1$O=createBaseVNode("div",null,null,-1),_hoisted_2$x=[_hoisted_1$O];function _sfc_render$v(e,t,n,r,i,g){return openBlock(),createElementBlock("div",{class:normalizeClass(e.ns.b()),style:normalizeStyle({backgroundColor:e.background})},[createBaseVNode("div",{class:normalizeClass(e.ns.e("white"))},null,2),createBaseVNode("div",{class:normalizeClass(e.ns.e("black"))},null,2),createBaseVNode("div",{class:normalizeClass(e.ns.e("cursor")),style:normalizeStyle({top:e.cursorTop+"px",left:e.cursorLeft+"px"})},_hoisted_2$x,6)],6)}var SvPanel=_export_sfc$1(_sfc_main$1A,[["render",_sfc_render$v],["__file","/home/runner/work/element-plus/element-plus/packages/components/color-picker/src/components/sv-panel.vue"]]);const _hoisted_1$N=["id","aria-label","aria-labelledby","aria-description","tabindex","onKeydown"],__default__$Y=defineComponent({name:"ElColorPicker"}),_sfc_main$1z=defineComponent({...__default__$Y,props:colorPickerProps,emits:colorPickerEmits,setup(e,{expose:t,emit:n}){const r=e,{t:i}=useLocale(),g=useNamespace("color"),{formItem:$}=useFormItem(),y=useSize(),k=useDisabled(),{inputId:j,isLabeledByFormItem:L}=useFormItemInputId(r,{formItemContext:$}),V=ref(),z=ref(),oe=ref(),re=ref();let ie=!0;const ae=reactive(new Color({enableAlpha:r.showAlpha,format:r.colorFormat||"",value:r.modelValue})),le=ref(!1),de=ref(!1),pe=ref(""),he=computed(()=>!r.modelValue&&!de.value?"transparent":Oe(ae,r.showAlpha)),ue=computed(()=>!r.modelValue&&!de.value?"":ae.value),_e=computed(()=>L.value?void 0:r.label||i("el.colorpicker.defaultLabel")),Ie=computed(()=>L.value?$==null?void 0:$.labelId:void 0),Ce=computed(()=>[g.b("picker"),g.is("disabled",k.value),g.bm("picker",y.value)]);function Oe(bn,hn){if(!(bn instanceof Color))throw new TypeError("color should be instance of _color Class");const{r:Dt,g:wn,b:_n}=bn.toRgb();return hn?`rgba(${Dt}, ${wn}, ${_n}, ${bn.get("alpha")/100})`:`rgb(${Dt}, ${wn}, ${_n})`}function $e(bn){le.value=bn}const qe=debounce$1($e,100);function ze(){qe(!1),Ue()}function Ue(){nextTick(()=>{r.modelValue?ae.fromString(r.modelValue):(ae.value="",nextTick(()=>{de.value=!1}))})}function kt(){k.value||qe(!le.value)}function At(){ae.fromString(pe.value)}function Pt(){const bn=ae.value;n(UPDATE_MODEL_EVENT,bn),n("change",bn),r.validateEvent&&($==null||$.validate("change").catch(hn=>void 0)),qe(!1),nextTick(()=>{const hn=new Color({enableAlpha:r.showAlpha,format:r.colorFormat||"",value:r.modelValue});ae.compare(hn)||Ue()})}function jt(){qe(!1),n(UPDATE_MODEL_EVENT,null),n("change",null),r.modelValue!==null&&r.validateEvent&&($==null||$.validate("change").catch(bn=>void 0)),Ue()}return onMounted(()=>{r.modelValue&&(pe.value=ue.value)}),watch(()=>r.modelValue,bn=>{bn?bn&&bn!==ae.value&&(ie=!1,ae.fromString(bn)):de.value=!1}),watch(()=>ue.value,bn=>{pe.value=bn,ie&&n("activeChange",bn),ie=!0}),watch(()=>ae.value,()=>{!r.modelValue&&!de.value&&(de.value=!0)}),watch(()=>le.value,()=>{nextTick(()=>{var bn,hn,Dt;(bn=V.value)==null||bn.update(),(hn=z.value)==null||hn.update(),(Dt=oe.value)==null||Dt.update()})}),provide(colorPickerContextKey,{currentColor:ue}),t({color:ae}),(bn,hn)=>(openBlock(),createBlock(unref(ElTooltip),{ref_key:"popper",ref:re,visible:le.value,"show-arrow":!1,"fallback-placements":["bottom","top","right","left"],offset:0,"gpu-acceleration":!1,"popper-class":[unref(g).be("picker","panel"),unref(g).b("dropdown"),bn.popperClass],"stop-popper-mouse-event":!1,effect:"light",trigger:"click",transition:`${unref(g).namespace.value}-zoom-in-top`,persistent:""},{content:withCtx(()=>[withDirectives((openBlock(),createElementBlock("div",null,[createBaseVNode("div",{class:normalizeClass(unref(g).be("dropdown","main-wrapper"))},[createVNode(HueSlider,{ref_key:"hue",ref:V,class:"hue-slider",color:unref(ae),vertical:""},null,8,["color"]),createVNode(SvPanel,{ref:"svPanel",color:unref(ae)},null,8,["color"])],2),bn.showAlpha?(openBlock(),createBlock(AlphaSlider,{key:0,ref_key:"alpha",ref:oe,color:unref(ae)},null,8,["color"])):createCommentVNode("v-if",!0),bn.predefine?(openBlock(),createBlock(Predefine,{key:1,ref:"predefine",color:unref(ae),colors:bn.predefine},null,8,["color","colors"])):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(g).be("dropdown","btns"))},[createBaseVNode("span",{class:normalizeClass(unref(g).be("dropdown","value"))},[createVNode(unref(ElInput),{modelValue:pe.value,"onUpdate:modelValue":hn[0]||(hn[0]=Dt=>pe.value=Dt),"validate-event":!1,size:"small",onKeyup:withKeys(At,["enter"]),onBlur:At},null,8,["modelValue","onKeyup"])],2),createVNode(unref(ElButton),{class:normalizeClass(unref(g).be("dropdown","link-btn")),text:"",size:"small",onClick:jt},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(i)("el.colorpicker.clear")),1)]),_:1},8,["class"]),createVNode(unref(ElButton),{plain:"",size:"small",class:normalizeClass(unref(g).be("dropdown","btn")),onClick:Pt},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(i)("el.colorpicker.confirm")),1)]),_:1},8,["class"])],2)])),[[unref(ClickOutside),ze]])]),default:withCtx(()=>[createBaseVNode("div",{id:unref(j),class:normalizeClass(unref(Ce)),role:"button","aria-label":unref(_e),"aria-labelledby":unref(Ie),"aria-description":unref(i)("el.colorpicker.description",{color:bn.modelValue||""}),tabindex:bn.tabindex,onKeydown:withKeys(kt,["enter"])},[unref(k)?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(g).be("picker","mask"))},null,2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(g).be("picker","trigger")),onClick:kt},[createBaseVNode("span",{class:normalizeClass([unref(g).be("picker","color"),unref(g).is("alpha",bn.showAlpha)])},[createBaseVNode("span",{class:normalizeClass(unref(g).be("picker","color-inner")),style:normalizeStyle({backgroundColor:unref(he)})},[withDirectives(createVNode(unref(ElIcon),{class:normalizeClass([unref(g).be("picker","icon"),unref(g).is("icon-arrow-down")])},{default:withCtx(()=>[createVNode(unref(arrow_down_default))]),_:1},8,["class"]),[[vShow,bn.modelValue||de.value]]),!bn.modelValue&&!de.value?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass([unref(g).be("picker","empty"),unref(g).is("icon-close")])},{default:withCtx(()=>[createVNode(unref(close_default))]),_:1},8,["class"])):createCommentVNode("v-if",!0)],6)],2)],2)],42,_hoisted_1$N)]),_:1},8,["visible","popper-class","transition"]))}});var ColorPicker=_export_sfc$1(_sfc_main$1z,[["__file","/home/runner/work/element-plus/element-plus/packages/components/color-picker/src/color-picker.vue"]]);const ElColorPicker=withInstall(ColorPicker),messageConfig={},configProviderProps=buildProps({a11y:{type:Boolean,default:!0},locale:{type:definePropType(Object)},size:useSizeProp,button:{type:definePropType(Object)},experimentalFeatures:{type:definePropType(Object)},keyboardNavigation:{type:Boolean,default:!0},message:{type:definePropType(Object)},zIndex:Number,namespace:{type:String,default:"el"}}),ConfigProvider=defineComponent({name:"ElConfigProvider",props:configProviderProps,setup(e,{slots:t}){watch(()=>e.message,r=>{Object.assign(messageConfig,r!=null?r:{})},{immediate:!0,deep:!0});const n=provideGlobalConfig(e);return()=>renderSlot(t,"default",{config:n==null?void 0:n.value})}}),ElConfigProvider=withInstall(ConfigProvider),__default__$X=defineComponent({name:"ElContainer"}),_sfc_main$1y=defineComponent({...__default__$X,props:{direction:{type:String}},setup(e){const t=e,n=useSlots(),r=useNamespace("container"),i=computed(()=>t.direction==="vertical"?!0:t.direction==="horizontal"?!1:n&&n.default?n.default().some($=>{const y=$.type.name;return y==="ElHeader"||y==="ElFooter"}):!1);return(g,$)=>(openBlock(),createElementBlock("section",{class:normalizeClass([unref(r).b(),unref(r).is("vertical",unref(i))])},[renderSlot(g.$slots,"default")],2))}});var Container=_export_sfc$1(_sfc_main$1y,[["__file","/home/runner/work/element-plus/element-plus/packages/components/container/src/container.vue"]]);const __default__$W=defineComponent({name:"ElAside"}),_sfc_main$1x=defineComponent({...__default__$W,props:{width:{type:String,default:null}},setup(e){const t=e,n=useNamespace("aside"),r=computed(()=>t.width?n.cssVarBlock({width:t.width}):{});return(i,g)=>(openBlock(),createElementBlock("aside",{class:normalizeClass(unref(n).b()),style:normalizeStyle(unref(r))},[renderSlot(i.$slots,"default")],6))}});var Aside=_export_sfc$1(_sfc_main$1x,[["__file","/home/runner/work/element-plus/element-plus/packages/components/container/src/aside.vue"]]);const __default__$V=defineComponent({name:"ElFooter"}),_sfc_main$1w=defineComponent({...__default__$V,props:{height:{type:String,default:null}},setup(e){const t=e,n=useNamespace("footer"),r=computed(()=>t.height?n.cssVarBlock({height:t.height}):{});return(i,g)=>(openBlock(),createElementBlock("footer",{class:normalizeClass(unref(n).b()),style:normalizeStyle(unref(r))},[renderSlot(i.$slots,"default")],6))}});var Footer$2=_export_sfc$1(_sfc_main$1w,[["__file","/home/runner/work/element-plus/element-plus/packages/components/container/src/footer.vue"]]);const __default__$U=defineComponent({name:"ElHeader"}),_sfc_main$1v=defineComponent({...__default__$U,props:{height:{type:String,default:null}},setup(e){const t=e,n=useNamespace("header"),r=computed(()=>t.height?n.cssVarBlock({height:t.height}):{});return(i,g)=>(openBlock(),createElementBlock("header",{class:normalizeClass(unref(n).b()),style:normalizeStyle(unref(r))},[renderSlot(i.$slots,"default")],6))}});var Header=_export_sfc$1(_sfc_main$1v,[["__file","/home/runner/work/element-plus/element-plus/packages/components/container/src/header.vue"]]);const __default__$T=defineComponent({name:"ElMain"}),_sfc_main$1u=defineComponent({...__default__$T,setup(e){const t=useNamespace("main");return(n,r)=>(openBlock(),createElementBlock("main",{class:normalizeClass(unref(t).b())},[renderSlot(n.$slots,"default")],2))}});var Main=_export_sfc$1(_sfc_main$1u,[["__file","/home/runner/work/element-plus/element-plus/packages/components/container/src/main.vue"]]);const ElContainer=withInstall(Container,{Aside,Footer:Footer$2,Header,Main}),ElAside=withNoopInstall(Aside),ElFooter=withNoopInstall(Footer$2),ElHeader=withNoopInstall(Header),ElMain=withNoopInstall(Main);var advancedFormat$1={exports:{}};(function(e,t){(function(n,r){e.exports=r()})(commonjsGlobal$1,function(){return function(n,r){var i=r.prototype,g=i.format;i.format=function($){var y=this,k=this.$locale();if(!this.isValid())return g.bind(this)($);var j=this.$utils(),L=($||"YYYY-MM-DDTHH:mm:ssZ").replace(/\[([^\]]+)]|Q|wo|ww|w|WW|W|zzz|z|gggg|GGGG|Do|X|x|k{1,2}|S/g,function(V){switch(V){case"Q":return Math.ceil((y.$M+1)/3);case"Do":return k.ordinal(y.$D);case"gggg":return y.weekYear();case"GGGG":return y.isoWeekYear();case"wo":return k.ordinal(y.week(),"W");case"w":case"ww":return j.s(y.week(),V==="w"?1:2,"0");case"W":case"WW":return j.s(y.isoWeek(),V==="W"?1:2,"0");case"k":case"kk":return j.s(String(y.$H===0?24:y.$H),V==="k"?1:2,"0");case"X":return Math.floor(y.$d.getTime()/1e3);case"x":return y.$d.getTime();case"z":return"["+y.offsetName()+"]";case"zzz":return"["+y.offsetName("long")+"]";default:return V}});return g.bind(this)(L)}}})})(advancedFormat$1);var advancedFormat=advancedFormat$1.exports,weekOfYear$1={exports:{}};(function(e,t){(function(n,r){e.exports=r()})(commonjsGlobal$1,function(){var n="week",r="year";return function(i,g,$){var y=g.prototype;y.week=function(k){if(k===void 0&&(k=null),k!==null)return this.add(7*(k-this.week()),"day");var j=this.$locale().yearStart||1;if(this.month()===11&&this.date()>25){var L=$(this).startOf(r).add(1,r).date(j),V=$(this).endOf(n);if(L.isBefore(V))return 1}var z=$(this).startOf(r).date(j).startOf(n).subtract(1,"millisecond"),oe=this.diff(z,n,!0);return oe<0?$(this).startOf("week").week():Math.ceil(oe)},y.weeks=function(k){return k===void 0&&(k=null),this.week(k)}}})})(weekOfYear$1);var weekOfYear=weekOfYear$1.exports,weekYear$1={exports:{}};(function(e,t){(function(n,r){e.exports=r()})(commonjsGlobal$1,function(){return function(n,r){r.prototype.weekYear=function(){var i=this.month(),g=this.week(),$=this.year();return g===1&&i===11?$+1:i===0&&g>=52?$-1:$}}})})(weekYear$1);var weekYear=weekYear$1.exports,dayOfYear$1={exports:{}};(function(e,t){(function(n,r){e.exports=r()})(commonjsGlobal$1,function(){return function(n,r,i){r.prototype.dayOfYear=function(g){var $=Math.round((i(this).startOf("day")-i(this).startOf("year"))/864e5)+1;return g==null?$:this.add(g-$,"day")}}})})(dayOfYear$1);var dayOfYear=dayOfYear$1.exports,isSameOrAfter$1={exports:{}};(function(e,t){(function(n,r){e.exports=r()})(commonjsGlobal$1,function(){return function(n,r){r.prototype.isSameOrAfter=function(i,g){return this.isSame(i,g)||this.isAfter(i,g)}}})})(isSameOrAfter$1);var isSameOrAfter=isSameOrAfter$1.exports,isSameOrBefore$1={exports:{}};(function(e,t){(function(n,r){e.exports=r()})(commonjsGlobal$1,function(){return function(n,r){r.prototype.isSameOrBefore=function(i,g){return this.isSame(i,g)||this.isBefore(i,g)}}})})(isSameOrBefore$1);var isSameOrBefore=isSameOrBefore$1.exports;const datePickerProps=buildProps({type:{type:definePropType(String),default:"date"}}),selectionModes=["date","dates","year","month","week","range"],datePickerSharedProps=buildProps({disabledDate:{type:definePropType(Function)},date:{type:definePropType(Object),required:!0},minDate:{type:definePropType(Object)},maxDate:{type:definePropType(Object)},parsedValue:{type:definePropType([Object,Array])},rangeState:{type:definePropType(Object),default:()=>({endDate:null,selecting:!1})}}),panelSharedProps=buildProps({type:{type:definePropType(String),required:!0,values:datePickTypes}}),panelRangeSharedProps=buildProps({unlinkPanels:Boolean,parsedValue:{type:definePropType(Array)}}),selectionModeWithDefault=e=>({type:String,values:selectionModes,default:e}),panelDatePickProps=buildProps({...panelSharedProps,parsedValue:{type:definePropType([Object,Array])},visible:{type:Boolean},format:{type:String,default:""}}),basicDateTableProps=buildProps({...datePickerSharedProps,cellClassName:{type:definePropType(Function)},showWeekNumber:Boolean,selectionMode:selectionModeWithDefault("date")}),isValidRange=e=>{if(!isArray$4(e))return!1;const[t,n]=e;return dayjs.isDayjs(t)&&dayjs.isDayjs(n)&&t.isSameOrBefore(n)},getDefaultValue=(e,{lang:t,unit:n,unlinkPanels:r})=>{let i;if(isArray$4(e)){let[g,$]=e.map(y=>dayjs(y).locale(t));return r||($=g.add(1,n)),[g,$]}else e?i=dayjs(e):i=dayjs();return i=i.locale(t),[i,i.add(1,n)]},buildPickerTable=(e,t,{columnIndexOffset:n,startDate:r,nextEndDate:i,now:g,unit:$,relativeDateGetter:y,setCellMetadata:k,setRowMetadata:j})=>{for(let L=0;L{const{cell:r}=e;if(n.default){const i=n.default(r).filter(g=>g.patchFlag!==-2&&g.type.toString()!=="Symbol(Comment)");if(i.length)return i}return createVNode("div",{class:t.b()},[createVNode("span",{class:t.e("text")},[r==null?void 0:r.text])])}}});const _hoisted_1$M=["aria-label","onMousedown"],_hoisted_2$w={key:0,scope:"col"},_hoisted_3$h=["aria-label"],_hoisted_4$d=["aria-current","aria-selected","tabindex"],_sfc_main$1t=defineComponent({__name:"basic-date-table",props:basicDateTableProps,emits:["changerange","pick","select"],setup(e,{expose:t,emit:n}){const r=e,i=useNamespace("date-table"),{t:g,lang:$}=useLocale(),y=ref(),k=ref(),j=ref(),L=ref(),V=ref([[],[],[],[],[],[]]);let z=!1;const oe=r.date.$locale().weekStart||7,re=r.date.locale("en").localeData().weekdaysShort().map(_n=>_n.toLowerCase()),ie=computed(()=>oe>3?7-oe:-oe),ae=computed(()=>{const _n=r.date.startOf("month");return _n.subtract(_n.day()||7,"day")}),le=computed(()=>re.concat(re).slice(oe,oe+7)),de=computed(()=>flatten(Ce.value).some(_n=>_n.isCurrent)),pe=computed(()=>{const _n=r.date.startOf("month"),vn=_n.day()||7,Cn=_n.daysInMonth(),xn=_n.subtract(1,"month").daysInMonth();return{startOfMonthDay:vn,dateCountOfMonth:Cn,dateCountOfLastMonth:xn}}),he=computed(()=>r.selectionMode==="dates"?castArray(r.parsedValue):[]),ue=(_n,{count:vn,rowIndex:Cn,columnIndex:xn})=>{const{startOfMonthDay:En,dateCountOfMonth:Sn,dateCountOfLastMonth:Bn}=unref(pe),An=unref(ie);if(Cn>=0&&Cn<=1){const Pn=En+An<0?7+En+An:En+An;if(xn+Cn*7>=Pn)return _n.text=vn,!0;_n.text=Bn-(Pn-xn%7)+1+Cn*7,_n.type="prev-month"}else return vn<=Sn?_n.text=vn:(_n.text=vn-Sn,_n.type="next-month"),!0;return!1},_e=(_n,{columnIndex:vn,rowIndex:Cn},xn)=>{const{disabledDate:En,cellClassName:Sn}=r,Bn=unref(he),An=ue(_n,{count:xn,rowIndex:Cn,columnIndex:vn}),Pn=_n.dayjs.toDate();return _n.selected=Bn.find(Mn=>Mn.valueOf()===_n.dayjs.valueOf()),_n.isSelected=!!_n.selected,_n.isCurrent=qe(_n),_n.disabled=En==null?void 0:En(Pn),_n.customClass=Sn==null?void 0:Sn(Pn),An},Ie=_n=>{if(r.selectionMode==="week"){const[vn,Cn]=r.showWeekNumber?[1,7]:[0,6],xn=wn(_n[vn+1]);_n[vn].inRange=xn,_n[vn].start=xn,_n[Cn].inRange=xn,_n[Cn].end=xn}},Ce=computed(()=>{const{minDate:_n,maxDate:vn,rangeState:Cn,showWeekNumber:xn}=r,En=ie.value,Sn=V.value,Bn="day";let An=1;if(xn)for(let Pn=0;Pn<6;Pn++)Sn[Pn][0]||(Sn[Pn][0]={type:"week",text:ae.value.add(Pn*7+1,Bn).week()});return buildPickerTable({row:6,column:7},Sn,{startDate:_n,columnIndexOffset:xn?1:0,nextEndDate:Cn.endDate||vn||Cn.selecting&&_n||null,now:dayjs().locale(unref($)).startOf(Bn),unit:Bn,relativeDateGetter:Pn=>ae.value.add(Pn-En,Bn),setCellMetadata:(...Pn)=>{_e(...Pn,An)&&(An+=1)},setRowMetadata:Ie}),Sn});watch(()=>r.date,async()=>{var _n,vn;(_n=y.value)!=null&&_n.contains(document.activeElement)&&(await nextTick(),(vn=k.value)==null||vn.focus())});const Oe=async()=>{var _n;(_n=k.value)==null||_n.focus()},$e=(_n="")=>["normal","today"].includes(_n),qe=_n=>r.selectionMode==="date"&&$e(_n.type)&&ze(_n,r.parsedValue),ze=(_n,vn)=>vn?dayjs(vn).locale($.value).isSame(r.date.date(Number(_n.text)),"day"):!1,Ue=_n=>{const vn=[];return $e(_n.type)&&!_n.disabled?(vn.push("available"),_n.type==="today"&&vn.push("today")):vn.push(_n.type),qe(_n)&&vn.push("current"),_n.inRange&&($e(_n.type)||r.selectionMode==="week")&&(vn.push("in-range"),_n.start&&vn.push("start-date"),_n.end&&vn.push("end-date")),_n.disabled&&vn.push("disabled"),_n.selected&&vn.push("selected"),_n.customClass&&vn.push(_n.customClass),vn.join(" ")},kt=(_n,vn)=>{const Cn=_n*7+(vn-(r.showWeekNumber?1:0))-ie.value;return ae.value.add(Cn,"day")},At=_n=>{var vn;if(!r.rangeState.selecting)return;let Cn=_n.target;if(Cn.tagName==="SPAN"&&(Cn=(vn=Cn.parentNode)==null?void 0:vn.parentNode),Cn.tagName==="DIV"&&(Cn=Cn.parentNode),Cn.tagName!=="TD")return;const xn=Cn.parentNode.rowIndex-1,En=Cn.cellIndex;Ce.value[xn][En].disabled||(xn!==j.value||En!==L.value)&&(j.value=xn,L.value=En,n("changerange",{selecting:!0,endDate:kt(xn,En)}))},Pt=_n=>!de.value&&(_n==null?void 0:_n.text)===1&&_n.type==="normal"||_n.isCurrent,jt=_n=>{z||de.value||r.selectionMode!=="date"||Dt(_n,!0)},bn=_n=>{!_n.target.closest("td")||(z=!0)},hn=_n=>{!_n.target.closest("td")||(z=!1)},Dt=(_n,vn=!1)=>{const Cn=_n.target.closest("td");if(!Cn)return;const xn=Cn.parentNode.rowIndex-1,En=Cn.cellIndex,Sn=Ce.value[xn][En];if(Sn.disabled||Sn.type==="week")return;const Bn=kt(xn,En);if(r.selectionMode==="range")!r.rangeState.selecting||!r.minDate?(n("pick",{minDate:Bn,maxDate:null}),n("select",!0)):(Bn>=r.minDate?n("pick",{minDate:r.minDate,maxDate:Bn}):n("pick",{minDate:Bn,maxDate:r.minDate}),n("select",!1));else if(r.selectionMode==="date")n("pick",Bn,vn);else if(r.selectionMode==="week"){const An=Bn.week(),Pn=`${Bn.year()}w${An}`;n("pick",{year:Bn.year(),week:An,value:Pn,date:Bn.startOf("week")})}else if(r.selectionMode==="dates"){const An=Sn.selected?castArray(r.parsedValue).filter(Pn=>(Pn==null?void 0:Pn.valueOf())!==Bn.valueOf()):castArray(r.parsedValue).concat([Bn]);n("pick",An)}},wn=_n=>{if(r.selectionMode!=="week")return!1;let vn=r.date.startOf("day");if(_n.type==="prev-month"&&(vn=vn.subtract(1,"month")),_n.type==="next-month"&&(vn=vn.add(1,"month")),vn=vn.date(Number.parseInt(_n.text,10)),r.parsedValue&&!Array.isArray(r.parsedValue)){const Cn=(r.parsedValue.day()-oe+7)%7-1;return r.parsedValue.subtract(Cn,"day").isSame(vn,"day")}return!1};return t({focus:Oe}),(_n,vn)=>(openBlock(),createElementBlock("table",{role:"grid","aria-label":unref(g)("el.datepicker.dateTablePrompt"),cellspacing:"0",cellpadding:"0",class:normalizeClass([unref(i).b(),{"is-week-mode":_n.selectionMode==="week"}]),onClick:Dt,onMousemove:At,onMousedown:withModifiers(bn,["prevent"]),onMouseup:hn},[createBaseVNode("tbody",{ref_key:"tbodyRef",ref:y},[createBaseVNode("tr",null,[_n.showWeekNumber?(openBlock(),createElementBlock("th",_hoisted_2$w,toDisplayString$1(unref(g)("el.datepicker.week")),1)):createCommentVNode("v-if",!0),(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(le),(Cn,xn)=>(openBlock(),createElementBlock("th",{key:xn,scope:"col","aria-label":unref(g)("el.datepicker.weeksFull."+Cn)},toDisplayString$1(unref(g)("el.datepicker.weeks."+Cn)),9,_hoisted_3$h))),128))]),(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(Ce),(Cn,xn)=>(openBlock(),createElementBlock("tr",{key:xn,class:normalizeClass([unref(i).e("row"),{current:wn(Cn[1])}])},[(openBlock(!0),createElementBlock(Fragment,null,renderList(Cn,(En,Sn)=>(openBlock(),createElementBlock("td",{key:`${xn}.${Sn}`,ref_for:!0,ref:Bn=>Pt(En)&&(k.value=Bn),class:normalizeClass(Ue(En)),"aria-current":En.isCurrent?"date":void 0,"aria-selected":En.isCurrent,tabindex:Pt(En)?0:-1,onFocus:jt},[createVNode(unref(ElDatePickerCell),{cell:En},null,8,["cell"])],42,_hoisted_4$d))),128))],2))),128))],512)],42,_hoisted_1$M))}});var DateTable=_export_sfc$1(_sfc_main$1t,[["__file","/home/runner/work/element-plus/element-plus/packages/components/date-picker/src/date-picker-com/basic-date-table.vue"]]);const basicMonthTableProps=buildProps({...datePickerSharedProps,selectionMode:selectionModeWithDefault("month")}),_hoisted_1$L=["aria-label"],_hoisted_2$v=["aria-selected","aria-label","tabindex","onKeydown"],_hoisted_3$g={class:"cell"},_sfc_main$1s=defineComponent({__name:"basic-month-table",props:basicMonthTableProps,emits:["changerange","pick","select"],setup(e,{expose:t,emit:n}){const r=e,i=(he,ue,_e)=>{const Ie=dayjs().locale(_e).startOf("month").month(ue).year(he),Ce=Ie.daysInMonth();return rangeArr(Ce).map(Oe=>Ie.add(Oe,"day").toDate())},g=useNamespace("month-table"),{t:$,lang:y}=useLocale(),k=ref(),j=ref(),L=ref(r.date.locale("en").localeData().monthsShort().map(he=>he.toLowerCase())),V=ref([[],[],[]]),z=ref(),oe=ref(),re=computed(()=>{var he,ue;const _e=V.value,Ie=dayjs().locale(y.value).startOf("month");for(let Ce=0;Ce<3;Ce++){const Oe=_e[Ce];for(let $e=0;$e<4;$e++){const qe=Oe[$e]||(Oe[$e]={row:Ce,column:$e,type:"normal",inRange:!1,start:!1,end:!1,text:-1,disabled:!1});qe.type="normal";const ze=Ce*4+$e,Ue=r.date.startOf("year").month(ze),kt=r.rangeState.endDate||r.maxDate||r.rangeState.selecting&&r.minDate||null;qe.inRange=!!(r.minDate&&Ue.isSameOrAfter(r.minDate,"month")&&kt&&Ue.isSameOrBefore(kt,"month"))||!!(r.minDate&&Ue.isSameOrBefore(r.minDate,"month")&&kt&&Ue.isSameOrAfter(kt,"month")),(he=r.minDate)!=null&&he.isSameOrAfter(kt)?(qe.start=!!(kt&&Ue.isSame(kt,"month")),qe.end=r.minDate&&Ue.isSame(r.minDate,"month")):(qe.start=!!(r.minDate&&Ue.isSame(r.minDate,"month")),qe.end=!!(kt&&Ue.isSame(kt,"month"))),Ie.isSame(Ue)&&(qe.type="today"),qe.text=ze,qe.disabled=((ue=r.disabledDate)==null?void 0:ue.call(r,Ue.toDate()))||!1}}return _e}),ie=()=>{var he;(he=j.value)==null||he.focus()},ae=he=>{const ue={},_e=r.date.year(),Ie=new Date,Ce=he.text;return ue.disabled=r.disabledDate?i(_e,Ce,y.value).every(r.disabledDate):!1,ue.current=castArray(r.parsedValue).findIndex(Oe=>dayjs.isDayjs(Oe)&&Oe.year()===_e&&Oe.month()===Ce)>=0,ue.today=Ie.getFullYear()===_e&&Ie.getMonth()===Ce,he.inRange&&(ue["in-range"]=!0,he.start&&(ue["start-date"]=!0),he.end&&(ue["end-date"]=!0)),ue},le=he=>{const ue=r.date.year(),_e=he.text;return castArray(r.date).findIndex(Ie=>Ie.year()===ue&&Ie.month()===_e)>=0},de=he=>{var ue;if(!r.rangeState.selecting)return;let _e=he.target;if(_e.tagName==="A"&&(_e=(ue=_e.parentNode)==null?void 0:ue.parentNode),_e.tagName==="DIV"&&(_e=_e.parentNode),_e.tagName!=="TD")return;const Ie=_e.parentNode.rowIndex,Ce=_e.cellIndex;re.value[Ie][Ce].disabled||(Ie!==z.value||Ce!==oe.value)&&(z.value=Ie,oe.value=Ce,n("changerange",{selecting:!0,endDate:r.date.startOf("year").month(Ie*4+Ce)}))},pe=he=>{var ue;const _e=(ue=he.target)==null?void 0:ue.closest("td");if((_e==null?void 0:_e.tagName)!=="TD"||hasClass(_e,"disabled"))return;const Ie=_e.cellIndex,Oe=_e.parentNode.rowIndex*4+Ie,$e=r.date.startOf("year").month(Oe);r.selectionMode==="range"?r.rangeState.selecting?(r.minDate&&$e>=r.minDate?n("pick",{minDate:r.minDate,maxDate:$e}):n("pick",{minDate:$e,maxDate:r.minDate}),n("select",!1)):(n("pick",{minDate:$e,maxDate:null}),n("select",!0)):n("pick",Oe)};return watch(()=>r.date,async()=>{var he,ue;(he=k.value)!=null&&he.contains(document.activeElement)&&(await nextTick(),(ue=j.value)==null||ue.focus())}),t({focus:ie}),(he,ue)=>(openBlock(),createElementBlock("table",{role:"grid","aria-label":unref($)("el.datepicker.monthTablePrompt"),class:normalizeClass(unref(g).b()),onClick:pe,onMousemove:de},[createBaseVNode("tbody",{ref_key:"tbodyRef",ref:k},[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(re),(_e,Ie)=>(openBlock(),createElementBlock("tr",{key:Ie},[(openBlock(!0),createElementBlock(Fragment,null,renderList(_e,(Ce,Oe)=>(openBlock(),createElementBlock("td",{key:Oe,ref_for:!0,ref:$e=>le(Ce)&&(j.value=$e),class:normalizeClass(ae(Ce)),"aria-selected":`${le(Ce)}`,"aria-label":unref($)(`el.datepicker.month${+Ce.text+1}`),tabindex:le(Ce)?0:-1,onKeydown:[withKeys(withModifiers(pe,["prevent","stop"]),["space"]),withKeys(withModifiers(pe,["prevent","stop"]),["enter"])]},[createBaseVNode("div",null,[createBaseVNode("span",_hoisted_3$g,toDisplayString$1(unref($)("el.datepicker.months."+L.value[Ce.text])),1)])],42,_hoisted_2$v))),128))]))),128))],512)],42,_hoisted_1$L))}});var MonthTable=_export_sfc$1(_sfc_main$1s,[["__file","/home/runner/work/element-plus/element-plus/packages/components/date-picker/src/date-picker-com/basic-month-table.vue"]]);const{date:date$1,disabledDate,parsedValue}=datePickerSharedProps,basicYearTableProps=buildProps({date:date$1,disabledDate,parsedValue}),_hoisted_1$K=["aria-label"],_hoisted_2$u=["aria-selected","tabindex","onKeydown"],_hoisted_3$f={class:"cell"},_hoisted_4$c={key:1},_sfc_main$1r=defineComponent({__name:"basic-year-table",props:basicYearTableProps,emits:["pick"],setup(e,{expose:t,emit:n}){const r=e,i=(ie,ae)=>{const le=dayjs(String(ie)).locale(ae).startOf("year"),pe=le.endOf("year").dayOfYear();return rangeArr(pe).map(he=>le.add(he,"day").toDate())},g=useNamespace("year-table"),{t:$,lang:y}=useLocale(),k=ref(),j=ref(),L=computed(()=>Math.floor(r.date.year()/10)*10),V=()=>{var ie;(ie=j.value)==null||ie.focus()},z=ie=>{const ae={},le=dayjs().locale(y.value);return ae.disabled=r.disabledDate?i(ie,y.value).every(r.disabledDate):!1,ae.current=castArray(r.parsedValue).findIndex(de=>de.year()===ie)>=0,ae.today=le.year()===ie,ae},oe=ie=>ie===L.value&&r.date.year()L.value+9||castArray(r.date).findIndex(ae=>ae.year()===ie)>=0,re=ie=>{const le=ie.target.closest("td");if(le&&le.textContent){if(hasClass(le,"disabled"))return;const de=le.textContent||le.innerText;n("pick",Number(de))}};return watch(()=>r.date,async()=>{var ie,ae;(ie=k.value)!=null&&ie.contains(document.activeElement)&&(await nextTick(),(ae=j.value)==null||ae.focus())}),t({focus:V}),(ie,ae)=>(openBlock(),createElementBlock("table",{role:"grid","aria-label":unref($)("el.datepicker.yearTablePrompt"),class:normalizeClass(unref(g).b()),onClick:re},[createBaseVNode("tbody",{ref_key:"tbodyRef",ref:k},[(openBlock(),createElementBlock(Fragment,null,renderList(3,(le,de)=>createBaseVNode("tr",{key:de},[(openBlock(),createElementBlock(Fragment,null,renderList(4,(pe,he)=>(openBlock(),createElementBlock(Fragment,{key:de+"_"+he},[de*4+he<10?(openBlock(),createElementBlock("td",{key:0,ref_for:!0,ref:ue=>oe(unref(L)+de*4+he)&&(j.value=ue),class:normalizeClass(["available",z(unref(L)+de*4+he)]),"aria-selected":`${oe(unref(L)+de*4+he)}`,tabindex:oe(unref(L)+de*4+he)?0:-1,onKeydown:[withKeys(withModifiers(re,["prevent","stop"]),["space"]),withKeys(withModifiers(re,["prevent","stop"]),["enter"])]},[createBaseVNode("span",_hoisted_3$f,toDisplayString$1(unref(L)+de*4+he),1)],42,_hoisted_2$u)):(openBlock(),createElementBlock("td",_hoisted_4$c))],64))),64))])),64))],512)],10,_hoisted_1$K))}});var YearTable=_export_sfc$1(_sfc_main$1r,[["__file","/home/runner/work/element-plus/element-plus/packages/components/date-picker/src/date-picker-com/basic-year-table.vue"]]);const _hoisted_1$J=["onClick"],_hoisted_2$t=["aria-label"],_hoisted_3$e=["aria-label"],_hoisted_4$b=["aria-label"],_hoisted_5$9=["aria-label"],_sfc_main$1q=defineComponent({__name:"panel-date-pick",props:panelDatePickProps,emits:["pick","set-picker-option","panel-change"],setup(e,{emit:t}){const n=e,r=(Tn,Ln,Rn)=>!0,i=useNamespace("picker-panel"),g=useNamespace("date-picker"),$=useAttrs$1(),y=useSlots(),{t:k,lang:j}=useLocale(),L=inject("EP_PICKER_BASE"),V=inject(TOOLTIP_INJECTION_KEY),{shortcuts:z,disabledDate:oe,cellClassName:re,defaultTime:ie,arrowControl:ae}=L.props,le=toRef(L.props,"defaultValue"),de=ref(),pe=ref(dayjs().locale(j.value)),he=ref(!1),ue=computed(()=>dayjs(ie).locale(j.value)),_e=computed(()=>pe.value.month()),Ie=computed(()=>pe.value.year()),Ce=ref([]),Oe=ref(null),$e=ref(null),qe=Tn=>Ce.value.length>0?r(Tn,Ce.value,n.format||"HH:mm:ss"):!0,ze=Tn=>ie&&!Fn.value&&!he.value?ue.value.year(Tn.year()).month(Tn.month()).date(Tn.date()):En.value?Tn.millisecond(0):Tn.startOf("day"),Ue=(Tn,...Ln)=>{if(!Tn)t("pick",Tn,...Ln);else if(isArray$4(Tn)){const Rn=Tn.map(ze);t("pick",Rn,...Ln)}else t("pick",ze(Tn),...Ln);Oe.value=null,$e.value=null,he.value=!1},kt=(Tn,Ln)=>{if(Dt.value==="date"){Tn=Tn;let Rn=n.parsedValue?n.parsedValue.year(Tn.year()).month(Tn.month()).date(Tn.date()):Tn;qe(Rn)||(Rn=Ce.value[0][0].year(Tn.year()).month(Tn.month()).date(Tn.date())),pe.value=Rn,Ue(Rn,En.value||Ln)}else Dt.value==="week"?Ue(Tn.date):Dt.value==="dates"&&Ue(Tn,!0)},At=Tn=>{const Ln=Tn?"add":"subtract";pe.value=pe.value[Ln](1,"month"),ho("month")},Pt=Tn=>{const Ln=pe.value,Rn=Tn?"add":"subtract";pe.value=jt.value==="year"?Ln[Rn](10,"year"):Ln[Rn](1,"year"),ho("year")},jt=ref("date"),bn=computed(()=>{const Tn=k("el.datepicker.year");if(jt.value==="year"){const Ln=Math.floor(Ie.value/10)*10;return Tn?`${Ln} ${Tn} - ${Ln+9} ${Tn}`:`${Ln} - ${Ln+9}`}return`${Ie.value} ${Tn}`}),hn=Tn=>{const Ln=isFunction$4(Tn.value)?Tn.value():Tn.value;if(Ln){Ue(dayjs(Ln).locale(j.value));return}Tn.onClick&&Tn.onClick({attrs:$,slots:y,emit:t})},Dt=computed(()=>{const{type:Tn}=n;return["week","month","year","dates"].includes(Tn)?Tn:"date"}),wn=computed(()=>Dt.value==="date"?jt.value:Dt.value),_n=computed(()=>!!z.length),vn=async Tn=>{pe.value=pe.value.startOf("month").month(Tn),Dt.value==="month"?Ue(pe.value,!1):(jt.value="date",["month","year","date","week"].includes(Dt.value)&&(Ue(pe.value,!0),await nextTick(),ro())),ho("month")},Cn=async Tn=>{Dt.value==="year"?(pe.value=pe.value.startOf("year").year(Tn),Ue(pe.value,!1)):(pe.value=pe.value.year(Tn),jt.value="month",["month","year","date","week"].includes(Dt.value)&&(Ue(pe.value,!0),await nextTick(),ro())),ho("year")},xn=async Tn=>{jt.value=Tn,await nextTick(),ro()},En=computed(()=>n.type==="datetime"||n.type==="datetimerange"),Sn=computed(()=>En.value||Dt.value==="dates"),Bn=()=>{if(Dt.value==="dates")Ue(n.parsedValue);else{let Tn=n.parsedValue;if(!Tn){const Ln=dayjs(ie).locale(j.value),Rn=oo();Tn=Ln.year(Rn.year()).month(Rn.month()).date(Rn.date())}pe.value=Tn,Ue(Tn)}},An=()=>{const Ln=dayjs().locale(j.value).toDate();he.value=!0,(!oe||!oe(Ln))&&qe(Ln)&&(pe.value=dayjs().locale(j.value),Ue(pe.value))},Pn=computed(()=>extractTimeFormat(n.format)),Mn=computed(()=>extractDateFormat(n.format)),Fn=computed(()=>{if($e.value)return $e.value;if(!(!n.parsedValue&&!le.value))return(n.parsedValue||pe.value).format(Pn.value)}),jn=computed(()=>{if(Oe.value)return Oe.value;if(!(!n.parsedValue&&!le.value))return(n.parsedValue||pe.value).format(Mn.value)}),zn=ref(!1),Jn=()=>{zn.value=!0},io=()=>{zn.value=!1},eo=Tn=>({hour:Tn.hour(),minute:Tn.minute(),second:Tn.second(),year:Tn.year(),month:Tn.month(),date:Tn.date()}),Un=(Tn,Ln,Rn)=>{const{hour:Nn,minute:In,second:Gn}=eo(Tn),Xn=n.parsedValue?n.parsedValue.hour(Nn).minute(In).second(Gn):Tn;pe.value=Xn,Ue(pe.value,!0),Rn||(zn.value=Ln)},Yn=Tn=>{const Ln=dayjs(Tn,Pn.value).locale(j.value);if(Ln.isValid()&&qe(Ln)){const{year:Rn,month:Nn,date:In}=eo(pe.value);pe.value=Ln.year(Rn).month(Nn).date(In),$e.value=null,zn.value=!1,Ue(pe.value,!0)}},to=Tn=>{const Ln=dayjs(Tn,Mn.value).locale(j.value);if(Ln.isValid()){if(oe&&oe(Ln.toDate()))return;const{hour:Rn,minute:Nn,second:In}=eo(pe.value);pe.value=Ln.hour(Rn).minute(Nn).second(In),Oe.value=null,Ue(pe.value,!0)}},Hn=Tn=>dayjs.isDayjs(Tn)&&Tn.isValid()&&(oe?!oe(Tn.toDate()):!0),On=Tn=>Dt.value==="dates"?Tn.map(Ln=>Ln.format(n.format)):Tn.format(n.format),Wn=Tn=>dayjs(Tn,n.format).locale(j.value),oo=()=>{const Tn=dayjs(le.value).locale(j.value);if(!le.value){const Ln=ue.value;return dayjs().hour(Ln.hour()).minute(Ln.minute()).second(Ln.second()).locale(j.value)}return Tn},ro=async()=>{var Tn;["week","month","year","date"].includes(Dt.value)&&((Tn=de.value)==null||Tn.focus(),Dt.value==="week"&&lo(EVENT_CODE.down))},Qn=Tn=>{const{code:Ln}=Tn;[EVENT_CODE.up,EVENT_CODE.down,EVENT_CODE.left,EVENT_CODE.right,EVENT_CODE.home,EVENT_CODE.end,EVENT_CODE.pageUp,EVENT_CODE.pageDown].includes(Ln)&&(lo(Ln),Tn.stopPropagation(),Tn.preventDefault()),[EVENT_CODE.enter,EVENT_CODE.space].includes(Ln)&&Oe.value===null&&$e.value===null&&(Tn.preventDefault(),Ue(pe.value,!1))},lo=Tn=>{var Ln;const{up:Rn,down:Nn,left:In,right:Gn,home:Xn,end:ao,pageUp:bo,pageDown:uo}=EVENT_CODE,go={year:{[Rn]:-4,[Nn]:4,[In]:-1,[Gn]:1,offset:(vo,Zn)=>vo.setFullYear(vo.getFullYear()+Zn)},month:{[Rn]:-4,[Nn]:4,[In]:-1,[Gn]:1,offset:(vo,Zn)=>vo.setMonth(vo.getMonth()+Zn)},week:{[Rn]:-1,[Nn]:1,[In]:-1,[Gn]:1,offset:(vo,Zn)=>vo.setDate(vo.getDate()+Zn*7)},date:{[Rn]:-7,[Nn]:7,[In]:-1,[Gn]:1,[Xn]:vo=>-vo.getDay(),[ao]:vo=>-vo.getDay()+6,[bo]:vo=>-new Date(vo.getFullYear(),vo.getMonth(),0).getDate(),[uo]:vo=>new Date(vo.getFullYear(),vo.getMonth()+1,0).getDate(),offset:(vo,Zn)=>vo.setDate(vo.getDate()+Zn)}},mo=pe.value.toDate();for(;Math.abs(pe.value.diff(mo,"year",!0))<1;){const vo=go[wn.value];if(!vo)return;if(vo.offset(mo,isFunction$4(vo[Tn])?vo[Tn](mo):(Ln=vo[Tn])!=null?Ln:0),oe&&oe(mo))break;const Zn=dayjs(mo).locale(j.value);pe.value=Zn,t("pick",Zn,!0);break}},ho=Tn=>{t("panel-change",pe.value.toDate(),Tn,jt.value)};return watch(()=>Dt.value,Tn=>{if(["month","year"].includes(Tn)){jt.value=Tn;return}jt.value="date"},{immediate:!0}),watch(()=>jt.value,()=>{V==null||V.updatePopper()}),watch(()=>le.value,Tn=>{Tn&&(pe.value=oo())},{immediate:!0}),watch(()=>n.parsedValue,Tn=>{if(Tn){if(Dt.value==="dates"||Array.isArray(Tn))return;pe.value=Tn}else pe.value=oo()},{immediate:!0}),t("set-picker-option",["isValidValue",Hn]),t("set-picker-option",["formatToString",On]),t("set-picker-option",["parseUserInput",Wn]),t("set-picker-option",["handleFocusPicker",ro]),(Tn,Ln)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(i).b(),unref(g).b(),{"has-sidebar":Tn.$slots.sidebar||unref(_n),"has-time":unref(En)}])},[createBaseVNode("div",{class:normalizeClass(unref(i).e("body-wrapper"))},[renderSlot(Tn.$slots,"sidebar",{class:normalizeClass(unref(i).e("sidebar"))}),unref(_n)?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(i).e("sidebar"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(z),(Rn,Nn)=>(openBlock(),createElementBlock("button",{key:Nn,type:"button",class:normalizeClass(unref(i).e("shortcut")),onClick:In=>hn(Rn)},toDisplayString$1(Rn.text),11,_hoisted_1$J))),128))],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(i).e("body"))},[unref(En)?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(g).e("time-header"))},[createBaseVNode("span",{class:normalizeClass(unref(g).e("editor-wrap"))},[createVNode(unref(ElInput),{placeholder:unref(k)("el.datepicker.selectDate"),"model-value":unref(jn),size:"small","validate-event":!1,onInput:Ln[0]||(Ln[0]=Rn=>Oe.value=Rn),onChange:to},null,8,["placeholder","model-value"])],2),withDirectives((openBlock(),createElementBlock("span",{class:normalizeClass(unref(g).e("editor-wrap"))},[createVNode(unref(ElInput),{placeholder:unref(k)("el.datepicker.selectTime"),"model-value":unref(Fn),size:"small","validate-event":!1,onFocus:Jn,onInput:Ln[1]||(Ln[1]=Rn=>$e.value=Rn),onChange:Yn},null,8,["placeholder","model-value"]),createVNode(unref(TimePickPanel),{visible:zn.value,format:unref(Pn),"time-arrow-control":unref(ae),"parsed-value":pe.value,onPick:Un},null,8,["visible","format","time-arrow-control","parsed-value"])],2)),[[unref(ClickOutside),io]])],2)):createCommentVNode("v-if",!0),withDirectives(createBaseVNode("div",{class:normalizeClass([unref(g).e("header"),(jt.value==="year"||jt.value==="month")&&unref(g).e("header--bordered")])},[createBaseVNode("span",{class:normalizeClass(unref(g).e("prev-btn"))},[createBaseVNode("button",{type:"button","aria-label":unref(k)("el.datepicker.prevYear"),class:normalizeClass(["d-arrow-left",unref(i).e("icon-btn")]),onClick:Ln[2]||(Ln[2]=Rn=>Pt(!1))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_left_default))]),_:1})],10,_hoisted_2$t),withDirectives(createBaseVNode("button",{type:"button","aria-label":unref(k)("el.datepicker.prevMonth"),class:normalizeClass([unref(i).e("icon-btn"),"arrow-left"]),onClick:Ln[3]||(Ln[3]=Rn=>At(!1))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_left_default))]),_:1})],10,_hoisted_3$e),[[vShow,jt.value==="date"]])],2),createBaseVNode("span",{role:"button",class:normalizeClass(unref(g).e("header-label")),"aria-live":"polite",tabindex:"0",onKeydown:Ln[4]||(Ln[4]=withKeys(Rn=>xn("year"),["enter"])),onClick:Ln[5]||(Ln[5]=Rn=>xn("year"))},toDisplayString$1(unref(bn)),35),withDirectives(createBaseVNode("span",{role:"button","aria-live":"polite",tabindex:"0",class:normalizeClass([unref(g).e("header-label"),{active:jt.value==="month"}]),onKeydown:Ln[6]||(Ln[6]=withKeys(Rn=>xn("month"),["enter"])),onClick:Ln[7]||(Ln[7]=Rn=>xn("month"))},toDisplayString$1(unref(k)(`el.datepicker.month${unref(_e)+1}`)),35),[[vShow,jt.value==="date"]]),createBaseVNode("span",{class:normalizeClass(unref(g).e("next-btn"))},[withDirectives(createBaseVNode("button",{type:"button","aria-label":unref(k)("el.datepicker.nextMonth"),class:normalizeClass([unref(i).e("icon-btn"),"arrow-right"]),onClick:Ln[8]||(Ln[8]=Rn=>At(!0))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_right_default))]),_:1})],10,_hoisted_4$b),[[vShow,jt.value==="date"]]),createBaseVNode("button",{type:"button","aria-label":unref(k)("el.datepicker.nextYear"),class:normalizeClass([unref(i).e("icon-btn"),"d-arrow-right"]),onClick:Ln[9]||(Ln[9]=Rn=>Pt(!0))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_right_default))]),_:1})],10,_hoisted_5$9)],2)],2),[[vShow,jt.value!=="time"]]),createBaseVNode("div",{class:normalizeClass(unref(i).e("content")),onKeydown:Qn},[jt.value==="date"?(openBlock(),createBlock(DateTable,{key:0,ref_key:"currentViewRef",ref:de,"selection-mode":unref(Dt),date:pe.value,"parsed-value":Tn.parsedValue,"disabled-date":unref(oe),"cell-class-name":unref(re),onPick:kt},null,8,["selection-mode","date","parsed-value","disabled-date","cell-class-name"])):createCommentVNode("v-if",!0),jt.value==="year"?(openBlock(),createBlock(YearTable,{key:1,ref_key:"currentViewRef",ref:de,date:pe.value,"disabled-date":unref(oe),"parsed-value":Tn.parsedValue,onPick:Cn},null,8,["date","disabled-date","parsed-value"])):createCommentVNode("v-if",!0),jt.value==="month"?(openBlock(),createBlock(MonthTable,{key:2,ref_key:"currentViewRef",ref:de,date:pe.value,"parsed-value":Tn.parsedValue,"disabled-date":unref(oe),onPick:vn},null,8,["date","parsed-value","disabled-date"])):createCommentVNode("v-if",!0)],34)],2)],2),withDirectives(createBaseVNode("div",{class:normalizeClass(unref(i).e("footer"))},[withDirectives(createVNode(unref(ElButton),{text:"",size:"small",class:normalizeClass(unref(i).e("link-btn")),onClick:An},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(k)("el.datepicker.now")),1)]),_:1},8,["class"]),[[vShow,unref(Dt)!=="dates"]]),createVNode(unref(ElButton),{plain:"",size:"small",class:normalizeClass(unref(i).e("link-btn")),onClick:Bn},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(k)("el.datepicker.confirm")),1)]),_:1},8,["class"])],2),[[vShow,unref(Sn)&&jt.value==="date"]])],2))}});var DatePickPanel=_export_sfc$1(_sfc_main$1q,[["__file","/home/runner/work/element-plus/element-plus/packages/components/date-picker/src/date-picker-com/panel-date-pick.vue"]]);const panelDateRangeProps=buildProps({...panelSharedProps,...panelRangeSharedProps}),useShortcut=e=>{const{emit:t}=getCurrentInstance(),n=useAttrs$1(),r=useSlots();return g=>{const $=isFunction$4(g.value)?g.value():g.value;if($){t("pick",[dayjs($[0]).locale(e.value),dayjs($[1]).locale(e.value)]);return}g.onClick&&g.onClick({attrs:n,slots:r,emit:t})}},useRangePicker=(e,{defaultValue:t,leftDate:n,rightDate:r,unit:i,onParsedValueChanged:g})=>{const{emit:$}=getCurrentInstance(),{pickerNs:y}=inject(ROOT_PICKER_INJECTION_KEY),k=useNamespace("date-range-picker"),{t:j,lang:L}=useLocale(),V=useShortcut(L),z=ref(),oe=ref(),re=ref({endDate:null,selecting:!1}),ie=pe=>{re.value=pe},ae=(pe=!1)=>{const he=unref(z),ue=unref(oe);isValidRange([he,ue])&&$("pick",[he,ue],pe)},le=pe=>{re.value.selecting=pe,pe||(re.value.endDate=null)},de=()=>{const[pe,he]=getDefaultValue(unref(t),{lang:unref(L),unit:i,unlinkPanels:e.unlinkPanels});z.value=void 0,oe.value=void 0,n.value=pe,r.value=he};return watch(t,pe=>{pe&&de()},{immediate:!0}),watch(()=>e.parsedValue,pe=>{if(isArray$4(pe)&&pe.length===2){const[he,ue]=pe;z.value=he,n.value=he,oe.value=ue,g(unref(z),unref(oe))}else de()},{immediate:!0}),{minDate:z,maxDate:oe,rangeState:re,lang:L,ppNs:y,drpNs:k,handleChangeRange:ie,handleRangeConfirm:ae,handleShortcutClick:V,onSelect:le,t:j}},_hoisted_1$I=["onClick"],_hoisted_2$s=["disabled"],_hoisted_3$d=["disabled"],_hoisted_4$a=["disabled"],_hoisted_5$8=["disabled"],unit$1="month",_sfc_main$1p=defineComponent({__name:"panel-date-range",props:panelDateRangeProps,emits:["pick","set-picker-option","calendar-change","panel-change"],setup(e,{emit:t}){const n=e,r=inject("EP_PICKER_BASE"),{disabledDate:i,cellClassName:g,format:$,defaultTime:y,arrowControl:k,clearable:j}=r.props,L=toRef(r.props,"shortcuts"),V=toRef(r.props,"defaultValue"),{lang:z}=useLocale(),oe=ref(dayjs().locale(z.value)),re=ref(dayjs().locale(z.value).add(1,unit$1)),{minDate:ie,maxDate:ae,rangeState:le,ppNs:de,drpNs:pe,handleChangeRange:he,handleRangeConfirm:ue,handleShortcutClick:_e,onSelect:Ie,t:Ce}=useRangePicker(n,{defaultValue:V,leftDate:oe,rightDate:re,unit:unit$1,onParsedValueChanged:Nn}),Oe=ref({min:null,max:null}),$e=ref({min:null,max:null}),qe=computed(()=>`${oe.value.year()} ${Ce("el.datepicker.year")} ${Ce(`el.datepicker.month${oe.value.month()+1}`)}`),ze=computed(()=>`${re.value.year()} ${Ce("el.datepicker.year")} ${Ce(`el.datepicker.month${re.value.month()+1}`)}`),Ue=computed(()=>oe.value.year()),kt=computed(()=>oe.value.month()),At=computed(()=>re.value.year()),Pt=computed(()=>re.value.month()),jt=computed(()=>!!L.value.length),bn=computed(()=>Oe.value.min!==null?Oe.value.min:ie.value?ie.value.format(vn.value):""),hn=computed(()=>Oe.value.max!==null?Oe.value.max:ae.value||ie.value?(ae.value||ie.value).format(vn.value):""),Dt=computed(()=>$e.value.min!==null?$e.value.min:ie.value?ie.value.format(_n.value):""),wn=computed(()=>$e.value.max!==null?$e.value.max:ae.value||ie.value?(ae.value||ie.value).format(_n.value):""),_n=computed(()=>extractTimeFormat($)),vn=computed(()=>extractDateFormat($)),Cn=()=>{oe.value=oe.value.subtract(1,"year"),n.unlinkPanels||(re.value=oe.value.add(1,"month")),Fn("year")},xn=()=>{oe.value=oe.value.subtract(1,"month"),n.unlinkPanels||(re.value=oe.value.add(1,"month")),Fn("month")},En=()=>{n.unlinkPanels?re.value=re.value.add(1,"year"):(oe.value=oe.value.add(1,"year"),re.value=oe.value.add(1,"month")),Fn("year")},Sn=()=>{n.unlinkPanels?re.value=re.value.add(1,"month"):(oe.value=oe.value.add(1,"month"),re.value=oe.value.add(1,"month")),Fn("month")},Bn=()=>{oe.value=oe.value.add(1,"year"),Fn("year")},An=()=>{oe.value=oe.value.add(1,"month"),Fn("month")},Pn=()=>{re.value=re.value.subtract(1,"year"),Fn("year")},Mn=()=>{re.value=re.value.subtract(1,"month"),Fn("month")},Fn=In=>{t("panel-change",[oe.value.toDate(),re.value.toDate()],In)},jn=computed(()=>{const In=(kt.value+1)%12,Gn=kt.value+1>=12?1:0;return n.unlinkPanels&&new Date(Ue.value+Gn,In)n.unlinkPanels&&At.value*12+Pt.value-(Ue.value*12+kt.value+1)>=12),Jn=computed(()=>!(ie.value&&ae.value&&!le.value.selecting&&isValidRange([ie.value,ae.value]))),io=computed(()=>n.type==="datetime"||n.type==="datetimerange"),eo=(In,Gn)=>{if(!!In)return y?dayjs(y[Gn]||y).locale(z.value).year(In.year()).month(In.month()).date(In.date()):In},Un=(In,Gn=!0)=>{const Xn=In.minDate,ao=In.maxDate,bo=eo(Xn,0),uo=eo(ao,1);ae.value===uo&&ie.value===bo||(t("calendar-change",[Xn.toDate(),ao&&ao.toDate()]),ae.value=uo,ie.value=bo,!(!Gn||io.value)&&ue())},Yn=ref(!1),to=ref(!1),Hn=()=>{Yn.value=!1},On=()=>{to.value=!1},Wn=(In,Gn)=>{Oe.value[Gn]=In;const Xn=dayjs(In,vn.value).locale(z.value);if(Xn.isValid()){if(i&&i(Xn.toDate()))return;Gn==="min"?(oe.value=Xn,ie.value=(ie.value||oe.value).year(Xn.year()).month(Xn.month()).date(Xn.date()),n.unlinkPanels||(re.value=Xn.add(1,"month"),ae.value=ie.value.add(1,"month"))):(re.value=Xn,ae.value=(ae.value||re.value).year(Xn.year()).month(Xn.month()).date(Xn.date()),n.unlinkPanels||(oe.value=Xn.subtract(1,"month"),ie.value=ae.value.subtract(1,"month")))}},oo=(In,Gn)=>{Oe.value[Gn]=null},ro=(In,Gn)=>{$e.value[Gn]=In;const Xn=dayjs(In,_n.value).locale(z.value);Xn.isValid()&&(Gn==="min"?(Yn.value=!0,ie.value=(ie.value||oe.value).hour(Xn.hour()).minute(Xn.minute()).second(Xn.second()),(!ae.value||ae.value.isBefore(ie.value))&&(ae.value=ie.value)):(to.value=!0,ae.value=(ae.value||re.value).hour(Xn.hour()).minute(Xn.minute()).second(Xn.second()),re.value=ae.value,ae.value&&ae.value.isBefore(ie.value)&&(ie.value=ae.value)))},Qn=(In,Gn)=>{$e.value[Gn]=null,Gn==="min"?(oe.value=ie.value,Yn.value=!1):(re.value=ae.value,to.value=!1)},lo=(In,Gn,Xn)=>{$e.value.min||(In&&(oe.value=In,ie.value=(ie.value||oe.value).hour(In.hour()).minute(In.minute()).second(In.second())),Xn||(Yn.value=Gn),(!ae.value||ae.value.isBefore(ie.value))&&(ae.value=ie.value,re.value=In))},ho=(In,Gn,Xn)=>{$e.value.max||(In&&(re.value=In,ae.value=(ae.value||re.value).hour(In.hour()).minute(In.minute()).second(In.second())),Xn||(to.value=Gn),ae.value&&ae.value.isBefore(ie.value)&&(ie.value=ae.value))},Tn=()=>{oe.value=getDefaultValue(unref(V),{lang:unref(z),unit:"month",unlinkPanels:n.unlinkPanels})[0],re.value=oe.value.add(1,"month"),t("pick",null)},Ln=In=>isArray$4(In)?In.map(Gn=>Gn.format($)):In.format($),Rn=In=>isArray$4(In)?In.map(Gn=>dayjs(Gn,$).locale(z.value)):dayjs(In,$).locale(z.value);function Nn(In,Gn){if(n.unlinkPanels&&Gn){const Xn=(In==null?void 0:In.year())||0,ao=(In==null?void 0:In.month())||0,bo=Gn.year(),uo=Gn.month();re.value=Xn===bo&&ao===uo?Gn.add(1,unit$1):Gn}else re.value=oe.value.add(1,unit$1),Gn&&(re.value=re.value.hour(Gn.hour()).minute(Gn.minute()).second(Gn.second()))}return t("set-picker-option",["isValidValue",isValidRange]),t("set-picker-option",["parseUserInput",Rn]),t("set-picker-option",["formatToString",Ln]),t("set-picker-option",["handleClear",Tn]),(In,Gn)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(de).b(),unref(pe).b(),{"has-sidebar":In.$slots.sidebar||unref(jt),"has-time":unref(io)}])},[createBaseVNode("div",{class:normalizeClass(unref(de).e("body-wrapper"))},[renderSlot(In.$slots,"sidebar",{class:normalizeClass(unref(de).e("sidebar"))}),unref(jt)?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(de).e("sidebar"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(L),(Xn,ao)=>(openBlock(),createElementBlock("button",{key:ao,type:"button",class:normalizeClass(unref(de).e("shortcut")),onClick:bo=>unref(_e)(Xn)},toDisplayString$1(Xn.text),11,_hoisted_1$I))),128))],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(de).e("body"))},[unref(io)?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(pe).e("time-header"))},[createBaseVNode("span",{class:normalizeClass(unref(pe).e("editors-wrap"))},[createBaseVNode("span",{class:normalizeClass(unref(pe).e("time-picker-wrap"))},[createVNode(unref(ElInput),{size:"small",disabled:unref(le).selecting,placeholder:unref(Ce)("el.datepicker.startDate"),class:normalizeClass(unref(pe).e("editor")),"model-value":unref(bn),"validate-event":!1,onInput:Gn[0]||(Gn[0]=Xn=>Wn(Xn,"min")),onChange:Gn[1]||(Gn[1]=Xn=>oo(Xn,"min"))},null,8,["disabled","placeholder","class","model-value"])],2),withDirectives((openBlock(),createElementBlock("span",{class:normalizeClass(unref(pe).e("time-picker-wrap"))},[createVNode(unref(ElInput),{size:"small",class:normalizeClass(unref(pe).e("editor")),disabled:unref(le).selecting,placeholder:unref(Ce)("el.datepicker.startTime"),"model-value":unref(Dt),"validate-event":!1,onFocus:Gn[2]||(Gn[2]=Xn=>Yn.value=!0),onInput:Gn[3]||(Gn[3]=Xn=>ro(Xn,"min")),onChange:Gn[4]||(Gn[4]=Xn=>Qn(Xn,"min"))},null,8,["class","disabled","placeholder","model-value"]),createVNode(unref(TimePickPanel),{visible:Yn.value,format:unref(_n),"datetime-role":"start","time-arrow-control":unref(k),"parsed-value":oe.value,onPick:lo},null,8,["visible","format","time-arrow-control","parsed-value"])],2)),[[unref(ClickOutside),Hn]])],2),createBaseVNode("span",null,[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_right_default))]),_:1})]),createBaseVNode("span",{class:normalizeClass([unref(pe).e("editors-wrap"),"is-right"])},[createBaseVNode("span",{class:normalizeClass(unref(pe).e("time-picker-wrap"))},[createVNode(unref(ElInput),{size:"small",class:normalizeClass(unref(pe).e("editor")),disabled:unref(le).selecting,placeholder:unref(Ce)("el.datepicker.endDate"),"model-value":unref(hn),readonly:!unref(ie),"validate-event":!1,onInput:Gn[5]||(Gn[5]=Xn=>Wn(Xn,"max")),onChange:Gn[6]||(Gn[6]=Xn=>oo(Xn,"max"))},null,8,["class","disabled","placeholder","model-value","readonly"])],2),withDirectives((openBlock(),createElementBlock("span",{class:normalizeClass(unref(pe).e("time-picker-wrap"))},[createVNode(unref(ElInput),{size:"small",class:normalizeClass(unref(pe).e("editor")),disabled:unref(le).selecting,placeholder:unref(Ce)("el.datepicker.endTime"),"model-value":unref(wn),readonly:!unref(ie),"validate-event":!1,onFocus:Gn[7]||(Gn[7]=Xn=>unref(ie)&&(to.value=!0)),onInput:Gn[8]||(Gn[8]=Xn=>ro(Xn,"max")),onChange:Gn[9]||(Gn[9]=Xn=>Qn(Xn,"max"))},null,8,["class","disabled","placeholder","model-value","readonly"]),createVNode(unref(TimePickPanel),{"datetime-role":"end",visible:to.value,format:unref(_n),"time-arrow-control":unref(k),"parsed-value":re.value,onPick:ho},null,8,["visible","format","time-arrow-control","parsed-value"])],2)),[[unref(ClickOutside),On]])],2)],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass([[unref(de).e("content"),unref(pe).e("content")],"is-left"])},[createBaseVNode("div",{class:normalizeClass(unref(pe).e("header"))},[createBaseVNode("button",{type:"button",class:normalizeClass([unref(de).e("icon-btn"),"d-arrow-left"]),onClick:Cn},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_left_default))]),_:1})],2),createBaseVNode("button",{type:"button",class:normalizeClass([unref(de).e("icon-btn"),"arrow-left"]),onClick:xn},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_left_default))]),_:1})],2),In.unlinkPanels?(openBlock(),createElementBlock("button",{key:0,type:"button",disabled:!unref(zn),class:normalizeClass([[unref(de).e("icon-btn"),{"is-disabled":!unref(zn)}],"d-arrow-right"]),onClick:Bn},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_right_default))]),_:1})],10,_hoisted_2$s)):createCommentVNode("v-if",!0),In.unlinkPanels?(openBlock(),createElementBlock("button",{key:1,type:"button",disabled:!unref(jn),class:normalizeClass([[unref(de).e("icon-btn"),{"is-disabled":!unref(jn)}],"arrow-right"]),onClick:An},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_right_default))]),_:1})],10,_hoisted_3$d)):createCommentVNode("v-if",!0),createBaseVNode("div",null,toDisplayString$1(unref(qe)),1)],2),createVNode(DateTable,{"selection-mode":"range",date:oe.value,"min-date":unref(ie),"max-date":unref(ae),"range-state":unref(le),"disabled-date":unref(i),"cell-class-name":unref(g),onChangerange:unref(he),onPick:Un,onSelect:unref(Ie)},null,8,["date","min-date","max-date","range-state","disabled-date","cell-class-name","onChangerange","onSelect"])],2),createBaseVNode("div",{class:normalizeClass([[unref(de).e("content"),unref(pe).e("content")],"is-right"])},[createBaseVNode("div",{class:normalizeClass(unref(pe).e("header"))},[In.unlinkPanels?(openBlock(),createElementBlock("button",{key:0,type:"button",disabled:!unref(zn),class:normalizeClass([[unref(de).e("icon-btn"),{"is-disabled":!unref(zn)}],"d-arrow-left"]),onClick:Pn},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_left_default))]),_:1})],10,_hoisted_4$a)):createCommentVNode("v-if",!0),In.unlinkPanels?(openBlock(),createElementBlock("button",{key:1,type:"button",disabled:!unref(jn),class:normalizeClass([[unref(de).e("icon-btn"),{"is-disabled":!unref(jn)}],"arrow-left"]),onClick:Mn},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_left_default))]),_:1})],10,_hoisted_5$8)):createCommentVNode("v-if",!0),createBaseVNode("button",{type:"button",class:normalizeClass([unref(de).e("icon-btn"),"d-arrow-right"]),onClick:En},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_right_default))]),_:1})],2),createBaseVNode("button",{type:"button",class:normalizeClass([unref(de).e("icon-btn"),"arrow-right"]),onClick:Sn},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_right_default))]),_:1})],2),createBaseVNode("div",null,toDisplayString$1(unref(ze)),1)],2),createVNode(DateTable,{"selection-mode":"range",date:re.value,"min-date":unref(ie),"max-date":unref(ae),"range-state":unref(le),"disabled-date":unref(i),"cell-class-name":unref(g),onChangerange:unref(he),onPick:Un,onSelect:unref(Ie)},null,8,["date","min-date","max-date","range-state","disabled-date","cell-class-name","onChangerange","onSelect"])],2)],2)],2),unref(io)?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(de).e("footer"))},[unref(j)?(openBlock(),createBlock(unref(ElButton),{key:0,text:"",size:"small",class:normalizeClass(unref(de).e("link-btn")),onClick:Tn},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(Ce)("el.datepicker.clear")),1)]),_:1},8,["class"])):createCommentVNode("v-if",!0),createVNode(unref(ElButton),{plain:"",size:"small",class:normalizeClass(unref(de).e("link-btn")),disabled:unref(Jn),onClick:Gn[10]||(Gn[10]=Xn=>unref(ue)(!1))},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(Ce)("el.datepicker.confirm")),1)]),_:1},8,["class","disabled"])],2)):createCommentVNode("v-if",!0)],2))}});var DateRangePickPanel=_export_sfc$1(_sfc_main$1p,[["__file","/home/runner/work/element-plus/element-plus/packages/components/date-picker/src/date-picker-com/panel-date-range.vue"]]);const panelMonthRangeProps=buildProps({...panelRangeSharedProps}),panelMonthRangeEmits=["pick","set-picker-option"],useMonthRangeHeader=({unlinkPanels:e,leftDate:t,rightDate:n})=>{const{t:r}=useLocale(),i=()=>{t.value=t.value.subtract(1,"year"),e.value||(n.value=n.value.subtract(1,"year"))},g=()=>{e.value||(t.value=t.value.add(1,"year")),n.value=n.value.add(1,"year")},$=()=>{t.value=t.value.add(1,"year")},y=()=>{n.value=n.value.subtract(1,"year")},k=computed(()=>`${t.value.year()} ${r("el.datepicker.year")}`),j=computed(()=>`${n.value.year()} ${r("el.datepicker.year")}`),L=computed(()=>t.value.year()),V=computed(()=>n.value.year()===t.value.year()?t.value.year()+1:n.value.year());return{leftPrevYear:i,rightNextYear:g,leftNextYear:$,rightPrevYear:y,leftLabel:k,rightLabel:j,leftYear:L,rightYear:V}},_hoisted_1$H=["onClick"],_hoisted_2$r=["disabled"],_hoisted_3$c=["disabled"],unit="year",__default__$S=defineComponent({name:"DatePickerMonthRange"}),_sfc_main$1o=defineComponent({...__default__$S,props:panelMonthRangeProps,emits:panelMonthRangeEmits,setup(e,{emit:t}){const n=e,{lang:r}=useLocale(),i=inject("EP_PICKER_BASE"),{shortcuts:g,disabledDate:$,format:y}=i.props,k=toRef(i.props,"defaultValue"),j=ref(dayjs().locale(r.value)),L=ref(dayjs().locale(r.value).add(1,unit)),{minDate:V,maxDate:z,rangeState:oe,ppNs:re,drpNs:ie,handleChangeRange:ae,handleRangeConfirm:le,handleShortcutClick:de,onSelect:pe}=useRangePicker(n,{defaultValue:k,leftDate:j,rightDate:L,unit,onParsedValueChanged:Pt}),he=computed(()=>!!g.length),{leftPrevYear:ue,rightNextYear:_e,leftNextYear:Ie,rightPrevYear:Ce,leftLabel:Oe,rightLabel:$e,leftYear:qe,rightYear:ze}=useMonthRangeHeader({unlinkPanels:toRef(n,"unlinkPanels"),leftDate:j,rightDate:L}),Ue=computed(()=>n.unlinkPanels&&ze.value>qe.value+1),kt=(jt,bn=!0)=>{const hn=jt.minDate,Dt=jt.maxDate;z.value===Dt&&V.value===hn||(z.value=Dt,V.value=hn,bn&&le())},At=jt=>jt.map(bn=>bn.format(y));function Pt(jt,bn){if(n.unlinkPanels&&bn){const hn=(jt==null?void 0:jt.year())||0,Dt=bn.year();L.value=hn===Dt?bn.add(1,unit):bn}else L.value=j.value.add(1,unit)}return t("set-picker-option",["formatToString",At]),(jt,bn)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(re).b(),unref(ie).b(),{"has-sidebar":Boolean(jt.$slots.sidebar)||unref(he)}])},[createBaseVNode("div",{class:normalizeClass(unref(re).e("body-wrapper"))},[renderSlot(jt.$slots,"sidebar",{class:normalizeClass(unref(re).e("sidebar"))}),unref(he)?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(re).e("sidebar"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(g),(hn,Dt)=>(openBlock(),createElementBlock("button",{key:Dt,type:"button",class:normalizeClass(unref(re).e("shortcut")),onClick:wn=>unref(de)(hn)},toDisplayString$1(hn.text),11,_hoisted_1$H))),128))],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(re).e("body"))},[createBaseVNode("div",{class:normalizeClass([[unref(re).e("content"),unref(ie).e("content")],"is-left"])},[createBaseVNode("div",{class:normalizeClass(unref(ie).e("header"))},[createBaseVNode("button",{type:"button",class:normalizeClass([unref(re).e("icon-btn"),"d-arrow-left"]),onClick:bn[0]||(bn[0]=(...hn)=>unref(ue)&&unref(ue)(...hn))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_left_default))]),_:1})],2),jt.unlinkPanels?(openBlock(),createElementBlock("button",{key:0,type:"button",disabled:!unref(Ue),class:normalizeClass([[unref(re).e("icon-btn"),{[unref(re).is("disabled")]:!unref(Ue)}],"d-arrow-right"]),onClick:bn[1]||(bn[1]=(...hn)=>unref(Ie)&&unref(Ie)(...hn))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_right_default))]),_:1})],10,_hoisted_2$r)):createCommentVNode("v-if",!0),createBaseVNode("div",null,toDisplayString$1(unref(Oe)),1)],2),createVNode(MonthTable,{"selection-mode":"range",date:j.value,"min-date":unref(V),"max-date":unref(z),"range-state":unref(oe),"disabled-date":unref($),onChangerange:unref(ae),onPick:kt,onSelect:unref(pe)},null,8,["date","min-date","max-date","range-state","disabled-date","onChangerange","onSelect"])],2),createBaseVNode("div",{class:normalizeClass([[unref(re).e("content"),unref(ie).e("content")],"is-right"])},[createBaseVNode("div",{class:normalizeClass(unref(ie).e("header"))},[jt.unlinkPanels?(openBlock(),createElementBlock("button",{key:0,type:"button",disabled:!unref(Ue),class:normalizeClass([[unref(re).e("icon-btn"),{"is-disabled":!unref(Ue)}],"d-arrow-left"]),onClick:bn[2]||(bn[2]=(...hn)=>unref(Ce)&&unref(Ce)(...hn))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_left_default))]),_:1})],10,_hoisted_3$c)):createCommentVNode("v-if",!0),createBaseVNode("button",{type:"button",class:normalizeClass([unref(re).e("icon-btn"),"d-arrow-right"]),onClick:bn[3]||(bn[3]=(...hn)=>unref(_e)&&unref(_e)(...hn))},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(d_arrow_right_default))]),_:1})],2),createBaseVNode("div",null,toDisplayString$1(unref($e)),1)],2),createVNode(MonthTable,{"selection-mode":"range",date:L.value,"min-date":unref(V),"max-date":unref(z),"range-state":unref(oe),"disabled-date":unref($),onChangerange:unref(ae),onPick:kt,onSelect:unref(pe)},null,8,["date","min-date","max-date","range-state","disabled-date","onChangerange","onSelect"])],2)],2)],2)],2))}});var MonthRangePickPanel=_export_sfc$1(_sfc_main$1o,[["__file","/home/runner/work/element-plus/element-plus/packages/components/date-picker/src/date-picker-com/panel-month-range.vue"]]);const getPanel=function(e){switch(e){case"daterange":case"datetimerange":return DateRangePickPanel;case"monthrange":return MonthRangePickPanel;default:return DatePickPanel}};dayjs.extend(localeData);dayjs.extend(advancedFormat);dayjs.extend(customParseFormat);dayjs.extend(weekOfYear);dayjs.extend(weekYear);dayjs.extend(dayOfYear);dayjs.extend(isSameOrAfter);dayjs.extend(isSameOrBefore);var DatePicker=defineComponent({name:"ElDatePicker",install:null,props:{...timePickerDefaultProps,...datePickerProps},emits:["update:modelValue"],setup(e,{expose:t,emit:n,slots:r}){const i=useNamespace("picker-panel");provide("ElPopperOptions",reactive(toRef(e,"popperOptions"))),provide(ROOT_PICKER_INJECTION_KEY,{slots:r,pickerNs:i});const g=ref();t({focus:(k=!0)=>{var j;(j=g.value)==null||j.focus(k)},handleOpen:()=>{var k;(k=g.value)==null||k.handleOpen()},handleClose:()=>{var k;(k=g.value)==null||k.handleClose()}});const y=k=>{n("update:modelValue",k)};return()=>{var k;const j=(k=e.format)!=null?k:DEFAULT_FORMATS_DATEPICKER[e.type]||DEFAULT_FORMATS_DATE,L=getPanel(e.type);return createVNode(CommonPicker,mergeProps(e,{format:j,type:e.type,ref:g,"onUpdate:modelValue":y}),{default:V=>createVNode(L,V,null),"range-separator":r["range-separator"]})}}});const _DatePicker=DatePicker;_DatePicker.install=e=>{e.component(_DatePicker.name,_DatePicker)};const ElDatePicker=_DatePicker,descriptionsKey="elDescriptions";var ElDescriptionsCell=defineComponent({name:"ElDescriptionsCell",props:{cell:{type:Object},tag:{type:String},type:{type:String}},setup(){return{descriptions:inject(descriptionsKey,{})}},render(){var e,t,n,r,i,g;const $=getNormalizedProps(this.cell),{border:y,direction:k}=this.descriptions,j=k==="vertical",L=((n=(t=(e=this.cell)==null?void 0:e.children)==null?void 0:t.label)==null?void 0:n.call(t))||$.label,V=(g=(i=(r=this.cell)==null?void 0:r.children)==null?void 0:i.default)==null?void 0:g.call(i),z=$.span,oe=$.align?`is-${$.align}`:"",re=$.labelAlign?`is-${$.labelAlign}`:oe,ie=$.className,ae=$.labelClassName,le={width:addUnit($.width),minWidth:addUnit($.minWidth)},de=useNamespace("descriptions");switch(this.type){case"label":return h$1(this.tag,{style:le,class:[de.e("cell"),de.e("label"),de.is("bordered-label",y),de.is("vertical-label",j),re,ae],colSpan:j?z:1},L);case"content":return h$1(this.tag,{style:le,class:[de.e("cell"),de.e("content"),de.is("bordered-content",y),de.is("vertical-content",j),oe,ie],colSpan:j?z:z*2-1},V);default:return h$1("td",{style:le,class:[de.e("cell"),oe],colSpan:z},[h$1("span",{class:[de.e("label"),ae]},L),h$1("span",{class:[de.e("content"),ie]},V)])}}});const descriptionsRowProps=buildProps({row:{type:Array,default:()=>[]}}),_hoisted_1$G={key:1},__default__$R=defineComponent({name:"ElDescriptionsRow"}),_sfc_main$1n=defineComponent({...__default__$R,props:descriptionsRowProps,setup(e){const t=inject(descriptionsKey,{});return(n,r)=>unref(t).direction==="vertical"?(openBlock(),createElementBlock(Fragment,{key:0},[createBaseVNode("tr",null,[(openBlock(!0),createElementBlock(Fragment,null,renderList(n.row,(i,g)=>(openBlock(),createBlock(unref(ElDescriptionsCell),{key:`tr1-${g}`,cell:i,tag:"th",type:"label"},null,8,["cell"]))),128))]),createBaseVNode("tr",null,[(openBlock(!0),createElementBlock(Fragment,null,renderList(n.row,(i,g)=>(openBlock(),createBlock(unref(ElDescriptionsCell),{key:`tr2-${g}`,cell:i,tag:"td",type:"content"},null,8,["cell"]))),128))])],64)):(openBlock(),createElementBlock("tr",_hoisted_1$G,[(openBlock(!0),createElementBlock(Fragment,null,renderList(n.row,(i,g)=>(openBlock(),createElementBlock(Fragment,{key:`tr3-${g}`},[unref(t).border?(openBlock(),createElementBlock(Fragment,{key:0},[createVNode(unref(ElDescriptionsCell),{cell:i,tag:"td",type:"label"},null,8,["cell"]),createVNode(unref(ElDescriptionsCell),{cell:i,tag:"td",type:"content"},null,8,["cell"])],64)):(openBlock(),createBlock(unref(ElDescriptionsCell),{key:1,cell:i,tag:"td",type:"both"},null,8,["cell"]))],64))),128))]))}});var ElDescriptionsRow=_export_sfc$1(_sfc_main$1n,[["__file","/home/runner/work/element-plus/element-plus/packages/components/descriptions/src/descriptions-row.vue"]]);const descriptionProps=buildProps({border:{type:Boolean,default:!1},column:{type:Number,default:3},direction:{type:String,values:["horizontal","vertical"],default:"horizontal"},size:useSizeProp,title:{type:String,default:""},extra:{type:String,default:""}}),__default__$Q=defineComponent({name:"ElDescriptions"}),_sfc_main$1m=defineComponent({...__default__$Q,props:descriptionProps,setup(e){const t=e,n=useNamespace("descriptions"),r=useSize(),i=useSlots();provide(descriptionsKey,t);const g=computed(()=>[n.b(),n.m(r.value)]),$=(k,j,L,V=!1)=>(k.props||(k.props={}),j>L&&(k.props.span=L),V&&(k.props.span=j),k),y=()=>{var k;const j=flattedChildren((k=i.default)==null?void 0:k.call(i)).filter(re=>{var ie;return((ie=re==null?void 0:re.type)==null?void 0:ie.name)==="ElDescriptionsItem"}),L=[];let V=[],z=t.column,oe=0;return j.forEach((re,ie)=>{var ae;const le=((ae=re.props)==null?void 0:ae.span)||1;if(iez?z:le),ie===j.length-1){const de=t.column-oe%t.column;V.push($(re,de,z,!0)),L.push(V);return}le(openBlock(),createElementBlock("div",{class:normalizeClass(unref(g))},[k.title||k.extra||k.$slots.title||k.$slots.extra?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(n).e("header"))},[createBaseVNode("div",{class:normalizeClass(unref(n).e("title"))},[renderSlot(k.$slots,"title",{},()=>[createTextVNode(toDisplayString$1(k.title),1)])],2),createBaseVNode("div",{class:normalizeClass(unref(n).e("extra"))},[renderSlot(k.$slots,"extra",{},()=>[createTextVNode(toDisplayString$1(k.extra),1)])],2)],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(n).e("body"))},[createBaseVNode("table",{class:normalizeClass([unref(n).e("table"),unref(n).is("bordered",k.border)])},[createBaseVNode("tbody",null,[(openBlock(!0),createElementBlock(Fragment,null,renderList(y(),(L,V)=>(openBlock(),createBlock(ElDescriptionsRow,{key:V,row:L},null,8,["row"]))),128))])],2)],2)],2))}});var Descriptions=_export_sfc$1(_sfc_main$1m,[["__file","/home/runner/work/element-plus/element-plus/packages/components/descriptions/src/description.vue"]]),DescriptionsItem=defineComponent({name:"ElDescriptionsItem",props:{label:{type:String,default:""},span:{type:Number,default:1},width:{type:[String,Number],default:""},minWidth:{type:[String,Number],default:""},align:{type:String,default:"left"},labelAlign:{type:String,default:""},className:{type:String,default:""},labelClassName:{type:String,default:""}}});const ElDescriptions=withInstall(Descriptions,{DescriptionsItem}),ElDescriptionsItem=withNoopInstall(DescriptionsItem),overlayProps=buildProps({mask:{type:Boolean,default:!0},customMaskEvent:{type:Boolean,default:!1},overlayClass:{type:definePropType([String,Array,Object])},zIndex:{type:definePropType([String,Number])}}),overlayEmits={click:e=>e instanceof MouseEvent};var Overlay$1=defineComponent({name:"ElOverlay",props:overlayProps,emits:overlayEmits,setup(e,{slots:t,emit:n}){const r=useNamespace("overlay"),i=k=>{n("click",k)},{onClick:g,onMousedown:$,onMouseup:y}=useSameTarget(e.customMaskEvent?void 0:i);return()=>e.mask?createVNode("div",{class:[r.b(),e.overlayClass],style:{zIndex:e.zIndex},onClick:g,onMousedown:$,onMouseup:y},[renderSlot(t,"default")],PatchFlags.STYLE|PatchFlags.CLASS|PatchFlags.PROPS,["onClick","onMouseup","onMousedown"]):h$1("div",{class:e.overlayClass,style:{zIndex:e.zIndex,position:"fixed",top:"0px",right:"0px",bottom:"0px",left:"0px"}},[renderSlot(t,"default")])}});const ElOverlay=Overlay$1,dialogContentProps=buildProps({center:{type:Boolean,default:!1},alignCenter:{type:Boolean,default:!1},closeIcon:{type:iconPropType},customClass:{type:String,default:""},draggable:{type:Boolean,default:!1},fullscreen:{type:Boolean,default:!1},showClose:{type:Boolean,default:!0},title:{type:String,default:""}}),dialogContentEmits={close:()=>!0},_hoisted_1$F=["aria-label"],_hoisted_2$q=["id"],__default__$P=defineComponent({name:"ElDialogContent"}),_sfc_main$1l=defineComponent({...__default__$P,props:dialogContentProps,emits:dialogContentEmits,setup(e){const t=e,{t:n}=useLocale(),{Close:r}=CloseComponents,{dialogRef:i,headerRef:g,bodyId:$,ns:y,style:k}=inject(dialogInjectionKey),{focusTrapRef:j}=inject(FOCUS_TRAP_INJECTION_KEY),L=composeRefs(j,i),V=computed(()=>t.draggable);return useDraggable(i,g,V),(z,oe)=>(openBlock(),createElementBlock("div",{ref:unref(L),class:normalizeClass([unref(y).b(),unref(y).is("fullscreen",z.fullscreen),unref(y).is("draggable",unref(V)),unref(y).is("align-center",z.alignCenter),{[unref(y).m("center")]:z.center},z.customClass]),style:normalizeStyle(unref(k)),tabindex:"-1"},[createBaseVNode("header",{ref_key:"headerRef",ref:g,class:normalizeClass(unref(y).e("header"))},[renderSlot(z.$slots,"header",{},()=>[createBaseVNode("span",{role:"heading",class:normalizeClass(unref(y).e("title"))},toDisplayString$1(z.title),3)]),z.showClose?(openBlock(),createElementBlock("button",{key:0,"aria-label":unref(n)("el.dialog.close"),class:normalizeClass(unref(y).e("headerbtn")),type:"button",onClick:oe[0]||(oe[0]=re=>z.$emit("close"))},[createVNode(unref(ElIcon),{class:normalizeClass(unref(y).e("close"))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(z.closeIcon||unref(r))))]),_:1},8,["class"])],10,_hoisted_1$F)):createCommentVNode("v-if",!0)],2),createBaseVNode("div",{id:unref($),class:normalizeClass(unref(y).e("body"))},[renderSlot(z.$slots,"default")],10,_hoisted_2$q),z.$slots.footer?(openBlock(),createElementBlock("footer",{key:0,class:normalizeClass(unref(y).e("footer"))},[renderSlot(z.$slots,"footer")],2)):createCommentVNode("v-if",!0)],6))}});var ElDialogContent=_export_sfc$1(_sfc_main$1l,[["__file","/home/runner/work/element-plus/element-plus/packages/components/dialog/src/dialog-content.vue"]]);const dialogProps=buildProps({...dialogContentProps,appendToBody:{type:Boolean,default:!1},beforeClose:{type:definePropType(Function)},destroyOnClose:{type:Boolean,default:!1},closeOnClickModal:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},lockScroll:{type:Boolean,default:!0},modal:{type:Boolean,default:!0},openDelay:{type:Number,default:0},closeDelay:{type:Number,default:0},top:{type:String},modelValue:{type:Boolean,default:!1},modalClass:String,width:{type:[String,Number]},zIndex:{type:Number},trapFocus:{type:Boolean,default:!1}}),dialogEmits={open:()=>!0,opened:()=>!0,close:()=>!0,closed:()=>!0,[UPDATE_MODEL_EVENT]:e=>isBoolean$1(e),openAutoFocus:()=>!0,closeAutoFocus:()=>!0},useDialog=(e,t)=>{const r=getCurrentInstance().emit,{nextZIndex:i}=useZIndex();let g="";const $=useId(),y=useId(),k=ref(!1),j=ref(!1),L=ref(!1),V=ref(e.zIndex||i());let z,oe;const re=useGlobalConfig("namespace",defaultNamespace),ie=computed(()=>{const kt={},At=`--${re.value}-dialog`;return e.fullscreen||(e.top&&(kt[`${At}-margin-top`]=e.top),e.width&&(kt[`${At}-width`]=addUnit(e.width))),kt}),ae=computed(()=>e.alignCenter?{display:"flex"}:{});function le(){r("opened")}function de(){r("closed"),r(UPDATE_MODEL_EVENT,!1),e.destroyOnClose&&(L.value=!1)}function pe(){r("close")}function he(){oe==null||oe(),z==null||z(),e.openDelay&&e.openDelay>0?{stop:z}=useTimeoutFn(()=>Ce(),e.openDelay):Ce()}function ue(){z==null||z(),oe==null||oe(),e.closeDelay&&e.closeDelay>0?{stop:oe}=useTimeoutFn(()=>Oe(),e.closeDelay):Oe()}function _e(){function kt(At){At||(j.value=!0,k.value=!1)}e.beforeClose?e.beforeClose(kt):ue()}function Ie(){e.closeOnClickModal&&_e()}function Ce(){!isClient||(k.value=!0)}function Oe(){k.value=!1}function $e(){r("openAutoFocus")}function qe(){r("closeAutoFocus")}function ze(kt){var At;((At=kt.detail)==null?void 0:At.focusReason)==="pointer"&&kt.preventDefault()}e.lockScroll&&useLockscreen(k);function Ue(){e.closeOnPressEscape&&_e()}return watch(()=>e.modelValue,kt=>{kt?(j.value=!1,he(),L.value=!0,V.value=e.zIndex?V.value++:i(),nextTick(()=>{r("open"),t.value&&(t.value.scrollTop=0)})):k.value&&ue()}),watch(()=>e.fullscreen,kt=>{!t.value||(kt?(g=t.value.style.transform,t.value.style.transform=""):t.value.style.transform=g)}),onMounted(()=>{e.modelValue&&(k.value=!0,L.value=!0,he())}),{afterEnter:le,afterLeave:de,beforeLeave:pe,handleClose:_e,onModalClick:Ie,close:ue,doClose:Oe,onOpenAutoFocus:$e,onCloseAutoFocus:qe,onCloseRequested:Ue,onFocusoutPrevented:ze,titleId:$,bodyId:y,closed:j,style:ie,overlayDialogStyle:ae,rendered:L,visible:k,zIndex:V}},_hoisted_1$E=["aria-label","aria-labelledby","aria-describedby"],__default__$O=defineComponent({name:"ElDialog",inheritAttrs:!1}),_sfc_main$1k=defineComponent({...__default__$O,props:dialogProps,emits:dialogEmits,setup(e,{expose:t}){const n=e,r=useSlots();useDeprecated({scope:"el-dialog",from:"the title slot",replacement:"the header slot",version:"3.0.0",ref:"https://element-plus.org/en-US/component/dialog.html#slots"},computed(()=>!!r.title)),useDeprecated({scope:"el-dialog",from:"custom-class",replacement:"class",version:"2.3.0",ref:"https://element-plus.org/en-US/component/dialog.html#attributes",type:"Attribute"},computed(()=>!!n.customClass));const i=useNamespace("dialog"),g=ref(),$=ref(),y=ref(),{visible:k,titleId:j,bodyId:L,style:V,overlayDialogStyle:z,rendered:oe,zIndex:re,afterEnter:ie,afterLeave:ae,beforeLeave:le,handleClose:de,onModalClick:pe,onOpenAutoFocus:he,onCloseAutoFocus:ue,onCloseRequested:_e,onFocusoutPrevented:Ie}=useDialog(n,g);provide(dialogInjectionKey,{dialogRef:g,headerRef:$,bodyId:L,ns:i,rendered:oe,style:V});const Ce=useSameTarget(pe),Oe=computed(()=>n.draggable&&!n.fullscreen);return t({visible:k,dialogContentRef:y}),($e,qe)=>(openBlock(),createBlock(Teleport,{to:"body",disabled:!$e.appendToBody},[createVNode(Transition,{name:"dialog-fade",onAfterEnter:unref(ie),onAfterLeave:unref(ae),onBeforeLeave:unref(le),persisted:""},{default:withCtx(()=>[withDirectives(createVNode(unref(ElOverlay),{"custom-mask-event":"",mask:$e.modal,"overlay-class":$e.modalClass,"z-index":unref(re)},{default:withCtx(()=>[createBaseVNode("div",{role:"dialog","aria-modal":"true","aria-label":$e.title||void 0,"aria-labelledby":$e.title?void 0:unref(j),"aria-describedby":unref(L),class:normalizeClass(`${unref(i).namespace.value}-overlay-dialog`),style:normalizeStyle(unref(z)),onClick:qe[0]||(qe[0]=(...ze)=>unref(Ce).onClick&&unref(Ce).onClick(...ze)),onMousedown:qe[1]||(qe[1]=(...ze)=>unref(Ce).onMousedown&&unref(Ce).onMousedown(...ze)),onMouseup:qe[2]||(qe[2]=(...ze)=>unref(Ce).onMouseup&&unref(Ce).onMouseup(...ze))},[createVNode(unref(ElFocusTrap),{loop:"",trapped:unref(k),"focus-start-el":"container",onFocusAfterTrapped:unref(he),onFocusAfterReleased:unref(ue),onFocusoutPrevented:unref(Ie),onReleaseRequested:unref(_e)},{default:withCtx(()=>[unref(oe)?(openBlock(),createBlock(ElDialogContent,mergeProps({key:0,ref_key:"dialogContentRef",ref:y},$e.$attrs,{"custom-class":$e.customClass,center:$e.center,"align-center":$e.alignCenter,"close-icon":$e.closeIcon,draggable:unref(Oe),fullscreen:$e.fullscreen,"show-close":$e.showClose,title:$e.title,onClose:unref(de)}),createSlots({header:withCtx(()=>[$e.$slots.title?renderSlot($e.$slots,"title",{key:1}):renderSlot($e.$slots,"header",{key:0,close:unref(de),titleId:unref(j),titleClass:unref(i).e("title")})]),default:withCtx(()=>[renderSlot($e.$slots,"default")]),_:2},[$e.$slots.footer?{name:"footer",fn:withCtx(()=>[renderSlot($e.$slots,"footer")])}:void 0]),1040,["custom-class","center","align-center","close-icon","draggable","fullscreen","show-close","title","onClose"])):createCommentVNode("v-if",!0)]),_:3},8,["trapped","onFocusAfterTrapped","onFocusAfterReleased","onFocusoutPrevented","onReleaseRequested"])],46,_hoisted_1$E)]),_:3},8,["mask","overlay-class","z-index"]),[[vShow,unref(k)]])]),_:3},8,["onAfterEnter","onAfterLeave","onBeforeLeave"])],8,["disabled"]))}});var Dialog=_export_sfc$1(_sfc_main$1k,[["__file","/home/runner/work/element-plus/element-plus/packages/components/dialog/src/dialog.vue"]]);const ElDialog=withInstall(Dialog),dividerProps=buildProps({direction:{type:String,values:["horizontal","vertical"],default:"horizontal"},contentPosition:{type:String,values:["left","center","right"],default:"center"},borderStyle:{type:definePropType(String),default:"solid"}}),__default__$N=defineComponent({name:"ElDivider"}),_sfc_main$1j=defineComponent({...__default__$N,props:dividerProps,setup(e){const t=e,n=useNamespace("divider"),r=computed(()=>n.cssVar({"border-style":t.borderStyle}));return(i,g)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(n).b(),unref(n).m(i.direction)]),style:normalizeStyle(unref(r)),role:"separator"},[i.$slots.default&&i.direction!=="vertical"?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass([unref(n).e("text"),unref(n).is(i.contentPosition)])},[renderSlot(i.$slots,"default")],2)):createCommentVNode("v-if",!0)],6))}});var Divider=_export_sfc$1(_sfc_main$1j,[["__file","/home/runner/work/element-plus/element-plus/packages/components/divider/src/divider.vue"]]);const ElDivider=withInstall(Divider),drawerProps=buildProps({...dialogProps,direction:{type:String,default:"rtl",values:["ltr","rtl","ttb","btt"]},size:{type:[String,Number],default:"30%"},withHeader:{type:Boolean,default:!0},modalFade:{type:Boolean,default:!0}}),drawerEmits=dialogEmits,_sfc_main$1i=defineComponent({name:"ElDrawer",components:{ElOverlay,ElFocusTrap,ElIcon,Close:close_default},inheritAttrs:!1,props:drawerProps,emits:drawerEmits,setup(e,{slots:t}){useDeprecated({scope:"el-drawer",from:"the title slot",replacement:"the header slot",version:"3.0.0",ref:"https://element-plus.org/en-US/component/drawer.html#slots"},computed(()=>!!t.title)),useDeprecated({scope:"el-drawer",from:"custom-class",replacement:"class",version:"2.3.0",ref:"https://element-plus.org/en-US/component/drawer.html#attributes",type:"Attribute"},computed(()=>!!e.customClass));const n=ref(),r=ref(),i=useNamespace("drawer"),{t:g}=useLocale(),$=computed(()=>e.direction==="rtl"||e.direction==="ltr"),y=computed(()=>addUnit(e.size));return{...useDialog(e,n),drawerRef:n,focusStartRef:r,isHorizontal:$,drawerSize:y,ns:i,t:g}}}),_hoisted_1$D=["aria-label","aria-labelledby","aria-describedby"],_hoisted_2$p=["id"],_hoisted_3$b=["aria-label"],_hoisted_4$9=["id"];function _sfc_render$u(e,t,n,r,i,g){const $=resolveComponent("close"),y=resolveComponent("el-icon"),k=resolveComponent("el-focus-trap"),j=resolveComponent("el-overlay");return openBlock(),createBlock(Teleport,{to:"body",disabled:!e.appendToBody},[createVNode(Transition,{name:e.ns.b("fade"),onAfterEnter:e.afterEnter,onAfterLeave:e.afterLeave,onBeforeLeave:e.beforeLeave,persisted:""},{default:withCtx(()=>[withDirectives(createVNode(j,{mask:e.modal,"overlay-class":e.modalClass,"z-index":e.zIndex,onClick:e.onModalClick},{default:withCtx(()=>[createVNode(k,{loop:"",trapped:e.visible,"focus-trap-el":e.drawerRef,"focus-start-el":e.focusStartRef,onReleaseRequested:e.onCloseRequested},{default:withCtx(()=>[createBaseVNode("div",mergeProps({ref:"drawerRef","aria-modal":"true","aria-label":e.title||void 0,"aria-labelledby":e.title?void 0:e.titleId,"aria-describedby":e.bodyId},e.$attrs,{class:[e.ns.b(),e.direction,e.visible&&"open",e.customClass],style:e.isHorizontal?"width: "+e.drawerSize:"height: "+e.drawerSize,role:"dialog",onClick:t[1]||(t[1]=withModifiers(()=>{},["stop"]))}),[createBaseVNode("span",{ref:"focusStartRef",class:normalizeClass(e.ns.e("sr-focus")),tabindex:"-1"},null,2),e.withHeader?(openBlock(),createElementBlock("header",{key:0,class:normalizeClass(e.ns.e("header"))},[e.$slots.title?renderSlot(e.$slots,"title",{key:1},()=>[createCommentVNode(" DEPRECATED SLOT ")]):renderSlot(e.$slots,"header",{key:0,close:e.handleClose,titleId:e.titleId,titleClass:e.ns.e("title")},()=>[e.$slots.title?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("span",{key:0,id:e.titleId,role:"heading",class:normalizeClass(e.ns.e("title"))},toDisplayString$1(e.title),11,_hoisted_2$p))]),e.showClose?(openBlock(),createElementBlock("button",{key:2,"aria-label":e.t("el.drawer.close"),class:normalizeClass(e.ns.e("close-btn")),type:"button",onClick:t[0]||(t[0]=(...L)=>e.handleClose&&e.handleClose(...L))},[createVNode(y,{class:normalizeClass(e.ns.e("close"))},{default:withCtx(()=>[createVNode($)]),_:1},8,["class"])],10,_hoisted_3$b)):createCommentVNode("v-if",!0)],2)):createCommentVNode("v-if",!0),e.rendered?(openBlock(),createElementBlock("div",{key:1,id:e.bodyId,class:normalizeClass(e.ns.e("body"))},[renderSlot(e.$slots,"default")],10,_hoisted_4$9)):createCommentVNode("v-if",!0),e.$slots.footer?(openBlock(),createElementBlock("div",{key:2,class:normalizeClass(e.ns.e("footer"))},[renderSlot(e.$slots,"footer")],2)):createCommentVNode("v-if",!0)],16,_hoisted_1$D)]),_:3},8,["trapped","focus-trap-el","focus-start-el","onReleaseRequested"])]),_:3},8,["mask","overlay-class","z-index","onClick"]),[[vShow,e.visible]])]),_:3},8,["name","onAfterEnter","onAfterLeave","onBeforeLeave"])],8,["disabled"])}var Drawer=_export_sfc$1(_sfc_main$1i,[["render",_sfc_render$u],["__file","/home/runner/work/element-plus/element-plus/packages/components/drawer/src/drawer.vue"]]);const ElDrawer=withInstall(Drawer),_sfc_main$1h=defineComponent({inheritAttrs:!1});function _sfc_render$t(e,t,n,r,i,g){return renderSlot(e.$slots,"default")}var Collection=_export_sfc$1(_sfc_main$1h,[["render",_sfc_render$t],["__file","/home/runner/work/element-plus/element-plus/packages/components/collection/src/collection.vue"]]);const _sfc_main$1g=defineComponent({name:"ElCollectionItem",inheritAttrs:!1});function _sfc_render$s(e,t,n,r,i,g){return renderSlot(e.$slots,"default")}var CollectionItem=_export_sfc$1(_sfc_main$1g,[["render",_sfc_render$s],["__file","/home/runner/work/element-plus/element-plus/packages/components/collection/src/collection-item.vue"]]);const COLLECTION_ITEM_SIGN="data-el-collection-item",createCollectionWithScope=e=>{const t=`El${e}Collection`,n=`${t}Item`,r=Symbol(t),i=Symbol(n),g={...Collection,name:t,setup(){const y=ref(null),k=new Map;provide(r,{itemMap:k,getItems:()=>{const L=unref(y);if(!L)return[];const V=Array.from(L.querySelectorAll(`[${COLLECTION_ITEM_SIGN}]`));return[...k.values()].sort((oe,re)=>V.indexOf(oe.ref)-V.indexOf(re.ref))},collectionRef:y})}},$={...CollectionItem,name:n,setup(y,{attrs:k}){const j=ref(null),L=inject(r,void 0);provide(i,{collectionItemRef:j}),onMounted(()=>{const V=unref(j);V&&L.itemMap.set(V,{ref:V,...k})}),onBeforeUnmount(()=>{const V=unref(j);L.itemMap.delete(V)})}};return{COLLECTION_INJECTION_KEY:r,COLLECTION_ITEM_INJECTION_KEY:i,ElCollection:g,ElCollectionItem:$}},rovingFocusGroupProps=buildProps({style:{type:definePropType([String,Array,Object])},currentTabId:{type:definePropType(String)},defaultCurrentTabId:String,loop:Boolean,dir:{type:String,values:["ltr","rtl"],default:"ltr"},orientation:{type:definePropType(String)},onBlur:Function,onFocus:Function,onMousedown:Function}),{ElCollection:ElCollection$1,ElCollectionItem:ElCollectionItem$1,COLLECTION_INJECTION_KEY:COLLECTION_INJECTION_KEY$1,COLLECTION_ITEM_INJECTION_KEY:COLLECTION_ITEM_INJECTION_KEY$1}=createCollectionWithScope("RovingFocusGroup"),ROVING_FOCUS_GROUP_INJECTION_KEY=Symbol("elRovingFocusGroup"),ROVING_FOCUS_GROUP_ITEM_INJECTION_KEY=Symbol("elRovingFocusGroupItem"),MAP_KEY_TO_FOCUS_INTENT={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"},getDirectionAwareKey=(e,t)=>{if(t!=="rtl")return e;switch(e){case EVENT_CODE.right:return EVENT_CODE.left;case EVENT_CODE.left:return EVENT_CODE.right;default:return e}},getFocusIntent=(e,t,n)=>{const r=getDirectionAwareKey(e.key,n);if(!(t==="vertical"&&[EVENT_CODE.left,EVENT_CODE.right].includes(r))&&!(t==="horizontal"&&[EVENT_CODE.up,EVENT_CODE.down].includes(r)))return MAP_KEY_TO_FOCUS_INTENT[r]},reorderArray=(e,t)=>e.map((n,r)=>e[(r+t)%e.length]),focusFirst=e=>{const{activeElement:t}=document;for(const n of e)if(n===t||(n.focus(),t!==document.activeElement))return},CURRENT_TAB_ID_CHANGE_EVT="currentTabIdChange",ENTRY_FOCUS_EVT="rovingFocusGroup.entryFocus",EVT_OPTS={bubbles:!1,cancelable:!0},_sfc_main$1f=defineComponent({name:"ElRovingFocusGroupImpl",inheritAttrs:!1,props:rovingFocusGroupProps,emits:[CURRENT_TAB_ID_CHANGE_EVT,"entryFocus"],setup(e,{emit:t}){var n;const r=ref((n=e.currentTabId||e.defaultCurrentTabId)!=null?n:null),i=ref(!1),g=ref(!1),$=ref(null),{getItems:y}=inject(COLLECTION_INJECTION_KEY$1,void 0),k=computed(()=>[{outline:"none"},e.style]),j=ie=>{t(CURRENT_TAB_ID_CHANGE_EVT,ie)},L=()=>{i.value=!0},V=composeEventHandlers(ie=>{var ae;(ae=e.onMousedown)==null||ae.call(e,ie)},()=>{g.value=!0}),z=composeEventHandlers(ie=>{var ae;(ae=e.onFocus)==null||ae.call(e,ie)},ie=>{const ae=!unref(g),{target:le,currentTarget:de}=ie;if(le===de&&ae&&!unref(i)){const pe=new Event(ENTRY_FOCUS_EVT,EVT_OPTS);if(de==null||de.dispatchEvent(pe),!pe.defaultPrevented){const he=y().filter(Oe=>Oe.focusable),ue=he.find(Oe=>Oe.active),_e=he.find(Oe=>Oe.id===unref(r)),Ce=[ue,_e,...he].filter(Boolean).map(Oe=>Oe.ref);focusFirst(Ce)}}g.value=!1}),oe=composeEventHandlers(ie=>{var ae;(ae=e.onBlur)==null||ae.call(e,ie)},()=>{i.value=!1}),re=(...ie)=>{t("entryFocus",...ie)};provide(ROVING_FOCUS_GROUP_INJECTION_KEY,{currentTabbedId:readonly(r),loop:toRef(e,"loop"),tabIndex:computed(()=>unref(i)?-1:0),rovingFocusGroupRef:$,rovingFocusGroupRootStyle:k,orientation:toRef(e,"orientation"),dir:toRef(e,"dir"),onItemFocus:j,onItemShiftTab:L,onBlur:oe,onFocus:z,onMousedown:V}),watch(()=>e.currentTabId,ie=>{r.value=ie!=null?ie:null}),useEventListener($,ENTRY_FOCUS_EVT,re)}});function _sfc_render$r(e,t,n,r,i,g){return renderSlot(e.$slots,"default")}var ElRovingFocusGroupImpl=_export_sfc$1(_sfc_main$1f,[["render",_sfc_render$r],["__file","/home/runner/work/element-plus/element-plus/packages/components/roving-focus-group/src/roving-focus-group-impl.vue"]]);const _sfc_main$1e=defineComponent({name:"ElRovingFocusGroup",components:{ElFocusGroupCollection:ElCollection$1,ElRovingFocusGroupImpl}});function _sfc_render$q(e,t,n,r,i,g){const $=resolveComponent("el-roving-focus-group-impl"),y=resolveComponent("el-focus-group-collection");return openBlock(),createBlock(y,null,{default:withCtx(()=>[createVNode($,normalizeProps(guardReactiveProps(e.$attrs)),{default:withCtx(()=>[renderSlot(e.$slots,"default")]),_:3},16)]),_:3})}var ElRovingFocusGroup=_export_sfc$1(_sfc_main$1e,[["render",_sfc_render$q],["__file","/home/runner/work/element-plus/element-plus/packages/components/roving-focus-group/src/roving-focus-group.vue"]]);const _sfc_main$1d=defineComponent({components:{ElRovingFocusCollectionItem:ElCollectionItem$1},props:{focusable:{type:Boolean,default:!0},active:{type:Boolean,default:!1}},emits:["mousedown","focus","keydown"],setup(e,{emit:t}){const{currentTabbedId:n,loop:r,onItemFocus:i,onItemShiftTab:g}=inject(ROVING_FOCUS_GROUP_INJECTION_KEY,void 0),{getItems:$}=inject(COLLECTION_INJECTION_KEY$1,void 0),y=useId(),k=ref(null),j=composeEventHandlers(oe=>{t("mousedown",oe)},oe=>{e.focusable?i(unref(y)):oe.preventDefault()}),L=composeEventHandlers(oe=>{t("focus",oe)},()=>{i(unref(y))}),V=composeEventHandlers(oe=>{t("keydown",oe)},oe=>{const{key:re,shiftKey:ie,target:ae,currentTarget:le}=oe;if(re===EVENT_CODE.tab&&ie){g();return}if(ae!==le)return;const de=getFocusIntent(oe);if(de){oe.preventDefault();let he=$().filter(ue=>ue.focusable).map(ue=>ue.ref);switch(de){case"last":{he.reverse();break}case"prev":case"next":{de==="prev"&&he.reverse();const ue=he.indexOf(le);he=r.value?reorderArray(he,ue+1):he.slice(ue+1);break}}nextTick(()=>{focusFirst(he)})}}),z=computed(()=>n.value===unref(y));return provide(ROVING_FOCUS_GROUP_ITEM_INJECTION_KEY,{rovingFocusGroupItemRef:k,tabIndex:computed(()=>unref(z)?0:-1),handleMousedown:j,handleFocus:L,handleKeydown:V}),{id:y,handleKeydown:V,handleFocus:L,handleMousedown:j}}});function _sfc_render$p(e,t,n,r,i,g){const $=resolveComponent("el-roving-focus-collection-item");return openBlock(),createBlock($,{id:e.id,focusable:e.focusable,active:e.active},{default:withCtx(()=>[renderSlot(e.$slots,"default")]),_:3},8,["id","focusable","active"])}var ElRovingFocusItem=_export_sfc$1(_sfc_main$1d,[["render",_sfc_render$p],["__file","/home/runner/work/element-plus/element-plus/packages/components/roving-focus-group/src/roving-focus-item.vue"]]);const dropdownProps=buildProps({trigger:useTooltipTriggerProps.trigger,effect:{...useTooltipContentProps.effect,default:"light"},type:{type:definePropType(String)},placement:{type:definePropType(String),default:"bottom"},popperOptions:{type:definePropType(Object),default:()=>({})},id:String,size:{type:String,default:""},splitButton:Boolean,hideOnClick:{type:Boolean,default:!0},loop:{type:Boolean,default:!0},showTimeout:{type:Number,default:150},hideTimeout:{type:Number,default:150},tabindex:{type:definePropType([Number,String]),default:0},maxHeight:{type:definePropType([Number,String]),default:""},popperClass:{type:String,default:""},disabled:{type:Boolean,default:!1},role:{type:String,default:"menu"},buttonProps:{type:definePropType(Object)},teleported:useTooltipContentProps.teleported}),dropdownItemProps=buildProps({command:{type:[Object,String,Number],default:()=>({})},disabled:Boolean,divided:Boolean,textValue:String,icon:{type:iconPropType}}),dropdownMenuProps=buildProps({onKeydown:{type:definePropType(Function)}}),FIRST_KEYS=[EVENT_CODE.down,EVENT_CODE.pageDown,EVENT_CODE.home],LAST_KEYS=[EVENT_CODE.up,EVENT_CODE.pageUp,EVENT_CODE.end],FIRST_LAST_KEYS=[...FIRST_KEYS,...LAST_KEYS],{ElCollection,ElCollectionItem,COLLECTION_INJECTION_KEY,COLLECTION_ITEM_INJECTION_KEY}=createCollectionWithScope("Dropdown"),DROPDOWN_INJECTION_KEY=Symbol("elDropdown"),{ButtonGroup:ElButtonGroup}=ElButton,_sfc_main$1c=defineComponent({name:"ElDropdown",components:{ElButton,ElButtonGroup,ElScrollbar,ElDropdownCollection:ElCollection,ElTooltip,ElRovingFocusGroup,ElOnlyChild:OnlyChild,ElIcon,ArrowDown:arrow_down_default},props:dropdownProps,emits:["visible-change","click","command"],setup(e,{emit:t}){const n=getCurrentInstance(),r=useNamespace("dropdown"),{t:i}=useLocale(),g=ref(),$=ref(),y=ref(null),k=ref(null),j=ref(null),L=ref(null),V=ref(!1),z=[EVENT_CODE.enter,EVENT_CODE.space,EVENT_CODE.down],oe=computed(()=>({maxHeight:addUnit(e.maxHeight)})),re=computed(()=>[r.m(he.value)]),ie=useId().value,ae=computed(()=>e.id||ie);function le(){de()}function de(){var At;(At=y.value)==null||At.onClose()}function pe(){var At;(At=y.value)==null||At.onOpen()}const he=useSize();function ue(...At){t("command",...At)}function _e(){}function Ie(){const At=unref(k);At==null||At.focus(),L.value=null}function Ce(At){L.value=At}function Oe(At){V.value||(At.preventDefault(),At.stopImmediatePropagation())}function $e(){t("visible-change",!0)}function qe(At){(At==null?void 0:At.type)==="keydown"&&k.value.focus()}function ze(){t("visible-change",!1)}return provide(DROPDOWN_INJECTION_KEY,{contentRef:k,role:computed(()=>e.role),triggerId:ae,isUsingKeyboard:V,onItemEnter:_e,onItemLeave:Ie}),provide("elDropdown",{instance:n,dropdownSize:he,handleClick:le,commandHandler:ue,trigger:toRef(e,"trigger"),hideOnClick:toRef(e,"hideOnClick")}),{t:i,ns:r,scrollbar:j,wrapStyle:oe,dropdownTriggerKls:re,dropdownSize:he,triggerId:ae,triggerKeys:z,currentTabId:L,handleCurrentTabIdChange:Ce,handlerMainButtonClick:At=>{t("click",At)},handleEntryFocus:Oe,handleClose:de,handleOpen:pe,handleBeforeShowTooltip:$e,handleShowTooltip:qe,handleBeforeHideTooltip:ze,onFocusAfterTrapped:At=>{var Pt,jt;At.preventDefault(),(jt=(Pt=k.value)==null?void 0:Pt.focus)==null||jt.call(Pt,{preventScroll:!0})},popperRef:y,contentRef:k,triggeringElementRef:g,referenceElementRef:$}}});function _sfc_render$o(e,t,n,r,i,g){var $;const y=resolveComponent("el-dropdown-collection"),k=resolveComponent("el-roving-focus-group"),j=resolveComponent("el-scrollbar"),L=resolveComponent("el-only-child"),V=resolveComponent("el-tooltip"),z=resolveComponent("el-button"),oe=resolveComponent("arrow-down"),re=resolveComponent("el-icon"),ie=resolveComponent("el-button-group");return openBlock(),createElementBlock("div",{class:normalizeClass([e.ns.b(),e.ns.is("disabled",e.disabled)])},[createVNode(V,{ref:"popperRef",role:e.role,effect:e.effect,"fallback-placements":["bottom","top"],"popper-options":e.popperOptions,"gpu-acceleration":!1,"hide-after":e.trigger==="hover"?e.hideTimeout:0,"manual-mode":!0,placement:e.placement,"popper-class":[e.ns.e("popper"),e.popperClass],"reference-element":($=e.referenceElementRef)==null?void 0:$.$el,trigger:e.trigger,"trigger-keys":e.triggerKeys,"trigger-target-el":e.contentRef,"show-after":e.trigger==="hover"?e.showTimeout:0,"stop-popper-mouse-event":!1,"virtual-ref":e.triggeringElementRef,"virtual-triggering":e.splitButton,disabled:e.disabled,transition:`${e.ns.namespace.value}-zoom-in-top`,teleported:e.teleported,pure:"",persistent:"",onBeforeShow:e.handleBeforeShowTooltip,onShow:e.handleShowTooltip,onBeforeHide:e.handleBeforeHideTooltip},createSlots({content:withCtx(()=>[createVNode(j,{ref:"scrollbar","wrap-style":e.wrapStyle,tag:"div","view-class":e.ns.e("list")},{default:withCtx(()=>[createVNode(k,{loop:e.loop,"current-tab-id":e.currentTabId,orientation:"horizontal",onCurrentTabIdChange:e.handleCurrentTabIdChange,onEntryFocus:e.handleEntryFocus},{default:withCtx(()=>[createVNode(y,null,{default:withCtx(()=>[renderSlot(e.$slots,"dropdown")]),_:3})]),_:3},8,["loop","current-tab-id","onCurrentTabIdChange","onEntryFocus"])]),_:3},8,["wrap-style","view-class"])]),_:2},[e.splitButton?void 0:{name:"default",fn:withCtx(()=>[createVNode(L,{id:e.triggerId,role:"button",tabindex:e.tabindex},{default:withCtx(()=>[renderSlot(e.$slots,"default")]),_:3},8,["id","tabindex"])])}]),1032,["role","effect","popper-options","hide-after","placement","popper-class","reference-element","trigger","trigger-keys","trigger-target-el","show-after","virtual-ref","virtual-triggering","disabled","transition","teleported","onBeforeShow","onShow","onBeforeHide"]),e.splitButton?(openBlock(),createBlock(ie,{key:0},{default:withCtx(()=>[createVNode(z,mergeProps({ref:"referenceElementRef"},e.buttonProps,{size:e.dropdownSize,type:e.type,disabled:e.disabled,tabindex:e.tabindex,onClick:e.handlerMainButtonClick}),{default:withCtx(()=>[renderSlot(e.$slots,"default")]),_:3},16,["size","type","disabled","tabindex","onClick"]),createVNode(z,mergeProps({id:e.triggerId,ref:"triggeringElementRef"},e.buttonProps,{role:"button",size:e.dropdownSize,type:e.type,class:e.ns.e("caret-button"),disabled:e.disabled,tabindex:e.tabindex,"aria-label":e.t("el.dropdown.toggleDropdown")}),{default:withCtx(()=>[createVNode(re,{class:normalizeClass(e.ns.e("icon"))},{default:withCtx(()=>[createVNode(oe)]),_:1},8,["class"])]),_:1},16,["id","size","type","class","disabled","tabindex","aria-label"])]),_:3})):createCommentVNode("v-if",!0)],2)}var Dropdown=_export_sfc$1(_sfc_main$1c,[["render",_sfc_render$o],["__file","/home/runner/work/element-plus/element-plus/packages/components/dropdown/src/dropdown.vue"]]);const _sfc_main$1b=defineComponent({name:"DropdownItemImpl",components:{ElIcon},props:dropdownItemProps,emits:["pointermove","pointerleave","click","clickimpl"],setup(e,{emit:t}){const n=useNamespace("dropdown"),{role:r}=inject(DROPDOWN_INJECTION_KEY,void 0),{collectionItemRef:i}=inject(COLLECTION_ITEM_INJECTION_KEY,void 0),{collectionItemRef:g}=inject(COLLECTION_ITEM_INJECTION_KEY$1,void 0),{rovingFocusGroupItemRef:$,tabIndex:y,handleFocus:k,handleKeydown:j,handleMousedown:L}=inject(ROVING_FOCUS_GROUP_ITEM_INJECTION_KEY,void 0),V=composeRefs(i,g,$),z=computed(()=>r.value==="menu"?"menuitem":r.value==="navigation"?"link":"button"),oe=composeEventHandlers(re=>{const{code:ie}=re;if(ie===EVENT_CODE.enter||ie===EVENT_CODE.space)return re.preventDefault(),re.stopImmediatePropagation(),t("clickimpl",re),!0},j);return{ns:n,itemRef:V,dataset:{[COLLECTION_ITEM_SIGN]:""},role:z,tabIndex:y,handleFocus:k,handleKeydown:oe,handleMousedown:L}}}),_hoisted_1$C=["aria-disabled","tabindex","role"];function _sfc_render$n(e,t,n,r,i,g){const $=resolveComponent("el-icon");return openBlock(),createElementBlock(Fragment,null,[e.divided?(openBlock(),createElementBlock("li",mergeProps({key:0,role:"separator",class:e.ns.bem("menu","item","divided")},e.$attrs),null,16)):createCommentVNode("v-if",!0),createBaseVNode("li",mergeProps({ref:e.itemRef},{...e.dataset,...e.$attrs},{"aria-disabled":e.disabled,class:[e.ns.be("menu","item"),e.ns.is("disabled",e.disabled)],tabindex:e.tabIndex,role:e.role,onClick:t[0]||(t[0]=y=>e.$emit("clickimpl",y)),onFocus:t[1]||(t[1]=(...y)=>e.handleFocus&&e.handleFocus(...y)),onKeydown:t[2]||(t[2]=(...y)=>e.handleKeydown&&e.handleKeydown(...y)),onMousedown:t[3]||(t[3]=(...y)=>e.handleMousedown&&e.handleMousedown(...y)),onPointermove:t[4]||(t[4]=y=>e.$emit("pointermove",y)),onPointerleave:t[5]||(t[5]=y=>e.$emit("pointerleave",y))}),[e.icon?(openBlock(),createBlock($,{key:0},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(e.icon)))]),_:1})):createCommentVNode("v-if",!0),renderSlot(e.$slots,"default")],16,_hoisted_1$C)],64)}var ElDropdownItemImpl=_export_sfc$1(_sfc_main$1b,[["render",_sfc_render$n],["__file","/home/runner/work/element-plus/element-plus/packages/components/dropdown/src/dropdown-item-impl.vue"]]);const useDropdown=()=>{const e=inject("elDropdown",{}),t=computed(()=>e==null?void 0:e.dropdownSize);return{elDropdown:e,_elDropdownSize:t}},_sfc_main$1a=defineComponent({name:"ElDropdownItem",components:{ElDropdownCollectionItem:ElCollectionItem,ElRovingFocusItem,ElDropdownItemImpl},inheritAttrs:!1,props:dropdownItemProps,emits:["pointermove","pointerleave","click"],setup(e,{emit:t,attrs:n}){const{elDropdown:r}=useDropdown(),i=getCurrentInstance(),g=ref(null),$=computed(()=>{var oe,re;return(re=(oe=unref(g))==null?void 0:oe.textContent)!=null?re:""}),{onItemEnter:y,onItemLeave:k}=inject(DROPDOWN_INJECTION_KEY,void 0),j=composeEventHandlers(oe=>(t("pointermove",oe),oe.defaultPrevented),whenMouse(oe=>{var re;e.disabled?k(oe):(y(oe),oe.defaultPrevented||(re=oe.currentTarget)==null||re.focus())})),L=composeEventHandlers(oe=>(t("pointerleave",oe),oe.defaultPrevented),whenMouse(oe=>{k(oe)})),V=composeEventHandlers(oe=>{if(!e.disabled)return t("click",oe),oe.type!=="keydown"&&oe.defaultPrevented},oe=>{var re,ie,ae;if(e.disabled){oe.stopImmediatePropagation();return}(re=r==null?void 0:r.hideOnClick)!=null&&re.value&&((ie=r.handleClick)==null||ie.call(r)),(ae=r.commandHandler)==null||ae.call(r,e.command,i,oe)}),z=computed(()=>({...e,...n}));return{handleClick:V,handlePointerMove:j,handlePointerLeave:L,textContent:$,propsAndAttrs:z}}});function _sfc_render$m(e,t,n,r,i,g){var $;const y=resolveComponent("el-dropdown-item-impl"),k=resolveComponent("el-roving-focus-item"),j=resolveComponent("el-dropdown-collection-item");return openBlock(),createBlock(j,{disabled:e.disabled,"text-value":($=e.textValue)!=null?$:e.textContent},{default:withCtx(()=>[createVNode(k,{focusable:!e.disabled},{default:withCtx(()=>[createVNode(y,mergeProps(e.propsAndAttrs,{onPointerleave:e.handlePointerLeave,onPointermove:e.handlePointerMove,onClickimpl:e.handleClick}),{default:withCtx(()=>[renderSlot(e.$slots,"default")]),_:3},16,["onPointerleave","onPointermove","onClickimpl"])]),_:3},8,["focusable"])]),_:3},8,["disabled","text-value"])}var DropdownItem=_export_sfc$1(_sfc_main$1a,[["render",_sfc_render$m],["__file","/home/runner/work/element-plus/element-plus/packages/components/dropdown/src/dropdown-item.vue"]]);const _sfc_main$19=defineComponent({name:"ElDropdownMenu",props:dropdownMenuProps,setup(e){const t=useNamespace("dropdown"),{_elDropdownSize:n}=useDropdown(),r=n.value,{focusTrapRef:i,onKeydown:g}=inject(FOCUS_TRAP_INJECTION_KEY,void 0),{contentRef:$,role:y,triggerId:k}=inject(DROPDOWN_INJECTION_KEY,void 0),{collectionRef:j,getItems:L}=inject(COLLECTION_INJECTION_KEY,void 0),{rovingFocusGroupRef:V,rovingFocusGroupRootStyle:z,tabIndex:oe,onBlur:re,onFocus:ie,onMousedown:ae}=inject(ROVING_FOCUS_GROUP_INJECTION_KEY,void 0),{collectionRef:le}=inject(COLLECTION_INJECTION_KEY$1,void 0),de=computed(()=>[t.b("menu"),t.bm("menu",r==null?void 0:r.value)]),pe=composeRefs($,j,i,V,le),he=composeEventHandlers(_e=>{var Ie;(Ie=e.onKeydown)==null||Ie.call(e,_e)},_e=>{const{currentTarget:Ie,code:Ce,target:Oe}=_e;if(Ie.contains(Oe),EVENT_CODE.tab===Ce&&_e.stopImmediatePropagation(),_e.preventDefault(),Oe!==unref($)||!FIRST_LAST_KEYS.includes(Ce))return;const qe=L().filter(ze=>!ze.disabled).map(ze=>ze.ref);LAST_KEYS.includes(Ce)&&qe.reverse(),focusFirst(qe)});return{size:r,rovingFocusGroupRootStyle:z,tabIndex:oe,dropdownKls:de,role:y,triggerId:k,dropdownListWrapperRef:pe,handleKeydown:_e=>{he(_e),g(_e)},onBlur:re,onFocus:ie,onMousedown:ae}}}),_hoisted_1$B=["role","aria-labelledby"];function _sfc_render$l(e,t,n,r,i,g){return openBlock(),createElementBlock("ul",{ref:e.dropdownListWrapperRef,class:normalizeClass(e.dropdownKls),style:normalizeStyle(e.rovingFocusGroupRootStyle),tabindex:-1,role:e.role,"aria-labelledby":e.triggerId,onBlur:t[0]||(t[0]=(...$)=>e.onBlur&&e.onBlur(...$)),onFocus:t[1]||(t[1]=(...$)=>e.onFocus&&e.onFocus(...$)),onKeydown:t[2]||(t[2]=(...$)=>e.handleKeydown&&e.handleKeydown(...$)),onMousedown:t[3]||(t[3]=(...$)=>e.onMousedown&&e.onMousedown(...$))},[renderSlot(e.$slots,"default")],46,_hoisted_1$B)}var DropdownMenu=_export_sfc$1(_sfc_main$19,[["render",_sfc_render$l],["__file","/home/runner/work/element-plus/element-plus/packages/components/dropdown/src/dropdown-menu.vue"]]);const ElDropdown=withInstall(Dropdown,{DropdownItem,DropdownMenu}),ElDropdownItem=withNoopInstall(DropdownItem),ElDropdownMenu=withNoopInstall(DropdownMenu);let id=0;const _sfc_main$18=defineComponent({name:"ImgEmpty",setup(){return{ns:useNamespace("empty"),id:++id}}}),_hoisted_1$A={viewBox:"0 0 79 86",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},_hoisted_2$o=["id"],_hoisted_3$a=["stop-color"],_hoisted_4$8=["stop-color"],_hoisted_5$7=["id"],_hoisted_6$3=["stop-color"],_hoisted_7$2=["stop-color"],_hoisted_8$2=["id"],_hoisted_9$2={id:"Illustrations",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},_hoisted_10$2={id:"B-type",transform:"translate(-1268.000000, -535.000000)"},_hoisted_11$2={id:"Group-2",transform:"translate(1268.000000, 535.000000)"},_hoisted_12$2=["fill"],_hoisted_13$2=["fill"],_hoisted_14$2={id:"Group-Copy",transform:"translate(34.500000, 31.500000) scale(-1, 1) rotate(-25.000000) translate(-34.500000, -31.500000) translate(7.000000, 10.000000)"},_hoisted_15$1=["fill"],_hoisted_16$1=["fill"],_hoisted_17$1=["fill"],_hoisted_18$1=["fill"],_hoisted_19$1=["fill"],_hoisted_20$1={id:"Rectangle-Copy-17",transform:"translate(53.000000, 45.000000)"},_hoisted_21$1=["fill","xlink:href"],_hoisted_22$1=["fill","mask"],_hoisted_23$1=["fill"];function _sfc_render$k(e,t,n,r,i,g){return openBlock(),createElementBlock("svg",_hoisted_1$A,[createBaseVNode("defs",null,[createBaseVNode("linearGradient",{id:`linearGradient-1-${e.id}`,x1:"38.8503086%",y1:"0%",x2:"61.1496914%",y2:"100%"},[createBaseVNode("stop",{"stop-color":`var(${e.ns.cssVarBlockName("fill-color-1")})`,offset:"0%"},null,8,_hoisted_3$a),createBaseVNode("stop",{"stop-color":`var(${e.ns.cssVarBlockName("fill-color-4")})`,offset:"100%"},null,8,_hoisted_4$8)],8,_hoisted_2$o),createBaseVNode("linearGradient",{id:`linearGradient-2-${e.id}`,x1:"0%",y1:"9.5%",x2:"100%",y2:"90.5%"},[createBaseVNode("stop",{"stop-color":`var(${e.ns.cssVarBlockName("fill-color-1")})`,offset:"0%"},null,8,_hoisted_6$3),createBaseVNode("stop",{"stop-color":`var(${e.ns.cssVarBlockName("fill-color-6")})`,offset:"100%"},null,8,_hoisted_7$2)],8,_hoisted_5$7),createBaseVNode("rect",{id:`path-3-${e.id}`,x:"0",y:"0",width:"17",height:"36"},null,8,_hoisted_8$2)]),createBaseVNode("g",_hoisted_9$2,[createBaseVNode("g",_hoisted_10$2,[createBaseVNode("g",_hoisted_11$2,[createBaseVNode("path",{id:"Oval-Copy-2",d:"M39.5,86 C61.3152476,86 79,83.9106622 79,81.3333333 C79,78.7560045 57.3152476,78 35.5,78 C13.6847524,78 0,78.7560045 0,81.3333333 C0,83.9106622 17.6847524,86 39.5,86 Z",fill:`var(${e.ns.cssVarBlockName("fill-color-3")})`},null,8,_hoisted_12$2),createBaseVNode("polygon",{id:"Rectangle-Copy-14",fill:`var(${e.ns.cssVarBlockName("fill-color-7")})`,transform:"translate(27.500000, 51.500000) scale(1, -1) translate(-27.500000, -51.500000) ",points:"13 58 53 58 42 45 2 45"},null,8,_hoisted_13$2),createBaseVNode("g",_hoisted_14$2,[createBaseVNode("polygon",{id:"Rectangle-Copy-10",fill:`var(${e.ns.cssVarBlockName("fill-color-7")})`,transform:"translate(11.500000, 5.000000) scale(1, -1) translate(-11.500000, -5.000000) ",points:"2.84078316e-14 3 18 3 23 7 5 7"},null,8,_hoisted_15$1),createBaseVNode("polygon",{id:"Rectangle-Copy-11",fill:`var(${e.ns.cssVarBlockName("fill-color-5")})`,points:"-3.69149156e-15 7 38 7 38 43 -3.69149156e-15 43"},null,8,_hoisted_16$1),createBaseVNode("rect",{id:"Rectangle-Copy-12",fill:`url(#linearGradient-1-${e.id})`,transform:"translate(46.500000, 25.000000) scale(-1, 1) translate(-46.500000, -25.000000) ",x:"38",y:"7",width:"17",height:"36"},null,8,_hoisted_17$1),createBaseVNode("polygon",{id:"Rectangle-Copy-13",fill:`var(${e.ns.cssVarBlockName("fill-color-2")})`,transform:"translate(39.500000, 3.500000) scale(-1, 1) translate(-39.500000, -3.500000) ",points:"24 7 41 7 55 -3.63806207e-12 38 -3.63806207e-12"},null,8,_hoisted_18$1)]),createBaseVNode("rect",{id:"Rectangle-Copy-15",fill:`url(#linearGradient-2-${e.id})`,x:"13",y:"45",width:"40",height:"36"},null,8,_hoisted_19$1),createBaseVNode("g",_hoisted_20$1,[createBaseVNode("use",{id:"Mask",fill:`var(${e.ns.cssVarBlockName("fill-color-8")})`,transform:"translate(8.500000, 18.000000) scale(-1, 1) translate(-8.500000, -18.000000) ","xlink:href":`#path-3-${e.id}`},null,8,_hoisted_21$1),createBaseVNode("polygon",{id:"Rectangle-Copy",fill:`var(${e.ns.cssVarBlockName("fill-color-9")})`,mask:`url(#mask-4-${e.id})`,transform:"translate(12.000000, 9.000000) scale(-1, 1) translate(-12.000000, -9.000000) ",points:"7 0 24 0 20 18 7 16.5"},null,8,_hoisted_22$1)]),createBaseVNode("polygon",{id:"Rectangle-Copy-18",fill:`var(${e.ns.cssVarBlockName("fill-color-2")})`,transform:"translate(66.000000, 51.500000) scale(-1, 1) translate(-66.000000, -51.500000) ",points:"62 45 79 45 70 58 53 58"},null,8,_hoisted_23$1)])])])])}var ImgEmpty=_export_sfc$1(_sfc_main$18,[["render",_sfc_render$k],["__file","/home/runner/work/element-plus/element-plus/packages/components/empty/src/img-empty.vue"]]);const emptyProps={image:{type:String,default:""},imageSize:Number,description:{type:String,default:""}},_hoisted_1$z=["src"],_hoisted_2$n={key:1},__default__$M=defineComponent({name:"ElEmpty"}),_sfc_main$17=defineComponent({...__default__$M,props:emptyProps,setup(e){const t=e,{t:n}=useLocale(),r=useNamespace("empty"),i=computed(()=>t.description||n("el.table.emptyText")),g=computed(()=>({width:t.imageSize?`${t.imageSize}px`:""}));return($,y)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref(r).b())},[createBaseVNode("div",{class:normalizeClass(unref(r).e("image")),style:normalizeStyle(unref(g))},[$.image?(openBlock(),createElementBlock("img",{key:0,src:$.image,ondragstart:"return false"},null,8,_hoisted_1$z)):renderSlot($.$slots,"image",{key:1},()=>[createVNode(ImgEmpty)])],6),createBaseVNode("div",{class:normalizeClass(unref(r).e("description"))},[$.$slots.description?renderSlot($.$slots,"description",{key:0}):(openBlock(),createElementBlock("p",_hoisted_2$n,toDisplayString$1(unref(i)),1))],2),$.$slots.default?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(r).e("bottom"))},[renderSlot($.$slots,"default")],2)):createCommentVNode("v-if",!0)],2))}});var Empty=_export_sfc$1(_sfc_main$17,[["__file","/home/runner/work/element-plus/element-plus/packages/components/empty/src/empty.vue"]]);const ElEmpty=withInstall(Empty),formProps=buildProps({model:Object,rules:{type:definePropType(Object)},labelPosition:{type:String,values:["left","right","top"],default:"right"},requireAsteriskPosition:{type:String,values:["left","right"],default:"left"},labelWidth:{type:[String,Number],default:""},labelSuffix:{type:String,default:""},inline:Boolean,inlineMessage:Boolean,statusIcon:Boolean,showMessage:{type:Boolean,default:!0},size:{type:String,values:componentSizes},disabled:Boolean,validateOnRuleChange:{type:Boolean,default:!0},hideRequiredAsterisk:{type:Boolean,default:!1},scrollToError:Boolean}),formEmits={validate:(e,t,n)=>(isArray$4(e)||isString$3(e))&&isBoolean$1(t)&&isString$3(n)};function useFormLabelWidth(){const e=ref([]),t=computed(()=>{if(!e.value.length)return"0";const g=Math.max(...e.value);return g?`${g}px`:""});function n(g){const $=e.value.indexOf(g);return $===-1&&t.value,$}function r(g,$){if(g&&$){const y=n($);e.value.splice(y,1,g)}else g&&e.value.push(g)}function i(g){const $=n(g);$>-1&&e.value.splice($,1)}return{autoLabelWidth:t,registerLabelWidth:r,deregisterLabelWidth:i}}const filterFields=(e,t)=>{const n=castArray$1(t);return n.length>0?e.filter(r=>r.prop&&n.includes(r.prop)):e},COMPONENT_NAME$e="ElForm",__default__$L=defineComponent({name:COMPONENT_NAME$e}),_sfc_main$16=defineComponent({...__default__$L,props:formProps,emits:formEmits,setup(e,{expose:t,emit:n}){const r=e,i=[],g=useSize(),$=useNamespace("form"),y=computed(()=>{const{labelPosition:de,inline:pe}=r;return[$.b(),$.m(g.value||"default"),{[$.m(`label-${de}`)]:de,[$.m("inline")]:pe}]}),k=de=>{i.push(de)},j=de=>{de.prop&&i.splice(i.indexOf(de),1)},L=(de=[])=>{!r.model||filterFields(i,de).forEach(pe=>pe.resetField())},V=(de=[])=>{filterFields(i,de).forEach(pe=>pe.clearValidate())},z=computed(()=>!!r.model),oe=de=>{if(i.length===0)return[];const pe=filterFields(i,de);return pe.length?pe:[]},re=async de=>ae(void 0,de),ie=async(de=[])=>{if(!z.value)return!1;const pe=oe(de);if(pe.length===0)return!0;let he={};for(const ue of pe)try{await ue.validate("")}catch(_e){he={...he,..._e}}return Object.keys(he).length===0?!0:Promise.reject(he)},ae=async(de=[],pe)=>{const he=!isFunction$4(pe);try{const ue=await ie(de);return ue===!0&&(pe==null||pe(ue)),ue}catch(ue){if(ue instanceof Error)throw ue;const _e=ue;return r.scrollToError&&le(Object.keys(_e)[0]),pe==null||pe(!1,_e),he&&Promise.reject(_e)}},le=de=>{var pe;const he=filterFields(i,de)[0];he&&((pe=he.$el)==null||pe.scrollIntoView())};return watch(()=>r.rules,()=>{r.validateOnRuleChange&&re().catch(de=>void 0)},{deep:!0}),provide(formContextKey,reactive({...toRefs(r),emit:n,resetFields:L,clearValidate:V,validateField:ae,addField:k,removeField:j,...useFormLabelWidth()})),t({validate:re,validateField:ae,resetFields:L,clearValidate:V,scrollToField:le}),(de,pe)=>(openBlock(),createElementBlock("form",{class:normalizeClass(unref(y))},[renderSlot(de.$slots,"default")],2))}});var Form=_export_sfc$1(_sfc_main$16,[["__file","/home/runner/work/element-plus/element-plus/packages/components/form/src/form.vue"]]);function _extends(){return _extends=Object.assign?Object.assign.bind():function(e){for(var t=1;t1?t-1:0),r=1;r=g)return y;switch(y){case"%s":return String(n[i++]);case"%d":return Number(n[i++]);case"%j":try{return JSON.stringify(n[i++])}catch{return"[Circular]"}break;default:return y}});return $}return e}function isNativeStringType(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function isEmptyValue(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||isNativeStringType(t)&&typeof e=="string"&&!e)}function asyncParallelArray(e,t,n){var r=[],i=0,g=e.length;function $(y){r.push.apply(r,y||[]),i++,i===g&&n(r)}e.forEach(function(y){t(y,$)})}function asyncSerialArray(e,t,n){var r=0,i=e.length;function g($){if($&&$.length){n($);return}var y=r;r=r+1,y()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},types={integer:function(t){return types.number(t)&&parseInt(t,10)===t},float:function(t){return types.number(t)&&!types.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch{return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!types.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&t.length<=320&&!!t.match(pattern$2.email)},url:function(t){return typeof t=="string"&&t.length<=2048&&!!t.match(getUrlRegex())},hex:function(t){return typeof t=="string"&&!!t.match(pattern$2.hex)}},type$1=function(t,n,r,i,g){if(t.required&&n===void 0){required$1(t,n,r,i,g);return}var $=["integer","float","array","regexp","object","method","email","number","date","url","hex"],y=t.type;$.indexOf(y)>-1?types[y](n)||i.push(format$1(g.messages.types[y],t.fullField,t.type)):y&&typeof n!==t.type&&i.push(format$1(g.messages.types[y],t.fullField,t.type))},range=function(t,n,r,i,g){var $=typeof t.len=="number",y=typeof t.min=="number",k=typeof t.max=="number",j=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,L=n,V=null,z=typeof n=="number",oe=typeof n=="string",re=Array.isArray(n);if(z?V="number":oe?V="string":re&&(V="array"),!V)return!1;re&&(L=n.length),oe&&(L=n.replace(j,"_").length),$?L!==t.len&&i.push(format$1(g.messages[V].len,t.fullField,t.len)):y&&!k&&Lt.max?i.push(format$1(g.messages[V].max,t.fullField,t.max)):y&&k&&(Lt.max)&&i.push(format$1(g.messages[V].range,t.fullField,t.min,t.max))},ENUM$1="enum",enumerable$1=function(t,n,r,i,g){t[ENUM$1]=Array.isArray(t[ENUM$1])?t[ENUM$1]:[],t[ENUM$1].indexOf(n)===-1&&i.push(format$1(g.messages[ENUM$1],t.fullField,t[ENUM$1].join(", ")))},pattern$1=function(t,n,r,i,g){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(n)||i.push(format$1(g.messages.pattern.mismatch,t.fullField,n,t.pattern));else if(typeof t.pattern=="string"){var $=new RegExp(t.pattern);$.test(n)||i.push(format$1(g.messages.pattern.mismatch,t.fullField,n,t.pattern))}}},rules={required:required$1,whitespace,type:type$1,range,enum:enumerable$1,pattern:pattern$1},string=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n,"string")&&!t.required)return r();rules.required(t,n,i,$,g,"string"),isEmptyValue(n,"string")||(rules.type(t,n,i,$,g),rules.range(t,n,i,$,g),rules.pattern(t,n,i,$,g),t.whitespace===!0&&rules.whitespace(t,n,i,$,g))}r($)},method=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n)&&!t.required)return r();rules.required(t,n,i,$,g),n!==void 0&&rules.type(t,n,i,$,g)}r($)},number$1=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(n===""&&(n=void 0),isEmptyValue(n)&&!t.required)return r();rules.required(t,n,i,$,g),n!==void 0&&(rules.type(t,n,i,$,g),rules.range(t,n,i,$,g))}r($)},_boolean=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n)&&!t.required)return r();rules.required(t,n,i,$,g),n!==void 0&&rules.type(t,n,i,$,g)}r($)},regexp=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n)&&!t.required)return r();rules.required(t,n,i,$,g),isEmptyValue(n)||rules.type(t,n,i,$,g)}r($)},integer=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n)&&!t.required)return r();rules.required(t,n,i,$,g),n!==void 0&&(rules.type(t,n,i,$,g),rules.range(t,n,i,$,g))}r($)},floatFn=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n)&&!t.required)return r();rules.required(t,n,i,$,g),n!==void 0&&(rules.type(t,n,i,$,g),rules.range(t,n,i,$,g))}r($)},array=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(n==null&&!t.required)return r();rules.required(t,n,i,$,g,"array"),n!=null&&(rules.type(t,n,i,$,g),rules.range(t,n,i,$,g))}r($)},object=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n)&&!t.required)return r();rules.required(t,n,i,$,g),n!==void 0&&rules.type(t,n,i,$,g)}r($)},ENUM="enum",enumerable=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n)&&!t.required)return r();rules.required(t,n,i,$,g),n!==void 0&&rules[ENUM](t,n,i,$,g)}r($)},pattern=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n,"string")&&!t.required)return r();rules.required(t,n,i,$,g),isEmptyValue(n,"string")||rules.pattern(t,n,i,$,g)}r($)},date=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n,"date")&&!t.required)return r();if(rules.required(t,n,i,$,g),!isEmptyValue(n,"date")){var k;n instanceof Date?k=n:k=new Date(n),rules.type(t,k,i,$,g),k&&rules.range(t,k.getTime(),i,$,g)}}r($)},required=function(t,n,r,i,g){var $=[],y=Array.isArray(n)?"array":typeof n;rules.required(t,n,i,$,g,y),r($)},type=function(t,n,r,i,g){var $=t.type,y=[],k=t.required||!t.required&&i.hasOwnProperty(t.field);if(k){if(isEmptyValue(n,$)&&!t.required)return r();rules.required(t,n,i,y,g,$),isEmptyValue(n,$)||rules.type(t,n,i,y,g)}r(y)},any=function(t,n,r,i,g){var $=[],y=t.required||!t.required&&i.hasOwnProperty(t.field);if(y){if(isEmptyValue(n)&&!t.required)return r();rules.required(t,n,i,$,g)}r($)},validators={string,method,number:number$1,boolean:_boolean,regexp,integer,float:floatFn,array,object,enum:enumerable,pattern,date,url:type,hex:type,email:type,required,any};function newMessages(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var messages$1=newMessages(),Schema=function(){function e(n){this.rules=null,this._messages=messages$1,this.define(n)}var t=e.prototype;return t.define=function(r){var i=this;if(!r)throw new Error("Cannot configure a schema with no rules");if(typeof r!="object"||Array.isArray(r))throw new Error("Rules must be an object");this.rules={},Object.keys(r).forEach(function(g){var $=r[g];i.rules[g]=Array.isArray($)?$:[$]})},t.messages=function(r){return r&&(this._messages=deepMerge(newMessages(),r)),this._messages},t.validate=function(r,i,g){var $=this;i===void 0&&(i={}),g===void 0&&(g=function(){});var y=r,k=i,j=g;if(typeof k=="function"&&(j=k,k={}),!this.rules||Object.keys(this.rules).length===0)return j&&j(null,y),Promise.resolve(y);function L(ie){var ae=[],le={};function de(he){if(Array.isArray(he)){var ue;ae=(ue=ae).concat.apply(ue,he)}else ae.push(he)}for(var pe=0;pe");const i=useNamespace("form"),g=ref(),$=ref(0),y=()=>{var L;if((L=g.value)!=null&&L.firstElementChild){const V=window.getComputedStyle(g.value.firstElementChild).width;return Math.ceil(Number.parseFloat(V))}else return 0},k=(L="update")=>{nextTick(()=>{t.default&&e.isAutoWidth&&(L==="update"?$.value=y():L==="remove"&&(n==null||n.deregisterLabelWidth($.value)))})},j=()=>k("update");return onMounted(()=>{j()}),onBeforeUnmount(()=>{k("remove")}),onUpdated(()=>j()),watch($,(L,V)=>{e.updateAll&&(n==null||n.registerLabelWidth(L,V))}),useResizeObserver(computed(()=>{var L,V;return(V=(L=g.value)==null?void 0:L.firstElementChild)!=null?V:null}),j),()=>{var L,V;if(!t)return null;const{isAutoWidth:z}=e;if(z){const oe=n==null?void 0:n.autoLabelWidth,re=r==null?void 0:r.hasLabel,ie={};if(re&&oe&&oe!=="auto"){const ae=Math.max(0,Number.parseInt(oe,10)-$.value),le=n.labelPosition==="left"?"marginRight":"marginLeft";ae&&(ie[le]=`${ae}px`)}return createVNode("div",{ref:g,class:[i.be("item","label-wrap")],style:ie},[(L=t.default)==null?void 0:L.call(t)])}else return createVNode(Fragment,{ref:g},[(V=t.default)==null?void 0:V.call(t)])}}});const _hoisted_1$y=["role","aria-labelledby"],__default__$K=defineComponent({name:"ElFormItem"}),_sfc_main$15=defineComponent({...__default__$K,props:formItemProps,setup(e,{expose:t}){const n=e,r=useSlots(),i=inject(formContextKey,void 0),g=inject(formItemContextKey,void 0),$=useSize(void 0,{formItem:!1}),y=useNamespace("form-item"),k=useId().value,j=ref([]),L=ref(""),V=refDebounced(L,100),z=ref(""),oe=ref();let re,ie=!1;const ae=computed(()=>{if((i==null?void 0:i.labelPosition)==="top")return{};const Sn=addUnit(n.labelWidth||(i==null?void 0:i.labelWidth)||"");return Sn?{width:Sn}:{}}),le=computed(()=>{if((i==null?void 0:i.labelPosition)==="top"||(i==null?void 0:i.inline))return{};if(!n.label&&!n.labelWidth&&Oe)return{};const Sn=addUnit(n.labelWidth||(i==null?void 0:i.labelWidth)||"");return!n.label&&!r.label?{marginLeft:Sn}:{}}),de=computed(()=>[y.b(),y.m($.value),y.is("error",L.value==="error"),y.is("validating",L.value==="validating"),y.is("success",L.value==="success"),y.is("required",kt.value||n.required),y.is("no-asterisk",i==null?void 0:i.hideRequiredAsterisk),(i==null?void 0:i.requireAsteriskPosition)==="right"?"asterisk-right":"asterisk-left",{[y.m("feedback")]:i==null?void 0:i.statusIcon}]),pe=computed(()=>isBoolean$1(n.inlineMessage)?n.inlineMessage:(i==null?void 0:i.inlineMessage)||!1),he=computed(()=>[y.e("error"),{[y.em("error","inline")]:pe.value}]),ue=computed(()=>n.prop?isString$3(n.prop)?n.prop:n.prop.join("."):""),_e=computed(()=>!!(n.label||r.label)),Ie=computed(()=>n.for||j.value.length===1?j.value[0]:void 0),Ce=computed(()=>!Ie.value&&_e.value),Oe=!!g,$e=computed(()=>{const Sn=i==null?void 0:i.model;if(!(!Sn||!n.prop))return getProp(Sn,n.prop).value}),qe=computed(()=>{const{required:Sn}=n,Bn=[];n.rules&&Bn.push(...castArray$1(n.rules));const An=i==null?void 0:i.rules;if(An&&n.prop){const Pn=getProp(An,n.prop).value;Pn&&Bn.push(...castArray$1(Pn))}if(Sn!==void 0){const Pn=Bn.map((Mn,Fn)=>[Mn,Fn]).filter(([Mn])=>Object.keys(Mn).includes("required"));if(Pn.length>0)for(const[Mn,Fn]of Pn)Mn.required!==Sn&&(Bn[Fn]={...Mn,required:Sn});else Bn.push({required:Sn})}return Bn}),ze=computed(()=>qe.value.length>0),Ue=Sn=>qe.value.filter(An=>!An.trigger||!Sn?!0:Array.isArray(An.trigger)?An.trigger.includes(Sn):An.trigger===Sn).map(({trigger:An,...Pn})=>Pn),kt=computed(()=>qe.value.some(Sn=>Sn.required)),At=computed(()=>{var Sn;return V.value==="error"&&n.showMessage&&((Sn=i==null?void 0:i.showMessage)!=null?Sn:!0)}),Pt=computed(()=>`${n.label||""}${(i==null?void 0:i.labelSuffix)||""}`),jt=Sn=>{L.value=Sn},bn=Sn=>{var Bn,An;const{errors:Pn,fields:Mn}=Sn;(!Pn||!Mn)&&console.error(Sn),jt("error"),z.value=Pn?(An=(Bn=Pn==null?void 0:Pn[0])==null?void 0:Bn.message)!=null?An:`${n.prop} is required`:"",i==null||i.emit("validate",n.prop,!1,z.value)},hn=()=>{jt("success"),i==null||i.emit("validate",n.prop,!0,"")},Dt=async Sn=>{const Bn=ue.value;return new Schema({[Bn]:Sn}).validate({[Bn]:$e.value},{firstFields:!0}).then(()=>(hn(),!0)).catch(Pn=>(bn(Pn),Promise.reject(Pn)))},wn=async(Sn,Bn)=>{if(ie||!n.prop)return!1;const An=isFunction$4(Bn);if(!ze.value)return Bn==null||Bn(!1),!1;const Pn=Ue(Sn);return Pn.length===0?(Bn==null||Bn(!0),!0):(jt("validating"),Dt(Pn).then(()=>(Bn==null||Bn(!0),!0)).catch(Mn=>{const{fields:Fn}=Mn;return Bn==null||Bn(!1,Fn),An?!1:Promise.reject(Fn)}))},_n=()=>{jt(""),z.value="",ie=!1},vn=async()=>{const Sn=i==null?void 0:i.model;if(!Sn||!n.prop)return;const Bn=getProp(Sn,n.prop);ie=!0,Bn.value=clone(re),await nextTick(),_n(),ie=!1},Cn=Sn=>{j.value.includes(Sn)||j.value.push(Sn)},xn=Sn=>{j.value=j.value.filter(Bn=>Bn!==Sn)};watch(()=>n.error,Sn=>{z.value=Sn||"",jt(Sn?"error":"")},{immediate:!0}),watch(()=>n.validateStatus,Sn=>jt(Sn||""));const En=reactive({...toRefs(n),$el:oe,size:$,validateState:L,labelId:k,inputIds:j,isGroup:Ce,hasLabel:_e,addInputId:Cn,removeInputId:xn,resetField:vn,clearValidate:_n,validate:wn});return provide(formItemContextKey,En),onMounted(()=>{n.prop&&(i==null||i.addField(En),re=clone($e.value))}),onBeforeUnmount(()=>{i==null||i.removeField(En)}),t({size:$,validateMessage:z,validateState:L,validate:wn,clearValidate:_n,resetField:vn}),(Sn,Bn)=>{var An;return openBlock(),createElementBlock("div",{ref_key:"formItemRef",ref:oe,class:normalizeClass(unref(de)),role:unref(Ce)?"group":void 0,"aria-labelledby":unref(Ce)?unref(k):void 0},[createVNode(unref(FormLabelWrap),{"is-auto-width":unref(ae).width==="auto","update-all":((An=unref(i))==null?void 0:An.labelWidth)==="auto"},{default:withCtx(()=>[unref(_e)?(openBlock(),createBlock(resolveDynamicComponent(unref(Ie)?"label":"div"),{key:0,id:unref(k),for:unref(Ie),class:normalizeClass(unref(y).e("label")),style:normalizeStyle(unref(ae))},{default:withCtx(()=>[renderSlot(Sn.$slots,"label",{label:unref(Pt)},()=>[createTextVNode(toDisplayString$1(unref(Pt)),1)])]),_:3},8,["id","for","class","style"])):createCommentVNode("v-if",!0)]),_:3},8,["is-auto-width","update-all"]),createBaseVNode("div",{class:normalizeClass(unref(y).e("content")),style:normalizeStyle(unref(le))},[renderSlot(Sn.$slots,"default"),createVNode(Transition,{name:`${unref(y).namespace.value}-zoom-in-top`},{default:withCtx(()=>[unref(At)?renderSlot(Sn.$slots,"error",{key:0,error:z.value},()=>[createBaseVNode("div",{class:normalizeClass(unref(he))},toDisplayString$1(z.value),3)]):createCommentVNode("v-if",!0)]),_:3},8,["name"])],6)],10,_hoisted_1$y)}}});var FormItem=_export_sfc$1(_sfc_main$15,[["__file","/home/runner/work/element-plus/element-plus/packages/components/form/src/form-item.vue"]]);const ElForm=withInstall(Form,{FormItem}),ElFormItem=withNoopInstall(FormItem),imageViewerProps=buildProps({urlList:{type:definePropType(Array),default:()=>mutable([])},zIndex:{type:Number},initialIndex:{type:Number,default:0},infinite:{type:Boolean,default:!0},hideOnClickModal:{type:Boolean,default:!1},teleported:{type:Boolean,default:!1},closeOnPressEscape:{type:Boolean,default:!0},zoomRate:{type:Number,default:1.2}}),imageViewerEmits={close:()=>!0,switch:e=>isNumber$1(e)},_hoisted_1$x=["src"],__default__$J=defineComponent({name:"ElImageViewer"}),_sfc_main$14=defineComponent({...__default__$J,props:imageViewerProps,emits:imageViewerEmits,setup(e,{expose:t,emit:n}){const r=e,i={CONTAIN:{name:"contain",icon:markRaw(full_screen_default)},ORIGINAL:{name:"original",icon:markRaw(scale_to_original_default)}},g=isFirefox()?"DOMMouseScroll":"mousewheel",{t:$}=useLocale(),y=useNamespace("image-viewer"),{nextZIndex:k}=useZIndex(),j=ref(),L=ref([]),V=effectScope(),z=ref(!0),oe=ref(r.initialIndex),re=shallowRef(i.CONTAIN),ie=ref({scale:1,deg:0,offsetX:0,offsetY:0,enableTransition:!1}),ae=computed(()=>{const{urlList:bn}=r;return bn.length<=1}),le=computed(()=>oe.value===0),de=computed(()=>oe.value===r.urlList.length-1),pe=computed(()=>r.urlList[oe.value]),he=computed(()=>{const{scale:bn,deg:hn,offsetX:Dt,offsetY:wn,enableTransition:_n}=ie.value;let vn=Dt/bn,Cn=wn/bn;switch(hn%360){case 90:case-270:[vn,Cn]=[Cn,-vn];break;case 180:case-180:[vn,Cn]=[-vn,-Cn];break;case 270:case-90:[vn,Cn]=[-Cn,vn];break}const xn={transform:`scale(${bn}) rotate(${hn}deg) translate(${vn}px, ${Cn}px)`,transition:_n?"transform .3s":""};return re.value.name===i.CONTAIN.name&&(xn.maxWidth=xn.maxHeight="100%"),xn}),ue=computed(()=>isNumber$1(r.zIndex)?r.zIndex:k());function _e(){Ce(),n("close")}function Ie(){const bn=throttle(Dt=>{switch(Dt.code){case EVENT_CODE.esc:r.closeOnPressEscape&&_e();break;case EVENT_CODE.space:Ue();break;case EVENT_CODE.left:At();break;case EVENT_CODE.up:jt("zoomIn");break;case EVENT_CODE.right:Pt();break;case EVENT_CODE.down:jt("zoomOut");break}}),hn=throttle(Dt=>{(Dt.wheelDelta?Dt.wheelDelta:-Dt.detail)>0?jt("zoomIn",{zoomRate:r.zoomRate,enableTransition:!1}):jt("zoomOut",{zoomRate:r.zoomRate,enableTransition:!1})});V.run(()=>{useEventListener(document,"keydown",bn),useEventListener(document,g,hn)})}function Ce(){V.stop()}function Oe(){z.value=!1}function $e(bn){z.value=!1,bn.target.alt=$("el.image.error")}function qe(bn){if(z.value||bn.button!==0||!j.value)return;ie.value.enableTransition=!1;const{offsetX:hn,offsetY:Dt}=ie.value,wn=bn.pageX,_n=bn.pageY,vn=throttle(xn=>{ie.value={...ie.value,offsetX:hn+xn.pageX-wn,offsetY:Dt+xn.pageY-_n}}),Cn=useEventListener(document,"mousemove",vn);useEventListener(document,"mouseup",()=>{Cn()}),bn.preventDefault()}function ze(){ie.value={scale:1,deg:0,offsetX:0,offsetY:0,enableTransition:!1}}function Ue(){if(z.value)return;const bn=keysOf(i),hn=Object.values(i),Dt=re.value.name,_n=(hn.findIndex(vn=>vn.name===Dt)+1)%bn.length;re.value=i[bn[_n]],ze()}function kt(bn){const hn=r.urlList.length;oe.value=(bn+hn)%hn}function At(){le.value&&!r.infinite||kt(oe.value-1)}function Pt(){de.value&&!r.infinite||kt(oe.value+1)}function jt(bn,hn={}){if(z.value)return;const{zoomRate:Dt,rotateDeg:wn,enableTransition:_n}={zoomRate:r.zoomRate,rotateDeg:90,enableTransition:!0,...hn};switch(bn){case"zoomOut":ie.value.scale>.2&&(ie.value.scale=Number.parseFloat((ie.value.scale/Dt).toFixed(3)));break;case"zoomIn":ie.value.scale<7&&(ie.value.scale=Number.parseFloat((ie.value.scale*Dt).toFixed(3)));break;case"clockwise":ie.value.deg+=wn;break;case"anticlockwise":ie.value.deg-=wn;break}ie.value.enableTransition=_n}return watch(pe,()=>{nextTick(()=>{const bn=L.value[0];bn!=null&&bn.complete||(z.value=!0)})}),watch(oe,bn=>{ze(),n("switch",bn)}),onMounted(()=>{var bn,hn;Ie(),(hn=(bn=j.value)==null?void 0:bn.focus)==null||hn.call(bn)}),t({setActiveItem:kt}),(bn,hn)=>(openBlock(),createBlock(Teleport,{to:"body",disabled:!bn.teleported},[createVNode(Transition,{name:"viewer-fade",appear:""},{default:withCtx(()=>[createBaseVNode("div",{ref_key:"wrapper",ref:j,tabindex:-1,class:normalizeClass(unref(y).e("wrapper")),style:normalizeStyle({zIndex:unref(ue)})},[createBaseVNode("div",{class:normalizeClass(unref(y).e("mask")),onClick:hn[0]||(hn[0]=withModifiers(Dt=>bn.hideOnClickModal&&_e(),["self"]))},null,2),createCommentVNode(" CLOSE "),createBaseVNode("span",{class:normalizeClass([unref(y).e("btn"),unref(y).e("close")]),onClick:_e},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(close_default))]),_:1})],2),createCommentVNode(" ARROW "),unref(ae)?createCommentVNode("v-if",!0):(openBlock(),createElementBlock(Fragment,{key:0},[createBaseVNode("span",{class:normalizeClass([unref(y).e("btn"),unref(y).e("prev"),unref(y).is("disabled",!bn.infinite&&unref(le))]),onClick:At},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_left_default))]),_:1})],2),createBaseVNode("span",{class:normalizeClass([unref(y).e("btn"),unref(y).e("next"),unref(y).is("disabled",!bn.infinite&&unref(de))]),onClick:Pt},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_right_default))]),_:1})],2)],64)),createCommentVNode(" ACTIONS "),createBaseVNode("div",{class:normalizeClass([unref(y).e("btn"),unref(y).e("actions")])},[createBaseVNode("div",{class:normalizeClass(unref(y).e("actions__inner"))},[createVNode(unref(ElIcon),{onClick:hn[1]||(hn[1]=Dt=>jt("zoomOut"))},{default:withCtx(()=>[createVNode(unref(zoom_out_default))]),_:1}),createVNode(unref(ElIcon),{onClick:hn[2]||(hn[2]=Dt=>jt("zoomIn"))},{default:withCtx(()=>[createVNode(unref(zoom_in_default))]),_:1}),createBaseVNode("i",{class:normalizeClass(unref(y).e("actions__divider"))},null,2),createVNode(unref(ElIcon),{onClick:Ue},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(re).icon)))]),_:1}),createBaseVNode("i",{class:normalizeClass(unref(y).e("actions__divider"))},null,2),createVNode(unref(ElIcon),{onClick:hn[3]||(hn[3]=Dt=>jt("anticlockwise"))},{default:withCtx(()=>[createVNode(unref(refresh_left_default))]),_:1}),createVNode(unref(ElIcon),{onClick:hn[4]||(hn[4]=Dt=>jt("clockwise"))},{default:withCtx(()=>[createVNode(unref(refresh_right_default))]),_:1})],2)],2),createCommentVNode(" CANVAS "),createBaseVNode("div",{class:normalizeClass(unref(y).e("canvas"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(bn.urlList,(Dt,wn)=>withDirectives((openBlock(),createElementBlock("img",{ref_for:!0,ref:_n=>L.value[wn]=_n,key:Dt,src:Dt,style:normalizeStyle(unref(he)),class:normalizeClass(unref(y).e("img")),onLoad:Oe,onError:$e,onMousedown:qe},null,46,_hoisted_1$x)),[[vShow,wn===oe.value]])),128))],2),renderSlot(bn.$slots,"default")],6)]),_:3})],8,["disabled"]))}});var ImageViewer=_export_sfc$1(_sfc_main$14,[["__file","/home/runner/work/element-plus/element-plus/packages/components/image-viewer/src/image-viewer.vue"]]);const ElImageViewer=withInstall(ImageViewer),imageProps=buildProps({hideOnClickModal:{type:Boolean,default:!1},src:{type:String,default:""},fit:{type:String,values:["","contain","cover","fill","none","scale-down"],default:""},loading:{type:String,values:["eager","lazy"]},lazy:{type:Boolean,default:!1},scrollContainer:{type:definePropType([String,Object])},previewSrcList:{type:definePropType(Array),default:()=>mutable([])},previewTeleported:{type:Boolean,default:!1},zIndex:{type:Number},initialIndex:{type:Number,default:0},infinite:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},zoomRate:{type:Number,default:1.2}}),imageEmits={load:e=>e instanceof Event,error:e=>e instanceof Event,switch:e=>isNumber$1(e),close:()=>!0,show:()=>!0},_hoisted_1$w=["src","loading"],_hoisted_2$m={key:0},__default__$I=defineComponent({name:"ElImage",inheritAttrs:!1}),_sfc_main$13=defineComponent({...__default__$I,props:imageProps,emits:imageEmits,setup(e,{emit:t}){const n=e;let r="";const{t:i}=useLocale(),g=useNamespace("image"),$=useAttrs$1(),y=useAttrs(),k=ref(),j=ref(!1),L=ref(!0),V=ref(!1),z=ref(),oe=ref(),re=isClient&&"loading"in HTMLImageElement.prototype;let ie,ae;const le=computed(()=>$.style),de=computed(()=>{const{fit:jt}=n;return isClient&&jt?{objectFit:jt}:{}}),pe=computed(()=>{const{previewSrcList:jt}=n;return Array.isArray(jt)&&jt.length>0}),he=computed(()=>{const{previewSrcList:jt,initialIndex:bn}=n;let hn=bn;return bn>jt.length-1&&(hn=0),hn}),ue=computed(()=>n.loading==="eager"?!1:!re&&n.loading==="lazy"||n.lazy),_e=()=>{!isClient||(L.value=!0,j.value=!1,k.value=n.src)};function Ie(jt){L.value=!1,j.value=!1,t("load",jt)}function Ce(jt){L.value=!1,j.value=!0,t("error",jt)}function Oe(){isInContainer(z.value,oe.value)&&(_e(),ze())}const $e=useThrottleFn(Oe,200);async function qe(){var jt;if(!isClient)return;await nextTick();const{scrollContainer:bn}=n;isElement$1(bn)?oe.value=bn:isString$3(bn)&&bn!==""?oe.value=(jt=document.querySelector(bn))!=null?jt:void 0:z.value&&(oe.value=getScrollContainer(z.value)),oe.value&&(ie=useEventListener(oe,"scroll",$e),setTimeout(()=>Oe(),100))}function ze(){!isClient||!oe.value||!$e||(ie==null||ie(),oe.value=void 0)}function Ue(jt){if(!!jt.ctrlKey){if(jt.deltaY<0)return jt.preventDefault(),!1;if(jt.deltaY>0)return jt.preventDefault(),!1}}function kt(){!pe.value||(ae=useEventListener("wheel",Ue,{passive:!1}),r=document.body.style.overflow,document.body.style.overflow="hidden",V.value=!0,t("show"))}function At(){ae==null||ae(),document.body.style.overflow=r,V.value=!1,t("close")}function Pt(jt){t("switch",jt)}return watch(()=>n.src,()=>{ue.value?(L.value=!0,j.value=!1,ze(),qe()):_e()}),onMounted(()=>{ue.value?qe():_e()}),(jt,bn)=>(openBlock(),createElementBlock("div",{ref_key:"container",ref:z,class:normalizeClass([unref(g).b(),jt.$attrs.class]),style:normalizeStyle(unref(le))},[k.value!==void 0&&!j.value?(openBlock(),createElementBlock("img",mergeProps({key:0},unref(y),{src:k.value,loading:jt.loading,style:unref(de),class:[unref(g).e("inner"),unref(pe)&&unref(g).e("preview"),L.value&&unref(g).is("loading")],onClick:kt,onLoad:Ie,onError:Ce}),null,16,_hoisted_1$w)):createCommentVNode("v-if",!0),L.value||j.value?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref(g).e("wrapper"))},[L.value?renderSlot(jt.$slots,"placeholder",{key:0},()=>[createBaseVNode("div",{class:normalizeClass(unref(g).e("placeholder"))},null,2)]):j.value?renderSlot(jt.$slots,"error",{key:1},()=>[createBaseVNode("div",{class:normalizeClass(unref(g).e("error"))},toDisplayString$1(unref(i)("el.image.error")),3)]):createCommentVNode("v-if",!0)],2)):createCommentVNode("v-if",!0),unref(pe)?(openBlock(),createElementBlock(Fragment,{key:2},[V.value?(openBlock(),createBlock(unref(ElImageViewer),{key:0,"z-index":jt.zIndex,"initial-index":unref(he),infinite:jt.infinite,"zoom-rate":jt.zoomRate,"url-list":jt.previewSrcList,"hide-on-click-modal":jt.hideOnClickModal,teleported:jt.previewTeleported,"close-on-press-escape":jt.closeOnPressEscape,onClose:At,onSwitch:Pt},{default:withCtx(()=>[jt.$slots.viewer?(openBlock(),createElementBlock("div",_hoisted_2$m,[renderSlot(jt.$slots,"viewer")])):createCommentVNode("v-if",!0)]),_:3},8,["z-index","initial-index","infinite","zoom-rate","url-list","hide-on-click-modal","teleported","close-on-press-escape"])):createCommentVNode("v-if",!0)],64)):createCommentVNode("v-if",!0)],6))}});var Image$1=_export_sfc$1(_sfc_main$13,[["__file","/home/runner/work/element-plus/element-plus/packages/components/image/src/image.vue"]]);const ElImage=withInstall(Image$1),inputNumberProps=buildProps({id:{type:String,default:void 0},step:{type:Number,default:1},stepStrictly:Boolean,max:{type:Number,default:Number.POSITIVE_INFINITY},min:{type:Number,default:Number.NEGATIVE_INFINITY},modelValue:Number,readonly:Boolean,disabled:Boolean,size:useSizeProp,controls:{type:Boolean,default:!0},controlsPosition:{type:String,default:"",values:["","right"]},valueOnClear:{type:[String,Number,null],validator:e=>e===null||isNumber$1(e)||["min","max"].includes(e),default:null},name:String,label:String,placeholder:String,precision:{type:Number,validator:e=>e>=0&&e===Number.parseInt(`${e}`,10)},validateEvent:{type:Boolean,default:!0}}),inputNumberEmits={[CHANGE_EVENT]:(e,t)=>t!==e,blur:e=>e instanceof FocusEvent,focus:e=>e instanceof FocusEvent,[INPUT_EVENT]:e=>isNumber$1(e)||isNil(e),[UPDATE_MODEL_EVENT]:e=>isNumber$1(e)||isNil(e)},_hoisted_1$v=["aria-label","onKeydown"],_hoisted_2$l=["aria-label","onKeydown"],__default__$H=defineComponent({name:"ElInputNumber"}),_sfc_main$12=defineComponent({...__default__$H,props:inputNumberProps,emits:inputNumberEmits,setup(e,{expose:t,emit:n}){const r=e,{t:i}=useLocale(),g=useNamespace("input-number"),$=ref(),y=reactive({currentValue:r.modelValue,userInput:null}),{formItem:k}=useFormItem(),j=computed(()=>isNumber$1(r.modelValue)&&r.modelValue<=r.min),L=computed(()=>isNumber$1(r.modelValue)&&r.modelValue>=r.max),V=computed(()=>{const Ue=le(r.step);return isUndefined(r.precision)?Math.max(le(r.modelValue),Ue):(Ue>r.precision,r.precision)}),z=computed(()=>r.controls&&r.controlsPosition==="right"),oe=useSize(),re=useDisabled(),ie=computed(()=>{if(y.userInput!==null)return y.userInput;let Ue=y.currentValue;if(isNil(Ue))return"";if(isNumber$1(Ue)){if(Number.isNaN(Ue))return"";isUndefined(r.precision)||(Ue=Ue.toFixed(r.precision))}return Ue}),ae=(Ue,kt)=>{if(isUndefined(kt)&&(kt=V.value),kt===0)return Math.round(Ue);let At=String(Ue);const Pt=At.indexOf(".");if(Pt===-1||!At.replace(".","").split("")[Pt+kt])return Ue;const hn=At.length;return At.charAt(hn-1)==="5"&&(At=`${At.slice(0,Math.max(0,hn-1))}6`),Number.parseFloat(Number(At).toFixed(kt))},le=Ue=>{if(isNil(Ue))return 0;const kt=Ue.toString(),At=kt.indexOf(".");let Pt=0;return At!==-1&&(Pt=kt.length-At-1),Pt},de=(Ue,kt=1)=>isNumber$1(Ue)?ae(Ue+r.step*kt):y.currentValue,pe=()=>{if(r.readonly||re.value||L.value)return;const Ue=Number(ie.value)||0,kt=de(Ue);_e(kt),n(INPUT_EVENT,y.currentValue)},he=()=>{if(r.readonly||re.value||j.value)return;const Ue=Number(ie.value)||0,kt=de(Ue,-1);_e(kt),n(INPUT_EVENT,y.currentValue)},ue=(Ue,kt)=>{const{max:At,min:Pt,step:jt,precision:bn,stepStrictly:hn,valueOnClear:Dt}=r;let wn=Number(Ue);if(isNil(Ue)||Number.isNaN(wn))return null;if(Ue===""){if(Dt===null)return null;wn=isString$3(Dt)?{min:Pt,max:At}[Dt]:Dt}return hn&&(wn=ae(Math.round(wn/jt)*jt,bn)),isUndefined(bn)||(wn=ae(wn,bn)),(wn>At||wnAt?At:Pt,kt&&n(UPDATE_MODEL_EVENT,wn)),wn},_e=(Ue,kt=!0)=>{var At;const Pt=y.currentValue,jt=ue(Ue);if(Pt!==jt){if(!kt){n(UPDATE_MODEL_EVENT,jt);return}y.userInput=null,n(UPDATE_MODEL_EVENT,jt),n(CHANGE_EVENT,jt,Pt),r.validateEvent&&((At=k==null?void 0:k.validate)==null||At.call(k,"change").catch(bn=>void 0)),y.currentValue=jt}},Ie=Ue=>{y.userInput=Ue;const kt=Ue===""?null:Number(Ue);n(INPUT_EVENT,kt),_e(kt,!1)},Ce=Ue=>{const kt=Ue!==""?Number(Ue):"";(isNumber$1(kt)&&!Number.isNaN(kt)||Ue==="")&&_e(kt),y.userInput=null},Oe=()=>{var Ue,kt;(kt=(Ue=$.value)==null?void 0:Ue.focus)==null||kt.call(Ue)},$e=()=>{var Ue,kt;(kt=(Ue=$.value)==null?void 0:Ue.blur)==null||kt.call(Ue)},qe=Ue=>{n("focus",Ue)},ze=Ue=>{var kt;n("blur",Ue),r.validateEvent&&((kt=k==null?void 0:k.validate)==null||kt.call(k,"blur").catch(At=>void 0))};return watch(()=>r.modelValue,Ue=>{const kt=ue(y.userInput),At=ue(Ue,!0);!isNumber$1(kt)&&(!kt||kt!==At)&&(y.currentValue=At,y.userInput=null)},{immediate:!0}),onMounted(()=>{var Ue;const{min:kt,max:At,modelValue:Pt}=r,jt=(Ue=$.value)==null?void 0:Ue.input;if(jt.setAttribute("role","spinbutton"),Number.isFinite(At)?jt.setAttribute("aria-valuemax",String(At)):jt.removeAttribute("aria-valuemax"),Number.isFinite(kt)?jt.setAttribute("aria-valuemin",String(kt)):jt.removeAttribute("aria-valuemin"),jt.setAttribute("aria-valuenow",String(y.currentValue)),jt.setAttribute("aria-disabled",String(re.value)),!isNumber$1(Pt)&&Pt!=null){let bn=Number(Pt);Number.isNaN(bn)&&(bn=null),n(UPDATE_MODEL_EVENT,bn)}}),onUpdated(()=>{var Ue;const kt=(Ue=$.value)==null?void 0:Ue.input;kt==null||kt.setAttribute("aria-valuenow",`${y.currentValue}`)}),t({focus:Oe,blur:$e}),(Ue,kt)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(g).b(),unref(g).m(unref(oe)),unref(g).is("disabled",unref(re)),unref(g).is("without-controls",!Ue.controls),unref(g).is("controls-right",unref(z))]),onDragstart:kt[0]||(kt[0]=withModifiers(()=>{},["prevent"]))},[Ue.controls?withDirectives((openBlock(),createElementBlock("span",{key:0,role:"button","aria-label":unref(i)("el.inputNumber.decrease"),class:normalizeClass([unref(g).e("decrease"),unref(g).is("disabled",unref(j))]),onKeydown:withKeys(he,["enter"])},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[unref(z)?(openBlock(),createBlock(unref(arrow_down_default),{key:0})):(openBlock(),createBlock(unref(minus_default),{key:1}))]),_:1})],42,_hoisted_1$v)),[[unref(vRepeatClick),he]]):createCommentVNode("v-if",!0),Ue.controls?withDirectives((openBlock(),createElementBlock("span",{key:1,role:"button","aria-label":unref(i)("el.inputNumber.increase"),class:normalizeClass([unref(g).e("increase"),unref(g).is("disabled",unref(L))]),onKeydown:withKeys(pe,["enter"])},[createVNode(unref(ElIcon),null,{default:withCtx(()=>[unref(z)?(openBlock(),createBlock(unref(arrow_up_default),{key:0})):(openBlock(),createBlock(unref(plus_default),{key:1}))]),_:1})],42,_hoisted_2$l)),[[unref(vRepeatClick),pe]]):createCommentVNode("v-if",!0),createVNode(unref(ElInput),{id:Ue.id,ref_key:"input",ref:$,type:"number",step:Ue.step,"model-value":unref(ie),placeholder:Ue.placeholder,readonly:Ue.readonly,disabled:unref(re),size:unref(oe),max:Ue.max,min:Ue.min,name:Ue.name,label:Ue.label,"validate-event":!1,onKeydown:[withKeys(withModifiers(pe,["prevent"]),["up"]),withKeys(withModifiers(he,["prevent"]),["down"])],onBlur:ze,onFocus:qe,onInput:Ie,onChange:Ce},null,8,["id","step","model-value","placeholder","readonly","disabled","size","max","min","name","label","onKeydown"])],34))}});var InputNumber=_export_sfc$1(_sfc_main$12,[["__file","/home/runner/work/element-plus/element-plus/packages/components/input-number/src/input-number.vue"]]);const ElInputNumber=withInstall(InputNumber),linkProps=buildProps({type:{type:String,values:["primary","success","warning","info","danger","default"],default:"default"},underline:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},href:{type:String,default:""},icon:{type:iconPropType}}),linkEmits={click:e=>e instanceof MouseEvent},_hoisted_1$u=["href"],__default__$G=defineComponent({name:"ElLink"}),_sfc_main$11=defineComponent({...__default__$G,props:linkProps,emits:linkEmits,setup(e,{emit:t}){const n=e,r=useNamespace("link"),i=computed(()=>[r.b(),r.m(n.type),r.is("disabled",n.disabled),r.is("underline",n.underline&&!n.disabled)]);function g($){n.disabled||t("click",$)}return($,y)=>(openBlock(),createElementBlock("a",{class:normalizeClass(unref(i)),href:$.disabled||!$.href?void 0:$.href,onClick:g},[$.icon?(openBlock(),createBlock(unref(ElIcon),{key:0},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent($.icon)))]),_:1})):createCommentVNode("v-if",!0),$.$slots.default?(openBlock(),createElementBlock("span",{key:1,class:normalizeClass(unref(r).e("inner"))},[renderSlot($.$slots,"default")],2)):createCommentVNode("v-if",!0),$.$slots.icon?renderSlot($.$slots,"icon",{key:2}):createCommentVNode("v-if",!0)],10,_hoisted_1$u))}});var Link=_export_sfc$1(_sfc_main$11,[["__file","/home/runner/work/element-plus/element-plus/packages/components/link/src/link.vue"]]);const ElLink=withInstall(Link);class SubMenu$1{constructor(t,n){this.parent=t,this.domNode=n,this.subIndex=0,this.subIndex=0,this.init()}init(){this.subMenuItems=this.domNode.querySelectorAll("li"),this.addListeners()}gotoSubIndex(t){t===this.subMenuItems.length?t=0:t<0&&(t=this.subMenuItems.length-1),this.subMenuItems[t].focus(),this.subIndex=t}addListeners(){const t=this.parent.domNode;Array.prototype.forEach.call(this.subMenuItems,n=>{n.addEventListener("keydown",r=>{let i=!1;switch(r.code){case EVENT_CODE.down:{this.gotoSubIndex(this.subIndex+1),i=!0;break}case EVENT_CODE.up:{this.gotoSubIndex(this.subIndex-1),i=!0;break}case EVENT_CODE.tab:{triggerEvent(t,"mouseleave");break}case EVENT_CODE.enter:case EVENT_CODE.space:{i=!0,r.currentTarget.click();break}}return i&&(r.preventDefault(),r.stopPropagation()),!1})})}}class MenuItem$1{constructor(t,n){this.domNode=t,this.submenu=null,this.submenu=null,this.init(n)}init(t){this.domNode.setAttribute("tabindex","0");const n=this.domNode.querySelector(`.${t}-menu`);n&&(this.submenu=new SubMenu$1(this,n)),this.addListeners()}addListeners(){this.domNode.addEventListener("keydown",t=>{let n=!1;switch(t.code){case EVENT_CODE.down:{triggerEvent(t.currentTarget,"mouseenter"),this.submenu&&this.submenu.gotoSubIndex(0),n=!0;break}case EVENT_CODE.up:{triggerEvent(t.currentTarget,"mouseenter"),this.submenu&&this.submenu.gotoSubIndex(this.submenu.subMenuItems.length-1),n=!0;break}case EVENT_CODE.tab:{triggerEvent(t.currentTarget,"mouseleave");break}case EVENT_CODE.enter:case EVENT_CODE.space:{n=!0,t.currentTarget.click();break}}n&&t.preventDefault()})}}class Menu$1{constructor(t,n){this.domNode=t,this.init(n)}init(t){const n=this.domNode.childNodes;Array.from(n).forEach(r=>{r.nodeType===1&&new MenuItem$1(r,t)})}}const _sfc_main$10=defineComponent({name:"ElMenuCollapseTransition",setup(){const e=useNamespace("menu");return{listeners:{onBeforeEnter:n=>n.style.opacity="0.2",onEnter(n,r){addClass(n,`${e.namespace.value}-opacity-transition`),n.style.opacity="1",r()},onAfterEnter(n){removeClass(n,`${e.namespace.value}-opacity-transition`),n.style.opacity=""},onBeforeLeave(n){n.dataset||(n.dataset={}),hasClass(n,e.m("collapse"))?(removeClass(n,e.m("collapse")),n.dataset.oldOverflow=n.style.overflow,n.dataset.scrollWidth=n.clientWidth.toString(),addClass(n,e.m("collapse"))):(addClass(n,e.m("collapse")),n.dataset.oldOverflow=n.style.overflow,n.dataset.scrollWidth=n.clientWidth.toString(),removeClass(n,e.m("collapse"))),n.style.width=`${n.scrollWidth}px`,n.style.overflow="hidden"},onLeave(n){addClass(n,"horizontal-collapse-transition"),n.style.width=`${n.dataset.scrollWidth}px`}}}}});function _sfc_render$j(e,t,n,r,i,g){return openBlock(),createBlock(Transition,mergeProps({mode:"out-in"},e.listeners),{default:withCtx(()=>[renderSlot(e.$slots,"default")]),_:3},16)}var ElMenuCollapseTransition=_export_sfc$1(_sfc_main$10,[["render",_sfc_render$j],["__file","/home/runner/work/element-plus/element-plus/packages/components/menu/src/menu-collapse-transition.vue"]]);function useMenu(e,t){const n=computed(()=>{let i=e.parent;const g=[t.value];for(;i.type.name!=="ElMenu";)i.props.index&&g.unshift(i.props.index),i=i.parent;return g});return{parentMenu:computed(()=>{let i=e.parent;for(;i&&!["ElMenu","ElSubMenu"].includes(i.type.name);)i=i.parent;return i}),indexPath:n}}function useMenuColor(e){return computed(()=>{const n=e.backgroundColor;return n?new TinyColor(n).shade(20).toString():""})}const useMenuCssVar=(e,t)=>{const n=useNamespace("menu");return computed(()=>n.cssVarBlock({"text-color":e.textColor||"","hover-text-color":e.textColor||"","bg-color":e.backgroundColor||"","hover-bg-color":useMenuColor(e).value||"","active-color":e.activeTextColor||"",level:`${t}`}))},subMenuProps=buildProps({index:{type:String,required:!0},showTimeout:{type:Number,default:300},hideTimeout:{type:Number,default:300},popperClass:String,disabled:Boolean,popperAppendToBody:{type:Boolean,default:void 0},popperOffset:{type:Number,default:6},expandCloseIcon:{type:iconPropType},expandOpenIcon:{type:iconPropType},collapseCloseIcon:{type:iconPropType},collapseOpenIcon:{type:iconPropType}}),COMPONENT_NAME$c="ElSubMenu";var SubMenu=defineComponent({name:COMPONENT_NAME$c,props:subMenuProps,setup(e,{slots:t,expose:n}){const r=getCurrentInstance(),{indexPath:i,parentMenu:g}=useMenu(r,computed(()=>e.index)),$=useNamespace("menu"),y=useNamespace("sub-menu"),k=inject("rootMenu");k||throwError(COMPONENT_NAME$c,"can not inject root menu");const j=inject(`subMenu:${g.value.uid}`);j||throwError(COMPONENT_NAME$c,"can not inject sub menu");const L=ref({}),V=ref({});let z;const oe=ref(!1),re=ref(),ie=ref(null),ae=computed(()=>qe.value==="horizontal"&&de.value?"bottom-start":"right-start"),le=computed(()=>qe.value==="horizontal"&&de.value||qe.value==="vertical"&&!k.props.collapse?e.expandCloseIcon&&e.expandOpenIcon?_e.value?e.expandOpenIcon:e.expandCloseIcon:arrow_down_default:e.collapseCloseIcon&&e.collapseOpenIcon?_e.value?e.collapseOpenIcon:e.collapseCloseIcon:arrow_right_default),de=computed(()=>j.level===0),pe=computed(()=>e.popperAppendToBody===void 0?de.value:Boolean(e.popperAppendToBody)),he=computed(()=>k.props.collapse?`${$.namespace.value}-zoom-in-left`:`${$.namespace.value}-zoom-in-top`),ue=computed(()=>qe.value==="horizontal"&&de.value?["bottom-start","bottom-end","top-start","top-end","right-start","left-start"]:["right-start","left-start","bottom-start","bottom-end","top-start","top-end"]),_e=computed(()=>k.openedMenus.includes(e.index)),Ie=computed(()=>{let hn=!1;return Object.values(L.value).forEach(Dt=>{Dt.active&&(hn=!0)}),Object.values(V.value).forEach(Dt=>{Dt.active&&(hn=!0)}),hn}),Ce=computed(()=>k.props.backgroundColor||""),Oe=computed(()=>k.props.activeTextColor||""),$e=computed(()=>k.props.textColor||""),qe=computed(()=>k.props.mode),ze=reactive({index:e.index,indexPath:i,active:Ie}),Ue=computed(()=>qe.value!=="horizontal"?{color:$e.value}:{borderBottomColor:Ie.value?k.props.activeTextColor?Oe.value:"":"transparent",color:Ie.value?Oe.value:$e.value}),kt=()=>{var hn,Dt,wn;return(wn=(Dt=(hn=ie.value)==null?void 0:hn.popperRef)==null?void 0:Dt.popperInstanceRef)==null?void 0:wn.destroy()},At=hn=>{hn||kt()},Pt=()=>{k.props.menuTrigger==="hover"&&k.props.mode==="horizontal"||k.props.collapse&&k.props.mode==="vertical"||e.disabled||k.handleSubMenuClick({index:e.index,indexPath:i.value,active:Ie.value})},jt=(hn,Dt=e.showTimeout)=>{var wn;hn.type!=="focus"&&(k.props.menuTrigger==="click"&&k.props.mode==="horizontal"||!k.props.collapse&&k.props.mode==="vertical"||e.disabled||(j.mouseInChild.value=!0,z==null||z(),{stop:z}=useTimeoutFn(()=>{k.openMenu(e.index,i.value)},Dt),pe.value&&((wn=g.value.vnode.el)==null||wn.dispatchEvent(new MouseEvent("mouseenter")))))},bn=(hn=!1)=>{var Dt,wn;k.props.menuTrigger==="click"&&k.props.mode==="horizontal"||!k.props.collapse&&k.props.mode==="vertical"||(z==null||z(),j.mouseInChild.value=!1,{stop:z}=useTimeoutFn(()=>!oe.value&&k.closeMenu(e.index,i.value),e.hideTimeout),pe.value&&hn&&((Dt=r.parent)==null?void 0:Dt.type.name)==="ElSubMenu"&&((wn=j.handleMouseleave)==null||wn.call(j,!0)))};watch(()=>k.props.collapse,hn=>At(Boolean(hn)));{const hn=wn=>{V.value[wn.index]=wn},Dt=wn=>{delete V.value[wn.index]};provide(`subMenu:${r.uid}`,{addSubMenu:hn,removeSubMenu:Dt,handleMouseleave:bn,mouseInChild:oe,level:j.level+1})}return n({opened:_e}),onMounted(()=>{k.addSubMenu(ze),j.addSubMenu(ze)}),onBeforeUnmount(()=>{j.removeSubMenu(ze),k.removeSubMenu(ze)}),()=>{var hn;const Dt=[(hn=t.title)==null?void 0:hn.call(t),h$1(ElIcon,{class:y.e("icon-arrow"),style:{transform:_e.value?e.expandCloseIcon&&e.expandOpenIcon||e.collapseCloseIcon&&e.collapseOpenIcon&&k.props.collapse?"none":"rotateZ(180deg)":"none"}},{default:()=>isString$3(le.value)?h$1(r.appContext.components[le.value]):h$1(le.value)})],wn=useMenuCssVar(k.props,j.level+1),_n=k.isMenuPopup?h$1(ElTooltip,{ref:ie,visible:_e.value,effect:"light",pure:!0,offset:e.popperOffset,showArrow:!1,persistent:!0,popperClass:e.popperClass,placement:ae.value,teleported:pe.value,fallbackPlacements:ue.value,transition:he.value,gpuAcceleration:!1},{content:()=>{var vn;return h$1("div",{class:[$.m(qe.value),$.m("popup-container"),e.popperClass],onMouseenter:Cn=>jt(Cn,100),onMouseleave:()=>bn(!0),onFocus:Cn=>jt(Cn,100)},[h$1("ul",{class:[$.b(),$.m("popup"),$.m(`popup-${ae.value}`)],style:wn.value},[(vn=t.default)==null?void 0:vn.call(t)])])},default:()=>h$1("div",{class:y.e("title"),style:[Ue.value,{backgroundColor:Ce.value}],onClick:Pt},Dt)}):h$1(Fragment,{},[h$1("div",{class:y.e("title"),style:[Ue.value,{backgroundColor:Ce.value}],ref:re,onClick:Pt},Dt),h$1(_CollapseTransition,{},{default:()=>{var vn;return withDirectives(h$1("ul",{role:"menu",class:[$.b(),$.m("inline")],style:wn.value},[(vn=t.default)==null?void 0:vn.call(t)]),[[vShow,_e.value]])}})]);return h$1("li",{class:[y.b(),y.is("active",Ie.value),y.is("opened",_e.value),y.is("disabled",e.disabled)],role:"menuitem",ariaHaspopup:!0,ariaExpanded:_e.value,onMouseenter:jt,onMouseleave:()=>bn(!0),onFocus:jt},[_n])}}});const menuProps=buildProps({mode:{type:String,values:["horizontal","vertical"],default:"vertical"},defaultActive:{type:String,default:""},defaultOpeneds:{type:definePropType(Array),default:()=>mutable([])},uniqueOpened:Boolean,router:Boolean,menuTrigger:{type:String,values:["hover","click"],default:"hover"},collapse:Boolean,backgroundColor:String,textColor:String,activeTextColor:String,collapseTransition:{type:Boolean,default:!0},ellipsis:{type:Boolean,default:!0},popperEffect:{type:String,values:["dark","light"],default:"dark"}}),checkIndexPath=e=>Array.isArray(e)&&e.every(t=>isString$3(t)),menuEmits={close:(e,t)=>isString$3(e)&&checkIndexPath(t),open:(e,t)=>isString$3(e)&&checkIndexPath(t),select:(e,t,n,r)=>isString$3(e)&&checkIndexPath(t)&&isObject$4(n)&&(r===void 0||r instanceof Promise)};var Menu=defineComponent({name:"ElMenu",props:menuProps,emits:menuEmits,setup(e,{emit:t,slots:n,expose:r}){const i=getCurrentInstance(),g=i.appContext.config.globalProperties.$router,$=ref(),y=useNamespace("menu"),k=useNamespace("sub-menu"),j=ref(-1),L=ref(e.defaultOpeneds&&!e.collapse?e.defaultOpeneds.slice(0):[]),V=ref(e.defaultActive),z=ref({}),oe=ref({}),re=computed(()=>e.mode==="horizontal"||e.mode==="vertical"&&e.collapse),ie=()=>{const $e=V.value&&z.value[V.value];if(!$e||e.mode==="horizontal"||e.collapse)return;$e.indexPath.forEach(ze=>{const Ue=oe.value[ze];Ue&&ae(ze,Ue.indexPath)})},ae=($e,qe)=>{L.value.includes($e)||(e.uniqueOpened&&(L.value=L.value.filter(ze=>qe.includes(ze))),L.value.push($e),t("open",$e,qe))},le=($e,qe)=>{const ze=L.value.indexOf($e);ze!==-1&&L.value.splice(ze,1),t("close",$e,qe)},de=({index:$e,indexPath:qe})=>{L.value.includes($e)?le($e,qe):ae($e,qe)},pe=$e=>{(e.mode==="horizontal"||e.collapse)&&(L.value=[]);const{index:qe,indexPath:ze}=$e;if(!(qe===void 0||ze===void 0))if(e.router&&g){const Ue=$e.route||qe,kt=g.push(Ue).then(At=>(At||(V.value=qe),At));t("select",qe,ze,{index:qe,indexPath:ze,route:Ue},kt)}else V.value=qe,t("select",qe,ze,{index:qe,indexPath:ze})},he=$e=>{const qe=z.value,ze=qe[$e]||V.value&&qe[V.value]||qe[e.defaultActive];ze?V.value=ze.index:V.value=$e},ue=()=>{var $e,qe;if(!$.value)return-1;const ze=Array.from((qe=($e=$.value)==null?void 0:$e.childNodes)!=null?qe:[]).filter(hn=>hn.nodeName!=="#text"||hn.nodeValue),Ue=64,kt=Number.parseInt(getComputedStyle($.value).paddingLeft,10),At=Number.parseInt(getComputedStyle($.value).paddingRight,10),Pt=$.value.clientWidth-kt-At;let jt=0,bn=0;return ze.forEach((hn,Dt)=>{jt+=hn.offsetWidth||0,jt<=Pt-Ue&&(bn=Dt+1)}),bn===ze.length?-1:bn},_e=($e,qe=33.34)=>{let ze;return()=>{ze&&clearTimeout(ze),ze=setTimeout(()=>{$e()},qe)}};let Ie=!0;const Ce=()=>{const $e=()=>{j.value=-1,nextTick(()=>{j.value=ue()})};Ie?$e():_e($e)(),Ie=!1};watch(()=>e.defaultActive,$e=>{z.value[$e]||(V.value=""),he($e)}),watch(()=>e.collapse,$e=>{$e&&(L.value=[])}),watch(z.value,ie);let Oe;watchEffect(()=>{e.mode==="horizontal"&&e.ellipsis?Oe=useResizeObserver($,Ce).stop:Oe==null||Oe()});{const $e=kt=>{oe.value[kt.index]=kt},qe=kt=>{delete oe.value[kt.index]};provide("rootMenu",reactive({props:e,openedMenus:L,items:z,subMenus:oe,activeIndex:V,isMenuPopup:re,addMenuItem:kt=>{z.value[kt.index]=kt},removeMenuItem:kt=>{delete z.value[kt.index]},addSubMenu:$e,removeSubMenu:qe,openMenu:ae,closeMenu:le,handleMenuItemClick:pe,handleSubMenuClick:de})),provide(`subMenu:${i.uid}`,{addSubMenu:$e,removeSubMenu:qe,mouseInChild:ref(!1),level:0})}return onMounted(()=>{e.mode==="horizontal"&&new Menu$1(i.vnode.el,y.namespace.value)}),r({open:qe=>{const{indexPath:ze}=oe.value[qe];ze.forEach(Ue=>ae(Ue,ze))},close:le,handleResize:Ce}),()=>{var $e,qe;let ze=(qe=($e=n.default)==null?void 0:$e.call(n))!=null?qe:[];const Ue=[];if(e.mode==="horizontal"&&$.value){const Pt=flattedChildren(ze),jt=j.value===-1?Pt:Pt.slice(0,j.value),bn=j.value===-1?[]:Pt.slice(j.value);(bn==null?void 0:bn.length)&&e.ellipsis&&(ze=jt,Ue.push(h$1(SubMenu,{index:"sub-menu-more",class:k.e("hide-arrow")},{title:()=>h$1(ElIcon,{class:k.e("icon-more")},{default:()=>h$1(more_default)}),default:()=>bn})))}const kt=useMenuCssVar(e,0),At=h$1("ul",{key:String(e.collapse),role:"menubar",ref:$,style:kt.value,class:{[y.b()]:!0,[y.m(e.mode)]:!0,[y.m("collapse")]:e.collapse}},[...ze,...Ue]);return e.collapseTransition&&e.mode==="vertical"?h$1(ElMenuCollapseTransition,()=>At):At}}});const menuItemProps=buildProps({index:{type:definePropType([String,null]),default:null},route:{type:definePropType([String,Object])},disabled:Boolean}),menuItemEmits={click:e=>isString$3(e.index)&&Array.isArray(e.indexPath)},COMPONENT_NAME$b="ElMenuItem",_sfc_main$$=defineComponent({name:COMPONENT_NAME$b,components:{ElTooltip},props:menuItemProps,emits:menuItemEmits,setup(e,{emit:t}){const n=getCurrentInstance(),r=inject("rootMenu"),i=useNamespace("menu"),g=useNamespace("menu-item");r||throwError(COMPONENT_NAME$b,"can not inject root menu");const{parentMenu:$,indexPath:y}=useMenu(n,toRef(e,"index")),k=inject(`subMenu:${$.value.uid}`);k||throwError(COMPONENT_NAME$b,"can not inject sub menu");const j=computed(()=>e.index===r.activeIndex),L=reactive({index:e.index,indexPath:y,active:j}),V=()=>{e.disabled||(r.handleMenuItemClick({index:e.index,indexPath:y.value,route:e.route}),t("click",L))};return onMounted(()=>{k.addSubMenu(L),r.addMenuItem(L)}),onBeforeUnmount(()=>{k.removeSubMenu(L),r.removeMenuItem(L)}),{parentMenu:$,rootMenu:r,active:j,nsMenu:i,nsMenuItem:g,handleClick:V}}});function _sfc_render$i(e,t,n,r,i,g){const $=resolveComponent("el-tooltip");return openBlock(),createElementBlock("li",{class:normalizeClass([e.nsMenuItem.b(),e.nsMenuItem.is("active",e.active),e.nsMenuItem.is("disabled",e.disabled)]),role:"menuitem",tabindex:"-1",onClick:t[0]||(t[0]=(...y)=>e.handleClick&&e.handleClick(...y))},[e.parentMenu.type.name==="ElMenu"&&e.rootMenu.props.collapse&&e.$slots.title?(openBlock(),createBlock($,{key:0,effect:e.rootMenu.props.popperEffect,placement:"right","fallback-placements":["left"],persistent:""},{content:withCtx(()=>[renderSlot(e.$slots,"title")]),default:withCtx(()=>[createBaseVNode("div",{class:normalizeClass(e.nsMenu.be("tooltip","trigger"))},[renderSlot(e.$slots,"default")],2)]),_:3},8,["effect"])):(openBlock(),createElementBlock(Fragment,{key:1},[renderSlot(e.$slots,"default"),renderSlot(e.$slots,"title")],64))],2)}var MenuItem=_export_sfc$1(_sfc_main$$,[["render",_sfc_render$i],["__file","/home/runner/work/element-plus/element-plus/packages/components/menu/src/menu-item.vue"]]);const menuItemGroupProps={title:String},COMPONENT_NAME$a="ElMenuItemGroup",_sfc_main$_=defineComponent({name:COMPONENT_NAME$a,props:menuItemGroupProps,setup(){return{ns:useNamespace("menu-item-group")}}});function _sfc_render$h(e,t,n,r,i,g){return openBlock(),createElementBlock("li",{class:normalizeClass(e.ns.b())},[createBaseVNode("div",{class:normalizeClass(e.ns.e("title"))},[e.$slots.title?renderSlot(e.$slots,"title",{key:1}):(openBlock(),createElementBlock(Fragment,{key:0},[createTextVNode(toDisplayString$1(e.title),1)],64))],2),createBaseVNode("ul",null,[renderSlot(e.$slots,"default")])],2)}var MenuItemGroup=_export_sfc$1(_sfc_main$_,[["render",_sfc_render$h],["__file","/home/runner/work/element-plus/element-plus/packages/components/menu/src/menu-item-group.vue"]]);const ElMenu=withInstall(Menu,{MenuItem,MenuItemGroup,SubMenu}),ElMenuItem=withNoopInstall(MenuItem),ElMenuItemGroup=withNoopInstall(MenuItemGroup),ElSubMenu=withNoopInstall(SubMenu),pageHeaderProps=buildProps({icon:{type:iconPropType,default:()=>back_default},title:String,content:{type:String,default:""}}),pageHeaderEmits={back:()=>!0},_hoisted_1$t=["aria-label"],__default__$F=defineComponent({name:"ElPageHeader"}),_sfc_main$Z=defineComponent({...__default__$F,props:pageHeaderProps,emits:pageHeaderEmits,setup(e,{emit:t}){const n=useSlots(),{t:r}=useLocale(),i=useNamespace("page-header"),g=computed(()=>[i.b(),{[i.m("has-breadcrumb")]:!!n.breadcrumb,[i.m("has-extra")]:!!n.extra,[i.is("contentful")]:!!n.default}]);function $(){t("back")}return(y,k)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref(g))},[y.$slots.breadcrumb?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(i).e("breadcrumb"))},[renderSlot(y.$slots,"breadcrumb")],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(i).e("header"))},[createBaseVNode("div",{class:normalizeClass(unref(i).e("left"))},[createBaseVNode("div",{class:normalizeClass(unref(i).e("back")),role:"button",tabindex:"0",onClick:$},[y.icon||y.$slots.icon?(openBlock(),createElementBlock("div",{key:0,"aria-label":y.title||unref(r)("el.pageHeader.title"),class:normalizeClass(unref(i).e("icon"))},[renderSlot(y.$slots,"icon",{},()=>[y.icon?(openBlock(),createBlock(unref(ElIcon),{key:0},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(y.icon)))]),_:1})):createCommentVNode("v-if",!0)])],10,_hoisted_1$t)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(i).e("title"))},[renderSlot(y.$slots,"title",{},()=>[createTextVNode(toDisplayString$1(y.title||unref(r)("el.pageHeader.title")),1)])],2)],2),createVNode(unref(ElDivider),{direction:"vertical"}),createBaseVNode("div",{class:normalizeClass(unref(i).e("content"))},[renderSlot(y.$slots,"content",{},()=>[createTextVNode(toDisplayString$1(y.content),1)])],2)],2),y.$slots.extra?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(i).e("extra"))},[renderSlot(y.$slots,"extra")],2)):createCommentVNode("v-if",!0)],2),y.$slots.default?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref(i).e("main"))},[renderSlot(y.$slots,"default")],2)):createCommentVNode("v-if",!0)],2))}});var PageHeader=_export_sfc$1(_sfc_main$Z,[["__file","/home/runner/work/element-plus/element-plus/packages/components/page-header/src/page-header.vue"]]);const ElPageHeader=withInstall(PageHeader),paginationPrevProps=buildProps({disabled:Boolean,currentPage:{type:Number,default:1},prevText:{type:String},prevIcon:{type:iconPropType}}),paginationPrevEmits={click:e=>e instanceof MouseEvent},_hoisted_1$s=["disabled","aria-disabled"],_hoisted_2$k={key:0},__default__$E=defineComponent({name:"ElPaginationPrev"}),_sfc_main$Y=defineComponent({...__default__$E,props:paginationPrevProps,emits:paginationPrevEmits,setup(e){const t=e,n=computed(()=>t.disabled||t.currentPage<=1);return(r,i)=>(openBlock(),createElementBlock("button",{type:"button",class:"btn-prev",disabled:unref(n),"aria-disabled":unref(n),onClick:i[0]||(i[0]=g=>r.$emit("click",g))},[r.prevText?(openBlock(),createElementBlock("span",_hoisted_2$k,toDisplayString$1(r.prevText),1)):(openBlock(),createBlock(unref(ElIcon),{key:1},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(r.prevIcon)))]),_:1}))],8,_hoisted_1$s))}});var Prev=_export_sfc$1(_sfc_main$Y,[["__file","/home/runner/work/element-plus/element-plus/packages/components/pagination/src/components/prev.vue"]]);const paginationNextProps=buildProps({disabled:Boolean,currentPage:{type:Number,default:1},pageCount:{type:Number,default:50},nextText:{type:String},nextIcon:{type:iconPropType}}),_hoisted_1$r=["disabled","aria-disabled"],_hoisted_2$j={key:0},__default__$D=defineComponent({name:"ElPaginationNext"}),_sfc_main$X=defineComponent({...__default__$D,props:paginationNextProps,emits:["click"],setup(e){const t=e,n=computed(()=>t.disabled||t.currentPage===t.pageCount||t.pageCount===0);return(r,i)=>(openBlock(),createElementBlock("button",{type:"button",class:"btn-next",disabled:unref(n),"aria-disabled":unref(n),onClick:i[0]||(i[0]=g=>r.$emit("click",g))},[r.nextText?(openBlock(),createElementBlock("span",_hoisted_2$j,toDisplayString$1(r.nextText),1)):(openBlock(),createBlock(unref(ElIcon),{key:1},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(r.nextIcon)))]),_:1}))],8,_hoisted_1$r))}});var Next=_export_sfc$1(_sfc_main$X,[["__file","/home/runner/work/element-plus/element-plus/packages/components/pagination/src/components/next.vue"]]);const selectGroupKey="ElSelectGroup",selectKey="ElSelect";function useOption$1(e,t){const n=inject(selectKey),r=inject(selectGroupKey,{disabled:!1}),i=computed(()=>Object.prototype.toString.call(e.value).toLowerCase()==="[object object]"),g=computed(()=>n.props.multiple?V(n.props.modelValue,e.value):z(e.value,n.props.modelValue)),$=computed(()=>{if(n.props.multiple){const ie=n.props.modelValue||[];return!g.value&&ie.length>=n.props.multipleLimit&&n.props.multipleLimit>0}else return!1}),y=computed(()=>e.label||(i.value?"":e.value)),k=computed(()=>e.value||e.label||""),j=computed(()=>e.disabled||t.groupDisabled||$.value),L=getCurrentInstance(),V=(ie=[],ae)=>{if(i.value){const le=n.props.valueKey;return ie&&ie.some(de=>toRaw(get$1(de,le))===get$1(ae,le))}else return ie&&ie.includes(ae)},z=(ie,ae)=>{if(i.value){const{valueKey:le}=n.props;return get$1(ie,le)===get$1(ae,le)}else return ie===ae},oe=()=>{!e.disabled&&!r.disabled&&(n.hoverIndex=n.optionsArray.indexOf(L.proxy))};watch(()=>y.value,()=>{!e.created&&!n.props.remote&&n.setSelected()}),watch(()=>e.value,(ie,ae)=>{const{remote:le,valueKey:de}=n.props;if(Object.is(ie,ae)||(n.onOptionDestroy(ae,L.proxy),n.onOptionCreate(L.proxy)),!e.created&&!le){if(de&&typeof ie=="object"&&typeof ae=="object"&&ie[de]===ae[de])return;n.setSelected()}}),watch(()=>r.disabled,()=>{t.groupDisabled=r.disabled},{immediate:!0});const{queryChange:re}=toRaw(n);return watch(re,ie=>{const{query:ae}=unref(ie),le=new RegExp(escapeStringRegexp(ae),"i");t.visible=le.test(y.value)||e.created,t.visible||n.filteredOptionsCount--}),{select:n,currentLabel:y,currentValue:k,itemSelected:g,isDisabled:j,hoverItem:oe}}const _sfc_main$W=defineComponent({name:"ElOption",componentName:"ElOption",props:{value:{required:!0,type:[String,Number,Boolean,Object]},label:[String,Number],created:Boolean,disabled:{type:Boolean,default:!1}},setup(e){const t=useNamespace("select"),n=reactive({index:-1,groupDisabled:!1,visible:!0,hitState:!1,hover:!1}),{currentLabel:r,itemSelected:i,isDisabled:g,select:$,hoverItem:y}=useOption$1(e,n),{visible:k,hover:j}=toRefs(n),L=getCurrentInstance().proxy;$.onOptionCreate(L),onBeforeUnmount(()=>{const z=L.value,{selected:oe}=$,ie=($.props.multiple?oe:[oe]).some(ae=>ae.value===L.value);nextTick(()=>{$.cachedOptions.get(z)===L&&!ie&&$.cachedOptions.delete(z)}),$.onOptionDestroy(z,L)});function V(){e.disabled!==!0&&n.groupDisabled!==!0&&$.handleOptionSelect(L,!0)}return{ns:t,currentLabel:r,itemSelected:i,isDisabled:g,select:$,hoverItem:y,visible:k,hover:j,selectOptionClick:V,states:n}}});function _sfc_render$g(e,t,n,r,i,g){return withDirectives((openBlock(),createElementBlock("li",{class:normalizeClass([e.ns.be("dropdown","item"),e.ns.is("disabled",e.isDisabled),{selected:e.itemSelected,hover:e.hover}]),onMouseenter:t[0]||(t[0]=(...$)=>e.hoverItem&&e.hoverItem(...$)),onClick:t[1]||(t[1]=withModifiers((...$)=>e.selectOptionClick&&e.selectOptionClick(...$),["stop"]))},[renderSlot(e.$slots,"default",{},()=>[createBaseVNode("span",null,toDisplayString$1(e.currentLabel),1)])],34)),[[vShow,e.visible]])}var Option=_export_sfc$1(_sfc_main$W,[["render",_sfc_render$g],["__file","/home/runner/work/element-plus/element-plus/packages/components/select/src/option.vue"]]);const _sfc_main$V=defineComponent({name:"ElSelectDropdown",componentName:"ElSelectDropdown",setup(){const e=inject(selectKey),t=useNamespace("select"),n=computed(()=>e.props.popperClass),r=computed(()=>e.props.multiple),i=computed(()=>e.props.fitInputWidth),g=ref("");function $(){var y;g.value=`${(y=e.selectWrapper)==null?void 0:y.offsetWidth}px`}return onMounted(()=>{$(),useResizeObserver(e.selectWrapper,$)}),{ns:t,minWidth:g,popperClass:n,isMultiple:r,isFitInputWidth:i}}});function _sfc_render$f(e,t,n,r,i,g){return openBlock(),createElementBlock("div",{class:normalizeClass([e.ns.b("dropdown"),e.ns.is("multiple",e.isMultiple),e.popperClass]),style:normalizeStyle({[e.isFitInputWidth?"width":"minWidth"]:e.minWidth})},[renderSlot(e.$slots,"default")],6)}var ElSelectMenu$1=_export_sfc$1(_sfc_main$V,[["render",_sfc_render$f],["__file","/home/runner/work/element-plus/element-plus/packages/components/select/src/select-dropdown.vue"]]);function useSelectStates(e){const{t}=useLocale();return reactive({options:new Map,cachedOptions:new Map,createdLabel:null,createdSelected:!1,selected:e.multiple?[]:{},inputLength:20,inputWidth:0,optionsCount:0,filteredOptionsCount:0,visible:!1,softFocus:!1,selectedLabel:"",hoverIndex:-1,query:"",previousQuery:null,inputHovering:!1,cachedPlaceHolder:"",currentPlaceholder:t("el.select.placeholder"),menuVisibleOnFocus:!1,isOnComposition:!1,isSilentBlur:!1,prefixWidth:11,tagInMultiLine:!1,mouseEnter:!1})}const useSelect$2=(e,t,n)=>{const{t:r}=useLocale(),i=useNamespace("select");useDeprecated({from:"suffixTransition",replacement:"override style scheme",version:"2.3.0",scope:"props",ref:"https://element-plus.org/en-US/component/select.html#select-attributes"},computed(()=>e.suffixTransition===!1));const g=ref(null),$=ref(null),y=ref(null),k=ref(null),j=ref(null),L=ref(null),V=ref(-1),z=shallowRef({query:""}),oe=shallowRef(""),{form:re,formItem:ie}=useFormItem(),ae=computed(()=>!e.filterable||e.multiple||!t.visible),le=computed(()=>e.disabled||(re==null?void 0:re.disabled)),de=computed(()=>{const Nn=e.multiple?Array.isArray(e.modelValue)&&e.modelValue.length>0:e.modelValue!==void 0&&e.modelValue!==null&&e.modelValue!=="";return e.clearable&&!le.value&&t.inputHovering&&Nn}),pe=computed(()=>e.remote&&e.filterable&&!e.remoteShowSuffix?"":e.suffixIcon),he=computed(()=>i.is("reverse",pe.value&&t.visible&&e.suffixTransition)),ue=computed(()=>e.remote?300:0),_e=computed(()=>e.loading?e.loadingText||r("el.select.loading"):e.remote&&t.query===""&&t.options.size===0?!1:e.filterable&&t.query&&t.options.size>0&&t.filteredOptionsCount===0?e.noMatchText||r("el.select.noMatch"):t.options.size===0?e.noDataText||r("el.select.noData"):null),Ie=computed(()=>Array.from(t.options.values())),Ce=computed(()=>Array.from(t.cachedOptions.values())),Oe=computed(()=>{const Nn=Ie.value.filter(In=>!In.created).some(In=>In.currentLabel===t.query);return e.filterable&&e.allowCreate&&t.query!==""&&!Nn}),$e=useSize(),qe=computed(()=>["small"].includes($e.value)?"small":"default"),ze=computed({get(){return t.visible&&_e.value!==!1},set(Nn){t.visible=Nn}});watch([()=>le.value,()=>$e.value,()=>re==null?void 0:re.size],()=>{nextTick(()=>{Ue()})}),watch(()=>e.placeholder,Nn=>{t.cachedPlaceHolder=t.currentPlaceholder=Nn}),watch(()=>e.modelValue,(Nn,In)=>{e.multiple&&(Ue(),Nn&&Nn.length>0||$.value&&t.query!==""?t.currentPlaceholder="":t.currentPlaceholder=t.cachedPlaceHolder,e.filterable&&!e.reserveKeyword&&(t.query="",kt(t.query))),jt(),e.filterable&&!e.multiple&&(t.inputLength=20),!isEqual$1(Nn,In)&&e.validateEvent&&(ie==null||ie.validate("change").catch(Gn=>void 0))},{flush:"post",deep:!0}),watch(()=>t.visible,Nn=>{var In,Gn,Xn;Nn?((Gn=(In=y.value)==null?void 0:In.updatePopper)==null||Gn.call(In),e.filterable&&(t.filteredOptionsCount=t.optionsCount,t.query=e.remote?"":t.selectedLabel,e.multiple?(Xn=$.value)==null||Xn.focus():t.selectedLabel&&(t.currentPlaceholder=`${t.selectedLabel}`,t.selectedLabel=""),kt(t.query),!e.multiple&&!e.remote&&(z.value.query="",triggerRef(z),triggerRef(oe)))):(e.filterable&&(isFunction$4(e.filterMethod)&&e.filterMethod(""),isFunction$4(e.remoteMethod)&&e.remoteMethod("")),$.value&&$.value.blur(),t.query="",t.previousQuery=null,t.selectedLabel="",t.inputLength=20,t.menuVisibleOnFocus=!1,hn(),nextTick(()=>{$.value&&$.value.value===""&&t.selected.length===0&&(t.currentPlaceholder=t.cachedPlaceHolder)}),e.multiple||(t.selected&&(e.filterable&&e.allowCreate&&t.createdSelected&&t.createdLabel?t.selectedLabel=t.createdLabel:t.selectedLabel=t.selected.currentLabel,e.filterable&&(t.query=t.selectedLabel)),e.filterable&&(t.currentPlaceholder=t.cachedPlaceHolder))),n.emit("visible-change",Nn)}),watch(()=>t.options.entries(),()=>{var Nn,In,Gn;if(!isClient)return;(In=(Nn=y.value)==null?void 0:Nn.updatePopper)==null||In.call(Nn),e.multiple&&Ue();const Xn=((Gn=j.value)==null?void 0:Gn.querySelectorAll("input"))||[];Array.from(Xn).includes(document.activeElement)||jt(),e.defaultFirstOption&&(e.filterable||e.remote)&&t.filteredOptionsCount&&Pt()},{flush:"post"}),watch(()=>t.hoverIndex,Nn=>{isNumber$1(Nn)&&Nn>-1?V.value=Ie.value[Nn]||{}:V.value={},Ie.value.forEach(In=>{In.hover=V.value===In})});const Ue=()=>{e.collapseTags&&!e.filterable||nextTick(()=>{var Nn,In;if(!g.value)return;const Gn=g.value.$el.querySelector("input"),Xn=k.value,ao=getComponentSize($e.value||(re==null?void 0:re.size));Gn.style.height=`${(t.selected.length===0?ao:Math.max(Xn?Xn.clientHeight+(Xn.clientHeight>ao?6:0):0,ao))-2}px`,t.tagInMultiLine=Number.parseFloat(Gn.style.height)>=ao,t.visible&&_e.value!==!1&&((In=(Nn=y.value)==null?void 0:Nn.updatePopper)==null||In.call(Nn))})},kt=async Nn=>{if(!(t.previousQuery===Nn||t.isOnComposition)){if(t.previousQuery===null&&(isFunction$4(e.filterMethod)||isFunction$4(e.remoteMethod))){t.previousQuery=Nn;return}t.previousQuery=Nn,nextTick(()=>{var In,Gn;t.visible&&((Gn=(In=y.value)==null?void 0:In.updatePopper)==null||Gn.call(In))}),t.hoverIndex=-1,e.multiple&&e.filterable&&nextTick(()=>{const In=$.value.value.length*15+20;t.inputLength=e.collapseTags?Math.min(50,In):In,At(),Ue()}),e.remote&&isFunction$4(e.remoteMethod)?(t.hoverIndex=-1,e.remoteMethod(Nn)):isFunction$4(e.filterMethod)?(e.filterMethod(Nn),triggerRef(oe)):(t.filteredOptionsCount=t.optionsCount,z.value.query=Nn,triggerRef(z),triggerRef(oe)),e.defaultFirstOption&&(e.filterable||e.remote)&&t.filteredOptionsCount&&(await nextTick(),Pt())}},At=()=>{t.currentPlaceholder!==""&&(t.currentPlaceholder=$.value.value?"":t.cachedPlaceHolder)},Pt=()=>{const Nn=Ie.value.filter(Xn=>Xn.visible&&!Xn.disabled&&!Xn.states.groupDisabled),In=Nn.find(Xn=>Xn.created),Gn=Nn[0];t.hoverIndex=Pn(Ie.value,In||Gn)},jt=()=>{var Nn;if(e.multiple)t.selectedLabel="";else{const Gn=bn(e.modelValue);(Nn=Gn.props)!=null&&Nn.created?(t.createdLabel=Gn.props.value,t.createdSelected=!0):t.createdSelected=!1,t.selectedLabel=Gn.currentLabel,t.selected=Gn,e.filterable&&(t.query=t.selectedLabel);return}const In=[];Array.isArray(e.modelValue)&&e.modelValue.forEach(Gn=>{In.push(bn(Gn))}),t.selected=In,nextTick(()=>{Ue()})},bn=Nn=>{let In;const Gn=toRawType(Nn).toLowerCase()==="object",Xn=toRawType(Nn).toLowerCase()==="null",ao=toRawType(Nn).toLowerCase()==="undefined";for(let go=t.cachedOptions.size-1;go>=0;go--){const mo=Ce.value[go];if(Gn?get$1(mo.value,e.valueKey)===get$1(Nn,e.valueKey):mo.value===Nn){In={value:Nn,currentLabel:mo.currentLabel,isDisabled:mo.isDisabled};break}}if(In)return In;const bo=Gn?Nn.label:!Xn&&!ao?Nn:"",uo={value:Nn,currentLabel:bo};return e.multiple&&(uo.hitState=!1),uo},hn=()=>{setTimeout(()=>{const Nn=e.valueKey;e.multiple?t.selected.length>0?t.hoverIndex=Math.min.apply(null,t.selected.map(In=>Ie.value.findIndex(Gn=>get$1(Gn,Nn)===get$1(In,Nn)))):t.hoverIndex=-1:t.hoverIndex=Ie.value.findIndex(In=>lo(In)===lo(t.selected))},300)},Dt=()=>{var Nn,In;wn(),(In=(Nn=y.value)==null?void 0:Nn.updatePopper)==null||In.call(Nn),e.multiple&&!e.filterable&&Ue()},wn=()=>{var Nn;t.inputWidth=(Nn=g.value)==null?void 0:Nn.$el.getBoundingClientRect().width},_n=()=>{e.filterable&&t.query!==t.selectedLabel&&(t.query=t.selectedLabel,kt(t.query))},vn=debounce$1(()=>{_n()},ue.value),Cn=debounce$1(Nn=>{kt(Nn.target.value)},ue.value),xn=Nn=>{isEqual$1(e.modelValue,Nn)||n.emit(CHANGE_EVENT,Nn)},En=Nn=>{if(Nn.target.value.length<=0&&!io()){const In=e.modelValue.slice();In.pop(),n.emit(UPDATE_MODEL_EVENT,In),xn(In)}Nn.target.value.length===1&&e.modelValue.length===0&&(t.currentPlaceholder=t.cachedPlaceHolder)},Sn=(Nn,In)=>{const Gn=t.selected.indexOf(In);if(Gn>-1&&!le.value){const Xn=e.modelValue.slice();Xn.splice(Gn,1),n.emit(UPDATE_MODEL_EVENT,Xn),xn(Xn),n.emit("remove-tag",In.value)}Nn.stopPropagation()},Bn=Nn=>{Nn.stopPropagation();const In=e.multiple?[]:"";if(!isString$3(In))for(const Gn of t.selected)Gn.isDisabled&&In.push(Gn.value);n.emit(UPDATE_MODEL_EVENT,In),xn(In),t.hoverIndex=-1,t.visible=!1,n.emit("clear")},An=(Nn,In)=>{var Gn;if(e.multiple){const Xn=(e.modelValue||[]).slice(),ao=Pn(Xn,Nn.value);ao>-1?Xn.splice(ao,1):(e.multipleLimit<=0||Xn.length{Fn(Nn)})},Pn=(Nn=[],In)=>{if(!isObject$4(In))return Nn.indexOf(In);const Gn=e.valueKey;let Xn=-1;return Nn.some((ao,bo)=>toRaw(get$1(ao,Gn))===get$1(In,Gn)?(Xn=bo,!0):!1),Xn},Mn=()=>{t.softFocus=!0;const Nn=$.value||g.value;Nn&&(Nn==null||Nn.focus())},Fn=Nn=>{var In,Gn,Xn,ao,bo;const uo=Array.isArray(Nn)?Nn[0]:Nn;let go=null;if(uo!=null&&uo.value){const mo=Ie.value.filter(vo=>vo.value===uo.value);mo.length>0&&(go=mo[0].$el)}if(y.value&&go){const mo=(ao=(Xn=(Gn=(In=y.value)==null?void 0:In.popperRef)==null?void 0:Gn.contentRef)==null?void 0:Xn.querySelector)==null?void 0:ao.call(Xn,`.${i.be("dropdown","wrap")}`);mo&&scrollIntoView(mo,go)}(bo=L.value)==null||bo.handleScroll()},jn=Nn=>{t.optionsCount++,t.filteredOptionsCount++,t.options.set(Nn.value,Nn),t.cachedOptions.set(Nn.value,Nn)},zn=(Nn,In)=>{t.options.get(Nn)===In&&(t.optionsCount--,t.filteredOptionsCount--,t.options.delete(Nn))},Jn=Nn=>{Nn.code!==EVENT_CODE.backspace&&io(!1),t.inputLength=$.value.value.length*15+20,Ue()},io=Nn=>{if(!Array.isArray(t.selected))return;const In=t.selected[t.selected.length-1];if(!!In)return Nn===!0||Nn===!1?(In.hitState=Nn,Nn):(In.hitState=!In.hitState,In.hitState)},eo=Nn=>{const In=Nn.target.value;if(Nn.type==="compositionend")t.isOnComposition=!1,nextTick(()=>kt(In));else{const Gn=In[In.length-1]||"";t.isOnComposition=!isKorean(Gn)}},Un=()=>{nextTick(()=>Fn(t.selected))},Yn=Nn=>{t.softFocus?t.softFocus=!1:((e.automaticDropdown||e.filterable)&&(e.filterable&&!t.visible&&(t.menuVisibleOnFocus=!0),t.visible=!0),n.emit("focus",Nn))},to=()=>{var Nn;t.visible=!1,(Nn=g.value)==null||Nn.blur()},Hn=Nn=>{nextTick(()=>{t.isSilentBlur?t.isSilentBlur=!1:n.emit("blur",Nn)}),t.softFocus=!1},On=Nn=>{Bn(Nn)},Wn=()=>{t.visible=!1},oo=Nn=>{t.visible&&(Nn.preventDefault(),Nn.stopPropagation(),t.visible=!1)},ro=Nn=>{var In;Nn&&!t.mouseEnter||le.value||(t.menuVisibleOnFocus?t.menuVisibleOnFocus=!1:(!y.value||!y.value.isFocusInsideContent())&&(t.visible=!t.visible),t.visible&&((In=$.value||g.value)==null||In.focus()))},Qn=()=>{t.visible?Ie.value[t.hoverIndex]&&An(Ie.value[t.hoverIndex],void 0):ro()},lo=Nn=>isObject$4(Nn.value)?get$1(Nn.value,e.valueKey):Nn.value,ho=computed(()=>Ie.value.filter(Nn=>Nn.visible).every(Nn=>Nn.disabled)),Tn=Nn=>{if(!t.visible){t.visible=!0;return}if(!(t.options.size===0||t.filteredOptionsCount===0)&&!t.isOnComposition&&!ho.value){Nn==="next"?(t.hoverIndex++,t.hoverIndex===t.options.size&&(t.hoverIndex=0)):Nn==="prev"&&(t.hoverIndex--,t.hoverIndex<0&&(t.hoverIndex=t.options.size-1));const In=Ie.value[t.hoverIndex];(In.disabled===!0||In.states.groupDisabled===!0||!In.visible)&&Tn(Nn),nextTick(()=>Fn(V.value))}};return{optionsArray:Ie,selectSize:$e,handleResize:Dt,debouncedOnInputChange:vn,debouncedQueryChange:Cn,deletePrevTag:En,deleteTag:Sn,deleteSelected:Bn,handleOptionSelect:An,scrollToOption:Fn,readonly:ae,resetInputHeight:Ue,showClose:de,iconComponent:pe,iconReverse:he,showNewOption:Oe,collapseTagSize:qe,setSelected:jt,managePlaceholder:At,selectDisabled:le,emptyText:_e,toggleLastOptionHitState:io,resetInputState:Jn,handleComposition:eo,onOptionCreate:jn,onOptionDestroy:zn,handleMenuEnter:Un,handleFocus:Yn,blur:to,handleBlur:Hn,handleClearClick:On,handleClose:Wn,handleKeydownEscape:oo,toggleMenu:ro,selectOption:Qn,getValueKey:lo,navigateOptions:Tn,dropMenuVisible:ze,queryChange:z,groupQueryChange:oe,reference:g,input:$,tooltipRef:y,tags:k,selectWrapper:j,scrollbar:L,handleMouseEnter:()=>{t.mouseEnter=!0},handleMouseLeave:()=>{t.mouseEnter=!1}}},COMPONENT_NAME$9="ElSelect",_sfc_main$U=defineComponent({name:COMPONENT_NAME$9,componentName:COMPONENT_NAME$9,components:{ElInput,ElSelectMenu:ElSelectMenu$1,ElOption:Option,ElTag,ElScrollbar,ElTooltip,ElIcon},directives:{ClickOutside},props:{name:String,id:String,modelValue:{type:[Array,String,Number,Boolean,Object],default:void 0},autocomplete:{type:String,default:"off"},automaticDropdown:Boolean,size:{type:String,validator:isValidComponentSize},effect:{type:String,default:"light"},disabled:Boolean,clearable:Boolean,filterable:Boolean,allowCreate:Boolean,loading:Boolean,popperClass:{type:String,default:""},remote:Boolean,loadingText:String,noMatchText:String,noDataText:String,remoteMethod:Function,filterMethod:Function,multiple:Boolean,multipleLimit:{type:Number,default:0},placeholder:{type:String},defaultFirstOption:Boolean,reserveKeyword:{type:Boolean,default:!0},valueKey:{type:String,default:"value"},collapseTags:Boolean,collapseTagsTooltip:{type:Boolean,default:!1},teleported:useTooltipContentProps.teleported,persistent:{type:Boolean,default:!0},clearIcon:{type:iconPropType,default:circle_close_default},fitInputWidth:{type:Boolean,default:!1},suffixIcon:{type:iconPropType,default:arrow_down_default},tagType:{...tagProps.type,default:"info"},validateEvent:{type:Boolean,default:!0},remoteShowSuffix:{type:Boolean,default:!1},suffixTransition:{type:Boolean,default:!0},placement:{type:String,values:Ee,default:"bottom-start"}},emits:[UPDATE_MODEL_EVENT,CHANGE_EVENT,"remove-tag","clear","visible-change","focus","blur"],setup(e,t){const n=useNamespace("select"),r=useNamespace("input"),{t:i}=useLocale(),g=useSelectStates(e),{optionsArray:$,selectSize:y,readonly:k,handleResize:j,collapseTagSize:L,debouncedOnInputChange:V,debouncedQueryChange:z,deletePrevTag:oe,deleteTag:re,deleteSelected:ie,handleOptionSelect:ae,scrollToOption:le,setSelected:de,resetInputHeight:pe,managePlaceholder:he,showClose:ue,selectDisabled:_e,iconComponent:Ie,iconReverse:Ce,showNewOption:Oe,emptyText:$e,toggleLastOptionHitState:qe,resetInputState:ze,handleComposition:Ue,onOptionCreate:kt,onOptionDestroy:At,handleMenuEnter:Pt,handleFocus:jt,blur:bn,handleBlur:hn,handleClearClick:Dt,handleClose:wn,handleKeydownEscape:_n,toggleMenu:vn,selectOption:Cn,getValueKey:xn,navigateOptions:En,dropMenuVisible:Sn,reference:Bn,input:An,tooltipRef:Pn,tags:Mn,selectWrapper:Fn,scrollbar:jn,queryChange:zn,groupQueryChange:Jn,handleMouseEnter:io,handleMouseLeave:eo}=useSelect$2(e,g,t),{focus:Un}=useFocus(Bn),{inputWidth:Yn,selected:to,inputLength:Hn,filteredOptionsCount:On,visible:Wn,softFocus:oo,selectedLabel:ro,hoverIndex:Qn,query:lo,inputHovering:ho,currentPlaceholder:Tn,menuVisibleOnFocus:Ln,isOnComposition:Rn,isSilentBlur:Nn,options:In,cachedOptions:Gn,optionsCount:Xn,prefixWidth:ao,tagInMultiLine:bo}=toRefs(g),uo=computed(()=>{const Zn=[n.b()],po=unref(y);return po&&Zn.push(n.m(po)),e.disabled&&Zn.push(n.m("disabled")),Zn}),go=computed(()=>({maxWidth:`${unref(Yn)-32}px`,width:"100%"})),mo=computed(()=>({maxWidth:`${unref(Yn)>123?unref(Yn)-123:unref(Yn)-75}px`}));provide(selectKey,reactive({props:e,options:In,optionsArray:$,cachedOptions:Gn,optionsCount:Xn,filteredOptionsCount:On,hoverIndex:Qn,handleOptionSelect:ae,onOptionCreate:kt,onOptionDestroy:At,selectWrapper:Fn,selected:to,setSelected:de,queryChange:zn,groupQueryChange:Jn})),onMounted(()=>{g.cachedPlaceHolder=Tn.value=e.placeholder||i("el.select.placeholder"),e.multiple&&Array.isArray(e.modelValue)&&e.modelValue.length>0&&(Tn.value=""),useResizeObserver(Fn,j),e.remote&&e.multiple&&pe(),nextTick(()=>{const Zn=Bn.value&&Bn.value.$el;if(!!Zn&&(Yn.value=Zn.getBoundingClientRect().width,t.slots.prefix)){const po=Zn.querySelector(`.${r.e("prefix")}`);ao.value=Math.max(po.getBoundingClientRect().width+5,30)}}),de()}),e.multiple&&!Array.isArray(e.modelValue)&&t.emit(UPDATE_MODEL_EVENT,[]),!e.multiple&&Array.isArray(e.modelValue)&&t.emit(UPDATE_MODEL_EVENT,"");const vo=computed(()=>{var Zn,po;return(po=(Zn=Pn.value)==null?void 0:Zn.popperRef)==null?void 0:po.contentRef});return{tagInMultiLine:bo,prefixWidth:ao,selectSize:y,readonly:k,handleResize:j,collapseTagSize:L,debouncedOnInputChange:V,debouncedQueryChange:z,deletePrevTag:oe,deleteTag:re,deleteSelected:ie,handleOptionSelect:ae,scrollToOption:le,inputWidth:Yn,selected:to,inputLength:Hn,filteredOptionsCount:On,visible:Wn,softFocus:oo,selectedLabel:ro,hoverIndex:Qn,query:lo,inputHovering:ho,currentPlaceholder:Tn,menuVisibleOnFocus:Ln,isOnComposition:Rn,isSilentBlur:Nn,options:In,resetInputHeight:pe,managePlaceholder:he,showClose:ue,selectDisabled:_e,iconComponent:Ie,iconReverse:Ce,showNewOption:Oe,emptyText:$e,toggleLastOptionHitState:qe,resetInputState:ze,handleComposition:Ue,handleMenuEnter:Pt,handleFocus:jt,blur:bn,handleBlur:hn,handleClearClick:Dt,handleClose:wn,handleKeydownEscape:_n,toggleMenu:vn,selectOption:Cn,getValueKey:xn,navigateOptions:En,dropMenuVisible:Sn,focus:Un,reference:Bn,input:An,tooltipRef:Pn,popperPaneRef:vo,tags:Mn,selectWrapper:Fn,scrollbar:jn,wrapperKls:uo,selectTagsStyle:go,nsSelect:n,tagTextStyle:mo,handleMouseEnter:io,handleMouseLeave:eo}}}),_hoisted_1$q=["disabled","autocomplete"],_hoisted_2$i={style:{height:"100%",display:"flex","justify-content":"center","align-items":"center"}};function _sfc_render$e(e,t,n,r,i,g){const $=resolveComponent("el-tag"),y=resolveComponent("el-tooltip"),k=resolveComponent("el-icon"),j=resolveComponent("el-input"),L=resolveComponent("el-option"),V=resolveComponent("el-scrollbar"),z=resolveComponent("el-select-menu"),oe=resolveDirective("click-outside");return withDirectives((openBlock(),createElementBlock("div",{ref:"selectWrapper",class:normalizeClass(e.wrapperKls),onMouseenter:t[22]||(t[22]=(...re)=>e.handleMouseEnter&&e.handleMouseEnter(...re)),onMouseleave:t[23]||(t[23]=(...re)=>e.handleMouseLeave&&e.handleMouseLeave(...re)),onClick:t[24]||(t[24]=withModifiers((...re)=>e.toggleMenu&&e.toggleMenu(...re),["stop"]))},[createVNode(y,{ref:"tooltipRef",visible:e.dropMenuVisible,placement:e.placement,teleported:e.teleported,"popper-class":[e.nsSelect.e("popper"),e.popperClass],"fallback-placements":["bottom-start","top-start","right","left"],effect:e.effect,pure:"",trigger:"click",transition:`${e.nsSelect.namespace.value}-zoom-in-top`,"stop-popper-mouse-event":!1,"gpu-acceleration":!1,persistent:e.persistent,onShow:e.handleMenuEnter},{default:withCtx(()=>[createBaseVNode("div",{class:"select-trigger",onMouseenter:t[20]||(t[20]=re=>e.inputHovering=!0),onMouseleave:t[21]||(t[21]=re=>e.inputHovering=!1)},[e.multiple?(openBlock(),createElementBlock("div",{key:0,ref:"tags",class:normalizeClass(e.nsSelect.e("tags")),style:normalizeStyle(e.selectTagsStyle)},[e.collapseTags&&e.selected.length?(openBlock(),createElementBlock("span",{key:0,class:normalizeClass([e.nsSelect.b("tags-wrapper"),{"has-prefix":e.prefixWidth&&e.selected.length}])},[createVNode($,{closable:!e.selectDisabled&&!e.selected[0].isDisabled,size:e.collapseTagSize,hit:e.selected[0].hitState,type:e.tagType,"disable-transitions":"",onClose:t[0]||(t[0]=re=>e.deleteTag(re,e.selected[0]))},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass(e.nsSelect.e("tags-text")),style:normalizeStyle(e.tagTextStyle)},toDisplayString$1(e.selected[0].currentLabel),7)]),_:1},8,["closable","size","hit","type"]),e.selected.length>1?(openBlock(),createBlock($,{key:0,closable:!1,size:e.collapseTagSize,type:e.tagType,"disable-transitions":""},{default:withCtx(()=>[e.collapseTagsTooltip?(openBlock(),createBlock(y,{key:0,disabled:e.dropMenuVisible,"fallback-placements":["bottom","top","right","left"],effect:e.effect,placement:"bottom",teleported:e.teleported},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass(e.nsSelect.e("tags-text"))},"+ "+toDisplayString$1(e.selected.length-1),3)]),content:withCtx(()=>[createBaseVNode("div",{class:normalizeClass(e.nsSelect.e("collapse-tags"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.selected.slice(1),(re,ie)=>(openBlock(),createElementBlock("div",{key:ie,class:normalizeClass(e.nsSelect.e("collapse-tag"))},[(openBlock(),createBlock($,{key:e.getValueKey(re),class:"in-tooltip",closable:!e.selectDisabled&&!re.isDisabled,size:e.collapseTagSize,hit:re.hitState,type:e.tagType,"disable-transitions":"",style:{margin:"2px"},onClose:ae=>e.deleteTag(ae,re)},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass(e.nsSelect.e("tags-text")),style:normalizeStyle({maxWidth:e.inputWidth-75+"px"})},toDisplayString$1(re.currentLabel),7)]),_:2},1032,["closable","size","hit","type","onClose"]))],2))),128))],2)]),_:1},8,["disabled","effect","teleported"])):(openBlock(),createElementBlock("span",{key:1,class:normalizeClass(e.nsSelect.e("tags-text"))},"+ "+toDisplayString$1(e.selected.length-1),3))]),_:1},8,["size","type"])):createCommentVNode("v-if",!0)],2)):createCommentVNode("v-if",!0),createCommentVNode("
      "),e.collapseTags?createCommentVNode("v-if",!0):(openBlock(),createBlock(Transition,{key:1,onAfterLeave:e.resetInputHeight},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass([e.nsSelect.b("tags-wrapper"),{"has-prefix":e.prefixWidth&&e.selected.length}])},[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.selected,re=>(openBlock(),createBlock($,{key:e.getValueKey(re),closable:!e.selectDisabled&&!re.isDisabled,size:e.collapseTagSize,hit:re.hitState,type:e.tagType,"disable-transitions":"",onClose:ie=>e.deleteTag(ie,re)},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass(e.nsSelect.e("tags-text")),style:normalizeStyle({maxWidth:e.inputWidth-75+"px"})},toDisplayString$1(re.currentLabel),7)]),_:2},1032,["closable","size","hit","type","onClose"]))),128))],2)]),_:1},8,["onAfterLeave"])),createCommentVNode("
      "),e.filterable?withDirectives((openBlock(),createElementBlock("input",{key:2,ref:"input","onUpdate:modelValue":t[1]||(t[1]=re=>e.query=re),type:"text",class:normalizeClass([e.nsSelect.e("input"),e.nsSelect.is(e.selectSize)]),disabled:e.selectDisabled,autocomplete:e.autocomplete,style:normalizeStyle({marginLeft:e.prefixWidth&&!e.selected.length||e.tagInMultiLine?`${e.prefixWidth}px`:"",flexGrow:1,width:`${e.inputLength/(e.inputWidth-32)}%`,maxWidth:`${e.inputWidth-42}px`}),onFocus:t[2]||(t[2]=(...re)=>e.handleFocus&&e.handleFocus(...re)),onBlur:t[3]||(t[3]=(...re)=>e.handleBlur&&e.handleBlur(...re)),onKeyup:t[4]||(t[4]=(...re)=>e.managePlaceholder&&e.managePlaceholder(...re)),onKeydown:[t[5]||(t[5]=(...re)=>e.resetInputState&&e.resetInputState(...re)),t[6]||(t[6]=withKeys(withModifiers(re=>e.navigateOptions("next"),["prevent"]),["down"])),t[7]||(t[7]=withKeys(withModifiers(re=>e.navigateOptions("prev"),["prevent"]),["up"])),t[8]||(t[8]=withKeys((...re)=>e.handleKeydownEscape&&e.handleKeydownEscape(...re),["esc"])),t[9]||(t[9]=withKeys(withModifiers((...re)=>e.selectOption&&e.selectOption(...re),["stop","prevent"]),["enter"])),t[10]||(t[10]=withKeys((...re)=>e.deletePrevTag&&e.deletePrevTag(...re),["delete"])),t[11]||(t[11]=withKeys(re=>e.visible=!1,["tab"]))],onCompositionstart:t[12]||(t[12]=(...re)=>e.handleComposition&&e.handleComposition(...re)),onCompositionupdate:t[13]||(t[13]=(...re)=>e.handleComposition&&e.handleComposition(...re)),onCompositionend:t[14]||(t[14]=(...re)=>e.handleComposition&&e.handleComposition(...re)),onInput:t[15]||(t[15]=(...re)=>e.debouncedQueryChange&&e.debouncedQueryChange(...re))},null,46,_hoisted_1$q)),[[vModelText,e.query]]):createCommentVNode("v-if",!0)],6)):createCommentVNode("v-if",!0),createVNode(j,{id:e.id,ref:"reference",modelValue:e.selectedLabel,"onUpdate:modelValue":t[16]||(t[16]=re=>e.selectedLabel=re),type:"text",placeholder:e.currentPlaceholder,name:e.name,autocomplete:e.autocomplete,size:e.selectSize,disabled:e.selectDisabled,readonly:e.readonly,"validate-event":!1,class:normalizeClass([e.nsSelect.is("focus",e.visible)]),tabindex:e.multiple&&e.filterable?-1:void 0,onFocus:e.handleFocus,onBlur:e.handleBlur,onInput:e.debouncedOnInputChange,onPaste:e.debouncedOnInputChange,onCompositionstart:e.handleComposition,onCompositionupdate:e.handleComposition,onCompositionend:e.handleComposition,onKeydown:[t[17]||(t[17]=withKeys(withModifiers(re=>e.navigateOptions("next"),["stop","prevent"]),["down"])),t[18]||(t[18]=withKeys(withModifiers(re=>e.navigateOptions("prev"),["stop","prevent"]),["up"])),withKeys(withModifiers(e.selectOption,["stop","prevent"]),["enter"]),withKeys(e.handleKeydownEscape,["esc"]),t[19]||(t[19]=withKeys(re=>e.visible=!1,["tab"]))]},createSlots({suffix:withCtx(()=>[e.iconComponent&&!e.showClose?(openBlock(),createBlock(k,{key:0,class:normalizeClass([e.nsSelect.e("caret"),e.nsSelect.e("icon"),e.iconReverse])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(e.iconComponent)))]),_:1},8,["class"])):createCommentVNode("v-if",!0),e.showClose&&e.clearIcon?(openBlock(),createBlock(k,{key:1,class:normalizeClass([e.nsSelect.e("caret"),e.nsSelect.e("icon")]),onClick:e.handleClearClick},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(e.clearIcon)))]),_:1},8,["class","onClick"])):createCommentVNode("v-if",!0)]),_:2},[e.$slots.prefix?{name:"prefix",fn:withCtx(()=>[createBaseVNode("div",_hoisted_2$i,[renderSlot(e.$slots,"prefix")])])}:void 0]),1032,["id","modelValue","placeholder","name","autocomplete","size","disabled","readonly","class","tabindex","onFocus","onBlur","onInput","onPaste","onCompositionstart","onCompositionupdate","onCompositionend","onKeydown"])],32)]),content:withCtx(()=>[createVNode(z,null,{default:withCtx(()=>[withDirectives(createVNode(V,{ref:"scrollbar",tag:"ul","wrap-class":e.nsSelect.be("dropdown","wrap"),"view-class":e.nsSelect.be("dropdown","list"),class:normalizeClass([e.nsSelect.is("empty",!e.allowCreate&&Boolean(e.query)&&e.filteredOptionsCount===0)])},{default:withCtx(()=>[e.showNewOption?(openBlock(),createBlock(L,{key:0,value:e.query,created:!0},null,8,["value"])):createCommentVNode("v-if",!0),renderSlot(e.$slots,"default")]),_:3},8,["wrap-class","view-class","class"]),[[vShow,e.options.size>0&&!e.loading]]),e.emptyText&&(!e.allowCreate||e.loading||e.allowCreate&&e.options.size===0)?(openBlock(),createElementBlock(Fragment,{key:0},[e.$slots.empty?renderSlot(e.$slots,"empty",{key:0}):(openBlock(),createElementBlock("p",{key:1,class:normalizeClass(e.nsSelect.be("dropdown","empty"))},toDisplayString$1(e.emptyText),3))],64)):createCommentVNode("v-if",!0)]),_:3})]),_:3},8,["visible","placement","teleported","popper-class","effect","transition","persistent","onShow"])],34)),[[oe,e.handleClose,e.popperPaneRef]])}var Select$1=_export_sfc$1(_sfc_main$U,[["render",_sfc_render$e],["__file","/home/runner/work/element-plus/element-plus/packages/components/select/src/select.vue"]]);const _sfc_main$T=defineComponent({name:"ElOptionGroup",componentName:"ElOptionGroup",props:{label:String,disabled:{type:Boolean,default:!1}},setup(e){const t=useNamespace("select"),n=ref(!0),r=getCurrentInstance(),i=ref([]);provide(selectGroupKey,reactive({...toRefs(e)}));const g=inject(selectKey);onMounted(()=>{i.value=$(r.subTree)});const $=k=>{const j=[];return Array.isArray(k.children)&&k.children.forEach(L=>{var V;L.type&&L.type.name==="ElOption"&&L.component&&L.component.proxy?j.push(L.component.proxy):(V=L.children)!=null&&V.length&&j.push(...$(L))}),j},{groupQueryChange:y}=toRaw(g);return watch(y,()=>{n.value=i.value.some(k=>k.visible===!0)},{flush:"post"}),{visible:n,ns:t}}});function _sfc_render$d(e,t,n,r,i,g){return withDirectives((openBlock(),createElementBlock("ul",{class:normalizeClass(e.ns.be("group","wrap"))},[createBaseVNode("li",{class:normalizeClass(e.ns.be("group","title"))},toDisplayString$1(e.label),3),createBaseVNode("li",null,[createBaseVNode("ul",{class:normalizeClass(e.ns.b("group"))},[renderSlot(e.$slots,"default")],2)])],2)),[[vShow,e.visible]])}var OptionGroup=_export_sfc$1(_sfc_main$T,[["render",_sfc_render$d],["__file","/home/runner/work/element-plus/element-plus/packages/components/select/src/option-group.vue"]]);const ElSelect=withInstall(Select$1,{Option,OptionGroup}),ElOption=withNoopInstall(Option),ElOptionGroup=withNoopInstall(OptionGroup),usePagination=()=>inject(elPaginationKey,{}),paginationSizesProps=buildProps({pageSize:{type:Number,required:!0},pageSizes:{type:definePropType(Array),default:()=>mutable([10,20,30,40,50,100])},popperClass:{type:String},disabled:Boolean,size:{type:String,values:componentSizes}}),__default__$C=defineComponent({name:"ElPaginationSizes"}),_sfc_main$S=defineComponent({...__default__$C,props:paginationSizesProps,emits:["page-size-change"],setup(e,{emit:t}){const n=e,{t:r}=useLocale(),i=useNamespace("pagination"),g=usePagination(),$=ref(n.pageSize);watch(()=>n.pageSizes,(j,L)=>{if(!isEqual$1(j,L)&&Array.isArray(j)){const V=j.includes(n.pageSize)?n.pageSize:n.pageSizes[0];t("page-size-change",V)}}),watch(()=>n.pageSize,j=>{$.value=j});const y=computed(()=>n.pageSizes);function k(j){var L;j!==$.value&&($.value=j,(L=g.handleSizeChange)==null||L.call(g,Number(j)))}return(j,L)=>(openBlock(),createElementBlock("span",{class:normalizeClass(unref(i).e("sizes"))},[createVNode(unref(ElSelect),{"model-value":$.value,disabled:j.disabled,"popper-class":j.popperClass,size:j.size,"validate-event":!1,onChange:k},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(y),V=>(openBlock(),createBlock(unref(ElOption),{key:V,value:V,label:V+unref(r)("el.pagination.pagesize")},null,8,["value","label"]))),128))]),_:1},8,["model-value","disabled","popper-class","size"])],2))}});var Sizes=_export_sfc$1(_sfc_main$S,[["__file","/home/runner/work/element-plus/element-plus/packages/components/pagination/src/components/sizes.vue"]]);const paginationJumperProps=buildProps({size:{type:String,values:componentSizes}}),_hoisted_1$p=["disabled"],__default__$B=defineComponent({name:"ElPaginationJumper"}),_sfc_main$R=defineComponent({...__default__$B,props:paginationJumperProps,setup(e){const{t}=useLocale(),n=useNamespace("pagination"),{pageCount:r,disabled:i,currentPage:g,changeEvent:$}=usePagination(),y=ref(),k=computed(()=>{var V;return(V=y.value)!=null?V:g==null?void 0:g.value});function j(V){y.value=+V}function L(V){V=Math.trunc(+V),$==null||$(+V),y.value=void 0}return(V,z)=>(openBlock(),createElementBlock("span",{class:normalizeClass(unref(n).e("jump")),disabled:unref(i)},[createBaseVNode("span",{class:normalizeClass([unref(n).e("goto")])},toDisplayString$1(unref(t)("el.pagination.goto")),3),createVNode(unref(ElInput),{size:V.size,class:normalizeClass([unref(n).e("editor"),unref(n).is("in-pagination")]),min:1,max:unref(r),disabled:unref(i),"model-value":unref(k),"validate-event":!1,type:"number","onUpdate:modelValue":j,onChange:L},null,8,["size","class","max","disabled","model-value"]),createBaseVNode("span",{class:normalizeClass([unref(n).e("classifier")])},toDisplayString$1(unref(t)("el.pagination.pageClassifier")),3)],10,_hoisted_1$p))}});var Jumper=_export_sfc$1(_sfc_main$R,[["__file","/home/runner/work/element-plus/element-plus/packages/components/pagination/src/components/jumper.vue"]]);const paginationTotalProps=buildProps({total:{type:Number,default:1e3}}),_hoisted_1$o=["disabled"],__default__$A=defineComponent({name:"ElPaginationTotal"}),_sfc_main$Q=defineComponent({...__default__$A,props:paginationTotalProps,setup(e){const{t}=useLocale(),n=useNamespace("pagination"),{disabled:r}=usePagination();return(i,g)=>(openBlock(),createElementBlock("span",{class:normalizeClass(unref(n).e("total")),disabled:unref(r)},toDisplayString$1(unref(t)("el.pagination.total",{total:i.total})),11,_hoisted_1$o))}});var Total=_export_sfc$1(_sfc_main$Q,[["__file","/home/runner/work/element-plus/element-plus/packages/components/pagination/src/components/total.vue"]]);const paginationPagerProps=buildProps({currentPage:{type:Number,default:1},pageCount:{type:Number,required:!0},pagerCount:{type:Number,default:7},disabled:Boolean}),_hoisted_1$n=["onKeyup"],_hoisted_2$h=["aria-current","tabindex"],_hoisted_3$9=["tabindex"],_hoisted_4$7=["aria-current","tabindex"],_hoisted_5$6=["tabindex"],_hoisted_6$2=["aria-current","tabindex"],__default__$z=defineComponent({name:"ElPaginationPager"}),_sfc_main$P=defineComponent({...__default__$z,props:paginationPagerProps,emits:["change"],setup(e,{emit:t}){const n=e,r=useNamespace("pager"),i=useNamespace("icon"),g=ref(!1),$=ref(!1),y=ref(!1),k=ref(!1),j=ref(!1),L=ref(!1),V=computed(()=>{const le=n.pagerCount,de=(le-1)/2,pe=Number(n.currentPage),he=Number(n.pageCount);let ue=!1,_e=!1;he>le&&(pe>le-de&&(ue=!0),pen.disabled?-1:0);watchEffect(()=>{const le=(n.pagerCount-1)/2;g.value=!1,$.value=!1,n.pageCount>n.pagerCount&&(n.currentPage>n.pagerCount-le&&(g.value=!0),n.currentPagehe&&(pe=he)),pe!==ue&&t("change",pe)}return(le,de)=>(openBlock(),createElementBlock("ul",{class:normalizeClass(unref(r).b()),onClick:ae,onKeyup:withKeys(ie,["enter"])},[le.pageCount>0?(openBlock(),createElementBlock("li",{key:0,class:normalizeClass([[unref(r).is("active",le.currentPage===1),unref(r).is("disabled",le.disabled)],"number"]),"aria-current":le.currentPage===1,tabindex:unref(z)}," 1 ",10,_hoisted_2$h)):createCommentVNode("v-if",!0),g.value?(openBlock(),createElementBlock("li",{key:1,class:normalizeClass(["more","btn-quickprev",unref(i).b(),unref(r).is("disabled",le.disabled)]),tabindex:unref(z),onMouseenter:de[0]||(de[0]=pe=>oe(!0)),onMouseleave:de[1]||(de[1]=pe=>y.value=!1),onFocus:de[2]||(de[2]=pe=>re(!0)),onBlur:de[3]||(de[3]=pe=>j.value=!1)},[(y.value||j.value)&&!le.disabled?(openBlock(),createBlock(unref(d_arrow_left_default),{key:0})):(openBlock(),createBlock(unref(more_filled_default),{key:1}))],42,_hoisted_3$9)):createCommentVNode("v-if",!0),(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(V),pe=>(openBlock(),createElementBlock("li",{key:pe,class:normalizeClass([[unref(r).is("active",le.currentPage===pe),unref(r).is("disabled",le.disabled)],"number"]),"aria-current":le.currentPage===pe,tabindex:unref(z)},toDisplayString$1(pe),11,_hoisted_4$7))),128)),$.value?(openBlock(),createElementBlock("li",{key:2,class:normalizeClass(["more","btn-quicknext",unref(i).b(),unref(r).is("disabled",le.disabled)]),tabindex:unref(z),onMouseenter:de[4]||(de[4]=pe=>oe()),onMouseleave:de[5]||(de[5]=pe=>k.value=!1),onFocus:de[6]||(de[6]=pe=>re()),onBlur:de[7]||(de[7]=pe=>L.value=!1)},[(k.value||L.value)&&!le.disabled?(openBlock(),createBlock(unref(d_arrow_right_default),{key:0})):(openBlock(),createBlock(unref(more_filled_default),{key:1}))],42,_hoisted_5$6)):createCommentVNode("v-if",!0),le.pageCount>1?(openBlock(),createElementBlock("li",{key:3,class:normalizeClass([[unref(r).is("active",le.currentPage===le.pageCount),unref(r).is("disabled",le.disabled)],"number"]),"aria-current":le.currentPage===le.pageCount,tabindex:unref(z)},toDisplayString$1(le.pageCount),11,_hoisted_6$2)):createCommentVNode("v-if",!0)],42,_hoisted_1$n))}});var Pager=_export_sfc$1(_sfc_main$P,[["__file","/home/runner/work/element-plus/element-plus/packages/components/pagination/src/components/pager.vue"]]);const isAbsent=e=>typeof e!="number",paginationProps=buildProps({total:Number,pageSize:Number,defaultPageSize:Number,currentPage:Number,defaultCurrentPage:Number,pageCount:Number,pagerCount:{type:Number,validator:e=>isNumber$1(e)&&Math.trunc(e)===e&&e>4&&e<22&&e%2===1,default:7},layout:{type:String,default:["prev","pager","next","jumper","->","total"].join(", ")},pageSizes:{type:definePropType(Array),default:()=>mutable([10,20,30,40,50,100])},popperClass:{type:String,default:""},prevText:{type:String,default:""},prevIcon:{type:iconPropType,default:()=>arrow_left_default},nextText:{type:String,default:""},nextIcon:{type:iconPropType,default:()=>arrow_right_default},small:Boolean,background:Boolean,disabled:Boolean,hideOnSinglePage:Boolean}),paginationEmits={"update:current-page":e=>isNumber$1(e),"update:page-size":e=>isNumber$1(e),"size-change":e=>isNumber$1(e),"current-change":e=>isNumber$1(e),"prev-click":e=>isNumber$1(e),"next-click":e=>isNumber$1(e)},componentName="ElPagination";var Pagination=defineComponent({name:componentName,props:paginationProps,emits:paginationEmits,setup(e,{emit:t,slots:n}){const{t:r}=useLocale(),i=useNamespace("pagination"),g=getCurrentInstance().vnode.props||{},$="onUpdate:currentPage"in g||"onUpdate:current-page"in g||"onCurrentChange"in g,y="onUpdate:pageSize"in g||"onUpdate:page-size"in g||"onSizeChange"in g,k=computed(()=>{if(isAbsent(e.total)&&isAbsent(e.pageCount)||!isAbsent(e.currentPage)&&!$)return!1;if(e.layout.includes("sizes")){if(isAbsent(e.pageCount)){if(!isAbsent(e.total)&&!isAbsent(e.pageSize)&&!y)return!1}else if(!y)return!1}return!0}),j=ref(isAbsent(e.defaultPageSize)?10:e.defaultPageSize),L=ref(isAbsent(e.defaultCurrentPage)?1:e.defaultCurrentPage),V=computed({get(){return isAbsent(e.pageSize)?j.value:e.pageSize},set(pe){isAbsent(e.pageSize)&&(j.value=pe),y&&(t("update:page-size",pe),t("size-change",pe))}}),z=computed(()=>{let pe=0;return isAbsent(e.pageCount)?isAbsent(e.total)||(pe=Math.max(1,Math.ceil(e.total/V.value))):pe=e.pageCount,pe}),oe=computed({get(){return isAbsent(e.currentPage)?L.value:e.currentPage},set(pe){let he=pe;pe<1?he=1:pe>z.value&&(he=z.value),isAbsent(e.currentPage)&&(L.value=he),$&&(t("update:current-page",he),t("current-change",he))}});watch(z,pe=>{oe.value>pe&&(oe.value=pe)});function re(pe){oe.value=pe}function ie(pe){V.value=pe;const he=z.value;oe.value>he&&(oe.value=he)}function ae(){e.disabled||(oe.value-=1,t("prev-click",oe.value))}function le(){e.disabled||(oe.value+=1,t("next-click",oe.value))}function de(pe,he){pe&&(pe.props||(pe.props={}),pe.props.class=[pe.props.class,he].join(" "))}return provide(elPaginationKey,{pageCount:z,disabled:computed(()=>e.disabled),currentPage:oe,changeEvent:re,handleSizeChange:ie}),()=>{var pe,he;if(!k.value)return r("el.pagination.deprecationWarning"),null;if(!e.layout||e.hideOnSinglePage&&z.value<=1)return null;const ue=[],_e=[],Ie=h$1("div",{class:i.e("rightwrapper")},_e),Ce={prev:h$1(Prev,{disabled:e.disabled,currentPage:oe.value,prevText:e.prevText,prevIcon:e.prevIcon,onClick:ae}),jumper:h$1(Jumper,{size:e.small?"small":"default"}),pager:h$1(Pager,{currentPage:oe.value,pageCount:z.value,pagerCount:e.pagerCount,onChange:re,disabled:e.disabled}),next:h$1(Next,{disabled:e.disabled,currentPage:oe.value,pageCount:z.value,nextText:e.nextText,nextIcon:e.nextIcon,onClick:le}),sizes:h$1(Sizes,{pageSize:V.value,pageSizes:e.pageSizes,popperClass:e.popperClass,disabled:e.disabled,size:e.small?"small":"default"}),slot:(he=(pe=n==null?void 0:n.default)==null?void 0:pe.call(n))!=null?he:null,total:h$1(Total,{total:isAbsent(e.total)?0:e.total})},Oe=e.layout.split(",").map(qe=>qe.trim());let $e=!1;return Oe.forEach(qe=>{if(qe==="->"){$e=!0;return}$e?_e.push(Ce[qe]):ue.push(Ce[qe])}),de(ue[0],i.is("first")),de(ue[ue.length-1],i.is("last")),$e&&_e.length>0&&(de(_e[0],i.is("first")),de(_e[_e.length-1],i.is("last")),ue.push(Ie)),h$1("div",{role:"pagination","aria-label":"pagination",class:[i.b(),i.is("background",e.background),{[i.m("small")]:e.small}]},ue)}}});const ElPagination=withInstall(Pagination),popconfirmProps=buildProps({title:String,confirmButtonText:String,cancelButtonText:String,confirmButtonType:{type:String,values:buttonTypes,default:"primary"},cancelButtonType:{type:String,values:buttonTypes,default:"text"},icon:{type:iconPropType,default:()=>question_filled_default},iconColor:{type:String,default:"#f90"},hideIcon:{type:Boolean,default:!1},hideAfter:{type:Number,default:200},onConfirm:{type:definePropType(Function)},onCancel:{type:definePropType(Function)},teleported:useTooltipContentProps.teleported,persistent:useTooltipContentProps.persistent,width:{type:[String,Number],default:150}}),__default__$y=defineComponent({name:"ElPopconfirm"}),_sfc_main$O=defineComponent({...__default__$y,props:popconfirmProps,setup(e){const t=e,{t:n}=useLocale(),r=useNamespace("popconfirm"),i=ref(),g=()=>{var V,z;(z=(V=i.value)==null?void 0:V.onClose)==null||z.call(V)},$=computed(()=>({width:addUnit(t.width)})),y=V=>{var z;(z=t.onConfirm)==null||z.call(t,V),g()},k=V=>{var z;(z=t.onCancel)==null||z.call(t,V),g()},j=computed(()=>t.confirmButtonText||n("el.popconfirm.confirmButtonText")),L=computed(()=>t.cancelButtonText||n("el.popconfirm.cancelButtonText"));return(V,z)=>(openBlock(),createBlock(unref(ElTooltip),mergeProps({ref_key:"tooltipRef",ref:i,trigger:"click",effect:"light"},V.$attrs,{"popper-class":`${unref(r).namespace.value}-popover`,"popper-style":unref($),teleported:V.teleported,"fallback-placements":["bottom","top","right","left"],"hide-after":V.hideAfter,persistent:V.persistent}),{content:withCtx(()=>[createBaseVNode("div",{class:normalizeClass(unref(r).b())},[createBaseVNode("div",{class:normalizeClass(unref(r).e("main"))},[!V.hideIcon&&V.icon?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(r).e("icon")),style:normalizeStyle({color:V.iconColor})},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(V.icon)))]),_:1},8,["class","style"])):createCommentVNode("v-if",!0),createTextVNode(" "+toDisplayString$1(V.title),1)],2),createBaseVNode("div",{class:normalizeClass(unref(r).e("action"))},[createVNode(unref(ElButton),{size:"small",type:V.cancelButtonType==="text"?"":V.cancelButtonType,text:V.cancelButtonType==="text",onClick:k},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(L)),1)]),_:1},8,["type","text"]),createVNode(unref(ElButton),{size:"small",type:V.confirmButtonType==="text"?"":V.confirmButtonType,text:V.confirmButtonType==="text",onClick:y},{default:withCtx(()=>[createTextVNode(toDisplayString$1(unref(j)),1)]),_:1},8,["type","text"])],2)],2)]),default:withCtx(()=>[V.$slots.reference?renderSlot(V.$slots,"reference",{key:0}):createCommentVNode("v-if",!0)]),_:3},16,["popper-class","popper-style","teleported","hide-after","persistent"]))}});var Popconfirm=_export_sfc$1(_sfc_main$O,[["__file","/home/runner/work/element-plus/element-plus/packages/components/popconfirm/src/popconfirm.vue"]]);const ElPopconfirm=withInstall(Popconfirm),popoverProps=buildProps({trigger:useTooltipTriggerProps.trigger,placement:dropdownProps.placement,disabled:useTooltipTriggerProps.disabled,visible:useTooltipContentProps.visible,transition:useTooltipContentProps.transition,popperOptions:dropdownProps.popperOptions,tabindex:dropdownProps.tabindex,content:useTooltipContentProps.content,popperStyle:useTooltipContentProps.popperStyle,popperClass:useTooltipContentProps.popperClass,enterable:{...useTooltipContentProps.enterable,default:!0},effect:{...useTooltipContentProps.effect,default:"light"},teleported:useTooltipContentProps.teleported,title:String,width:{type:[String,Number],default:150},offset:{type:Number,default:void 0},showAfter:{type:Number,default:0},hideAfter:{type:Number,default:200},autoClose:{type:Number,default:0},showArrow:{type:Boolean,default:!0},persistent:{type:Boolean,default:!0},"onUpdate:visible":{type:Function}}),popoverEmits={"update:visible":e=>isBoolean$1(e),"before-enter":()=>!0,"before-leave":()=>!0,"after-enter":()=>!0,"after-leave":()=>!0},updateEventKeyRaw="onUpdate:visible",__default__$x=defineComponent({name:"ElPopover"}),_sfc_main$N=defineComponent({...__default__$x,props:popoverProps,emits:popoverEmits,setup(e,{expose:t,emit:n}){const r=e,i=computed(()=>r[updateEventKeyRaw]),g=useNamespace("popover"),$=ref(),y=computed(()=>{var ae;return(ae=unref($))==null?void 0:ae.popperRef}),k=computed(()=>[{width:addUnit(r.width)},r.popperStyle]),j=computed(()=>[g.b(),r.popperClass,{[g.m("plain")]:!!r.content}]),L=computed(()=>r.transition===`${g.namespace.value}-fade-in-linear`),V=()=>{var ae;(ae=$.value)==null||ae.hide()},z=()=>{n("before-enter")},oe=()=>{n("before-leave")},re=()=>{n("after-enter")},ie=()=>{n("update:visible",!1),n("after-leave")};return t({popperRef:y,hide:V}),(ae,le)=>(openBlock(),createBlock(unref(ElTooltip),mergeProps({ref_key:"tooltipRef",ref:$},ae.$attrs,{trigger:ae.trigger,placement:ae.placement,disabled:ae.disabled,visible:ae.visible,transition:ae.transition,"popper-options":ae.popperOptions,tabindex:ae.tabindex,content:ae.content,offset:ae.offset,"show-after":ae.showAfter,"hide-after":ae.hideAfter,"auto-close":ae.autoClose,"show-arrow":ae.showArrow,"aria-label":ae.title,effect:ae.effect,enterable:ae.enterable,"popper-class":unref(j),"popper-style":unref(k),teleported:ae.teleported,persistent:ae.persistent,"gpu-acceleration":unref(L),"onUpdate:visible":unref(i),onBeforeShow:z,onBeforeHide:oe,onShow:re,onHide:ie}),{content:withCtx(()=>[ae.title?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(g).e("title")),role:"title"},toDisplayString$1(ae.title),3)):createCommentVNode("v-if",!0),renderSlot(ae.$slots,"default",{},()=>[createTextVNode(toDisplayString$1(ae.content),1)])]),default:withCtx(()=>[ae.$slots.reference?renderSlot(ae.$slots,"reference",{key:0}):createCommentVNode("v-if",!0)]),_:3},16,["trigger","placement","disabled","visible","transition","popper-options","tabindex","content","offset","show-after","hide-after","auto-close","show-arrow","aria-label","effect","enterable","popper-class","popper-style","teleported","persistent","gpu-acceleration","onUpdate:visible"]))}});var Popover=_export_sfc$1(_sfc_main$N,[["__file","/home/runner/work/element-plus/element-plus/packages/components/popover/src/popover.vue"]]);const attachEvents=(e,t)=>{const n=t.arg||t.value,r=n==null?void 0:n.popperRef;r&&(r.triggerRef=e)};var PopoverDirective={mounted(e,t){attachEvents(e,t)},updated(e,t){attachEvents(e,t)}};const VPopover="popover",ElPopoverDirective=withInstallDirective(PopoverDirective,VPopover),ElPopover=withInstall(Popover,{directive:ElPopoverDirective}),progressProps=buildProps({type:{type:String,default:"line",values:["line","circle","dashboard"]},percentage:{type:Number,default:0,validator:e=>e>=0&&e<=100},status:{type:String,default:"",values:["","success","exception","warning"]},indeterminate:{type:Boolean,default:!1},duration:{type:Number,default:3},strokeWidth:{type:Number,default:6},strokeLinecap:{type:definePropType(String),default:"round"},textInside:{type:Boolean,default:!1},width:{type:Number,default:126},showText:{type:Boolean,default:!0},color:{type:definePropType([String,Array,Function]),default:""},format:{type:definePropType(Function),default:e=>`${e}%`}}),_hoisted_1$m=["aria-valuenow"],_hoisted_2$g={viewBox:"0 0 100 100"},_hoisted_3$8=["d","stroke","stroke-width"],_hoisted_4$6=["d","stroke","opacity","stroke-linecap","stroke-width"],_hoisted_5$5={key:0},__default__$w=defineComponent({name:"ElProgress"}),_sfc_main$M=defineComponent({...__default__$w,props:progressProps,setup(e){const t=e,n={success:"#13ce66",exception:"#ff4949",warning:"#e6a23c",default:"#20a0ff"},r=useNamespace("progress"),i=computed(()=>({width:`${t.percentage}%`,animationDuration:`${t.duration}s`,backgroundColor:de(t.percentage)})),g=computed(()=>(t.strokeWidth/t.width*100).toFixed(1)),$=computed(()=>["circle","dashboard"].includes(t.type)?Number.parseInt(`${50-Number.parseFloat(g.value)/2}`,10):0),y=computed(()=>{const pe=$.value,he=t.type==="dashboard";return` + M 50 50 + m 0 ${he?"":"-"}${pe} + a ${pe} ${pe} 0 1 1 0 ${he?"-":""}${pe*2} + a ${pe} ${pe} 0 1 1 0 ${he?"":"-"}${pe*2} + `}),k=computed(()=>2*Math.PI*$.value),j=computed(()=>t.type==="dashboard"?.75:1),L=computed(()=>`${-1*k.value*(1-j.value)/2}px`),V=computed(()=>({strokeDasharray:`${k.value*j.value}px, ${k.value}px`,strokeDashoffset:L.value})),z=computed(()=>({strokeDasharray:`${k.value*j.value*(t.percentage/100)}px, ${k.value}px`,strokeDashoffset:L.value,transition:"stroke-dasharray 0.6s ease 0s, stroke 0.6s ease, opacity ease 0.6s"})),oe=computed(()=>{let pe;return t.color?pe=de(t.percentage):pe=n[t.status]||n.default,pe}),re=computed(()=>t.status==="warning"?warning_filled_default:t.type==="line"?t.status==="success"?circle_check_default:circle_close_default:t.status==="success"?check_default:close_default),ie=computed(()=>t.type==="line"?12+t.strokeWidth*.4:t.width*.111111+2),ae=computed(()=>t.format(t.percentage));function le(pe){const he=100/pe.length;return pe.map((_e,Ie)=>isString$3(_e)?{color:_e,percentage:(Ie+1)*he}:_e).sort((_e,Ie)=>_e.percentage-Ie.percentage)}const de=pe=>{var he;const{color:ue}=t;if(isFunction$4(ue))return ue(pe);if(isString$3(ue))return ue;{const _e=le(ue);for(const Ie of _e)if(Ie.percentage>pe)return Ie.color;return(he=_e[_e.length-1])==null?void 0:he.color}};return(pe,he)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(r).b(),unref(r).m(pe.type),unref(r).is(pe.status),{[unref(r).m("without-text")]:!pe.showText,[unref(r).m("text-inside")]:pe.textInside}]),role:"progressbar","aria-valuenow":pe.percentage,"aria-valuemin":"0","aria-valuemax":"100"},[pe.type==="line"?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(r).b("bar"))},[createBaseVNode("div",{class:normalizeClass(unref(r).be("bar","outer")),style:normalizeStyle({height:`${pe.strokeWidth}px`})},[createBaseVNode("div",{class:normalizeClass([unref(r).be("bar","inner"),{[unref(r).bem("bar","inner","indeterminate")]:pe.indeterminate}]),style:normalizeStyle(unref(i))},[(pe.showText||pe.$slots.default)&&pe.textInside?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(r).be("bar","innerText"))},[renderSlot(pe.$slots,"default",{percentage:pe.percentage},()=>[createBaseVNode("span",null,toDisplayString$1(unref(ae)),1)])],2)):createCommentVNode("v-if",!0)],6)],6)],2)):(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref(r).b("circle")),style:normalizeStyle({height:`${pe.width}px`,width:`${pe.width}px`})},[(openBlock(),createElementBlock("svg",_hoisted_2$g,[createBaseVNode("path",{class:normalizeClass(unref(r).be("circle","track")),d:unref(y),stroke:`var(${unref(r).cssVarName("fill-color-light")}, #e5e9f2)`,"stroke-width":unref(g),fill:"none",style:normalizeStyle(unref(V))},null,14,_hoisted_3$8),createBaseVNode("path",{class:normalizeClass(unref(r).be("circle","path")),d:unref(y),stroke:unref(oe),fill:"none",opacity:pe.percentage?1:0,"stroke-linecap":pe.strokeLinecap,"stroke-width":unref(g),style:normalizeStyle(unref(z))},null,14,_hoisted_4$6)]))],6)),(pe.showText||pe.$slots.default)&&!pe.textInside?(openBlock(),createElementBlock("div",{key:2,class:normalizeClass(unref(r).e("text")),style:normalizeStyle({fontSize:`${unref(ie)}px`})},[renderSlot(pe.$slots,"default",{percentage:pe.percentage},()=>[pe.status?(openBlock(),createBlock(unref(ElIcon),{key:1},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(re))))]),_:1})):(openBlock(),createElementBlock("span",_hoisted_5$5,toDisplayString$1(unref(ae)),1))])],6)):createCommentVNode("v-if",!0)],10,_hoisted_1$m))}});var Progress=_export_sfc$1(_sfc_main$M,[["__file","/home/runner/work/element-plus/element-plus/packages/components/progress/src/progress.vue"]]);const ElProgress=withInstall(Progress),rateProps=buildProps({modelValue:{type:Number,default:0},id:{type:String,default:void 0},lowThreshold:{type:Number,default:2},highThreshold:{type:Number,default:4},max:{type:Number,default:5},colors:{type:definePropType([Array,Object]),default:()=>mutable(["","",""])},voidColor:{type:String,default:""},disabledVoidColor:{type:String,default:""},icons:{type:definePropType([Array,Object]),default:()=>[star_filled_default,star_filled_default,star_filled_default]},voidIcon:{type:iconPropType,default:()=>star_default},disabledVoidIcon:{type:iconPropType,default:()=>star_filled_default},disabled:{type:Boolean},allowHalf:{type:Boolean},showText:{type:Boolean},showScore:{type:Boolean},textColor:{type:String,default:""},texts:{type:definePropType(Array),default:()=>mutable(["Extremely bad","Disappointed","Fair","Satisfied","Surprise"])},scoreTemplate:{type:String,default:"{value}"},size:{type:String,validator:isValidComponentSize},label:{type:String,default:void 0},clearable:{type:Boolean,default:!1}}),rateEmits={[CHANGE_EVENT]:e=>isNumber$1(e),[UPDATE_MODEL_EVENT]:e=>isNumber$1(e)},_hoisted_1$l=["id","aria-label","aria-labelledby","aria-valuenow","aria-valuetext","aria-valuemax"],_hoisted_2$f=["onMousemove","onClick"],__default__$v=defineComponent({name:"ElRate"}),_sfc_main$L=defineComponent({...__default__$v,props:rateProps,emits:rateEmits,setup(e,{expose:t,emit:n}){const r=e;function i(Pt,jt){const bn=wn=>isObject$4(wn),hn=Object.keys(jt).map(wn=>+wn).filter(wn=>{const _n=jt[wn];return(bn(_n)?_n.excluded:!1)?Ptwn-_n),Dt=jt[hn[0]];return bn(Dt)&&Dt.value||Dt}const g=inject(formContextKey,void 0),$=inject(formItemContextKey,void 0),y=useSize(),k=useNamespace("rate"),{inputId:j,isLabeledByFormItem:L}=useFormItemInputId(r,{formItemContext:$}),V=ref(r.modelValue),z=ref(-1),oe=ref(!0),re=computed(()=>[k.b(),k.m(y.value)]),ie=computed(()=>r.disabled||(g==null?void 0:g.disabled)),ae=computed(()=>k.cssVarBlock({"void-color":r.voidColor,"disabled-void-color":r.disabledVoidColor,"fill-color":he.value})),le=computed(()=>{let Pt="";return r.showScore?Pt=r.scoreTemplate.replace(/\{\s*value\s*\}/,ie.value?`${r.modelValue}`:`${V.value}`):r.showText&&(Pt=r.texts[Math.ceil(V.value)-1]),Pt}),de=computed(()=>r.modelValue*100-Math.floor(r.modelValue)*100),pe=computed(()=>isArray$4(r.colors)?{[r.lowThreshold]:r.colors[0],[r.highThreshold]:{value:r.colors[1],excluded:!0},[r.max]:r.colors[2]}:r.colors),he=computed(()=>{const Pt=i(V.value,pe.value);return isObject$4(Pt)?"":Pt}),ue=computed(()=>{let Pt="";return ie.value?Pt=`${de.value}%`:r.allowHalf&&(Pt="50%"),{color:he.value,width:Pt}}),_e=computed(()=>{let Pt=isArray$4(r.icons)?[...r.icons]:{...r.icons};return Pt=markRaw(Pt),isArray$4(Pt)?{[r.lowThreshold]:Pt[0],[r.highThreshold]:{value:Pt[1],excluded:!0},[r.max]:Pt[2]}:Pt}),Ie=computed(()=>i(r.modelValue,_e.value)),Ce=computed(()=>ie.value?isString$3(r.disabledVoidIcon)?r.disabledVoidIcon:markRaw(r.disabledVoidIcon):isString$3(r.voidIcon)?r.voidIcon:markRaw(r.voidIcon)),Oe=computed(()=>i(V.value,_e.value));function $e(Pt){const jt=ie.value&&de.value>0&&Pt-1r.modelValue,bn=r.allowHalf&&oe.value&&Pt-.5<=V.value&&Pt>V.value;return jt||bn}function qe(Pt){r.clearable&&Pt===r.modelValue&&(Pt=0),n(UPDATE_MODEL_EVENT,Pt),r.modelValue!==Pt&&n("change",Pt)}function ze(Pt){ie.value||(r.allowHalf&&oe.value?qe(V.value):qe(Pt))}function Ue(Pt){if(ie.value)return;let jt=V.value;const bn=Pt.code;return bn===EVENT_CODE.up||bn===EVENT_CODE.right?(r.allowHalf?jt+=.5:jt+=1,Pt.stopPropagation(),Pt.preventDefault()):(bn===EVENT_CODE.left||bn===EVENT_CODE.down)&&(r.allowHalf?jt-=.5:jt-=1,Pt.stopPropagation(),Pt.preventDefault()),jt=jt<0?0:jt,jt=jt>r.max?r.max:jt,n(UPDATE_MODEL_EVENT,jt),n("change",jt),jt}function kt(Pt,jt){if(!ie.value){if(r.allowHalf){let bn=jt.target;hasClass(bn,k.e("item"))&&(bn=bn.querySelector(`.${k.e("icon")}`)),(bn.clientWidth===0||hasClass(bn,k.e("decimal")))&&(bn=bn.parentNode),oe.value=jt.offsetX*2<=bn.clientWidth,V.value=oe.value?Pt-.5:Pt}else V.value=Pt;z.value=Pt}}function At(){ie.value||(r.allowHalf&&(oe.value=r.modelValue!==Math.floor(r.modelValue)),V.value=r.modelValue,z.value=-1)}return watch(()=>r.modelValue,Pt=>{V.value=Pt,oe.value=r.modelValue!==Math.floor(r.modelValue)}),r.modelValue||n(UPDATE_MODEL_EVENT,0),t({setCurrentValue:kt,resetCurrentValue:At}),(Pt,jt)=>{var bn;return openBlock(),createElementBlock("div",{id:unref(j),class:normalizeClass([unref(re),unref(k).is("disabled",unref(ie))]),role:"slider","aria-label":unref(L)?void 0:Pt.label||"rating","aria-labelledby":unref(L)?(bn=unref($))==null?void 0:bn.labelId:void 0,"aria-valuenow":V.value,"aria-valuetext":unref(le)||void 0,"aria-valuemin":"0","aria-valuemax":Pt.max,tabindex:"0",style:normalizeStyle(unref(ae)),onKeydown:Ue},[(openBlock(!0),createElementBlock(Fragment,null,renderList(Pt.max,(hn,Dt)=>(openBlock(),createElementBlock("span",{key:Dt,class:normalizeClass(unref(k).e("item")),onMousemove:wn=>kt(hn,wn),onMouseleave:At,onClick:wn=>ze(hn)},[createVNode(unref(ElIcon),{class:normalizeClass([unref(k).e("icon"),{hover:z.value===hn},unref(k).is("active",hn<=V.value)])},{default:withCtx(()=>[$e(hn)?createCommentVNode("v-if",!0):(openBlock(),createElementBlock(Fragment,{key:0},[withDirectives((openBlock(),createBlock(resolveDynamicComponent(unref(Oe)),null,null,512)),[[vShow,hn<=V.value]]),withDirectives((openBlock(),createBlock(resolveDynamicComponent(unref(Ce)),null,null,512)),[[vShow,!(hn<=V.value)]])],64)),$e(hn)?(openBlock(),createBlock(unref(ElIcon),{key:1,style:normalizeStyle(unref(ue)),class:normalizeClass([unref(k).e("icon"),unref(k).e("decimal")])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(Ie))))]),_:1},8,["style","class"])):createCommentVNode("v-if",!0)]),_:2},1032,["class"])],42,_hoisted_2$f))),128)),Pt.showText||Pt.showScore?(openBlock(),createElementBlock("span",{key:0,class:normalizeClass(unref(k).e("text"))},toDisplayString$1(unref(le)),3)):createCommentVNode("v-if",!0)],46,_hoisted_1$l)}}});var Rate=_export_sfc$1(_sfc_main$L,[["__file","/home/runner/work/element-plus/element-plus/packages/components/rate/src/rate.vue"]]);const ElRate=withInstall(Rate),IconMap={success:"icon-success",warning:"icon-warning",error:"icon-error",info:"icon-info"},IconComponentMap={[IconMap.success]:circle_check_filled_default,[IconMap.warning]:warning_filled_default,[IconMap.error]:circle_close_filled_default,[IconMap.info]:info_filled_default},resultProps=buildProps({title:{type:String,default:""},subTitle:{type:String,default:""},icon:{type:String,values:["success","warning","info","error"],default:"info"}}),__default__$u=defineComponent({name:"ElResult"}),_sfc_main$K=defineComponent({...__default__$u,props:resultProps,setup(e){const t=e,n=useNamespace("result"),r=computed(()=>{const i=t.icon,g=i&&IconMap[i]?IconMap[i]:"icon-info",$=IconComponentMap[g]||IconComponentMap["icon-info"];return{class:g,component:$}});return(i,g)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref(n).b())},[createBaseVNode("div",{class:normalizeClass(unref(n).e("icon"))},[renderSlot(i.$slots,"icon",{},()=>[unref(r).component?(openBlock(),createBlock(resolveDynamicComponent(unref(r).component),{key:0,class:normalizeClass(unref(r).class)},null,8,["class"])):createCommentVNode("v-if",!0)])],2),i.title||i.$slots.title?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(n).e("title"))},[renderSlot(i.$slots,"title",{},()=>[createBaseVNode("p",null,toDisplayString$1(i.title),1)])],2)):createCommentVNode("v-if",!0),i.subTitle||i.$slots["sub-title"]?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref(n).e("subtitle"))},[renderSlot(i.$slots,"sub-title",{},()=>[createBaseVNode("p",null,toDisplayString$1(i.subTitle),1)])],2)):createCommentVNode("v-if",!0),i.$slots.extra?(openBlock(),createElementBlock("div",{key:2,class:normalizeClass(unref(n).e("extra"))},[renderSlot(i.$slots,"extra")],2)):createCommentVNode("v-if",!0)],2))}});var Result=_export_sfc$1(_sfc_main$K,[["__file","/home/runner/work/element-plus/element-plus/packages/components/result/src/result.vue"]]);const ElResult=withInstall(Result),RowJustify=["start","center","end","space-around","space-between","space-evenly"],RowAlign=["top","middle","bottom"],rowProps=buildProps({tag:{type:String,default:"div"},gutter:{type:Number,default:0},justify:{type:String,values:RowJustify,default:"start"},align:{type:String,values:RowAlign,default:"top"}}),__default__$t=defineComponent({name:"ElRow"}),_sfc_main$J=defineComponent({...__default__$t,props:rowProps,setup(e){const t=e,n=useNamespace("row"),r=computed(()=>t.gutter);provide(rowContextKey,{gutter:r});const i=computed(()=>{const $={};return t.gutter&&($.marginRight=$.marginLeft=`-${t.gutter/2}px`),$}),g=computed(()=>[n.b(),n.is(`justify-${t.justify}`,t.justify!=="start"),n.is(`align-${t.align}`,t.align!=="top")]);return($,y)=>(openBlock(),createBlock(resolveDynamicComponent($.tag),{class:normalizeClass(unref(g)),style:normalizeStyle(unref(i))},{default:withCtx(()=>[renderSlot($.$slots,"default")]),_:3},8,["class","style"]))}});var Row=_export_sfc$1(_sfc_main$J,[["__file","/home/runner/work/element-plus/element-plus/packages/components/row/src/row.vue"]]);const ElRow=withInstall(Row);var safeIsNaN=Number.isNaN||function(t){return typeof t=="number"&&t!==t};function isEqual(e,t){return!!(e===t||safeIsNaN(e)&&safeIsNaN(t))}function areInputsEqual(e,t){if(e.length!==t.length)return!1;for(var n=0;n{const t=getCurrentInstance().proxy.$props;return computed(()=>{const n=(r,i,g)=>({});return t.perfMode?memoize(n):memoizeOne(n)})},DEFAULT_DYNAMIC_LIST_ITEM_SIZE=50,ITEM_RENDER_EVT="itemRendered",SCROLL_EVT="scroll",FORWARD="forward",BACKWARD="backward",AUTO_ALIGNMENT="auto",SMART_ALIGNMENT="smart",START_ALIGNMENT="start",CENTERED_ALIGNMENT="center",END_ALIGNMENT="end",HORIZONTAL="horizontal",VERTICAL="vertical",LTR="ltr",RTL="rtl",RTL_OFFSET_NAG="negative",RTL_OFFSET_POS_ASC="positive-ascending",RTL_OFFSET_POS_DESC="positive-descending",ScrollbarDirKey={[HORIZONTAL]:"left",[VERTICAL]:"top"},SCROLLBAR_MIN_SIZE=20,LayoutKeys={[HORIZONTAL]:"deltaX",[VERTICAL]:"deltaY"},useWheel=({atEndEdge:e,atStartEdge:t,layout:n},r)=>{let i,g=0;const $=k=>k<0&&t.value||k>0&&e.value;return{hasReachedEdge:$,onWheel:k=>{cAF(i);const j=k[LayoutKeys[n.value]];$(g)&&$(g+j)||(g+=j,isFirefox()||k.preventDefault(),i=rAF(()=>{r(g),g=0}))}}},itemSize$1=buildProp({type:definePropType([Number,Function]),required:!0}),estimatedItemSize=buildProp({type:Number}),cache$1=buildProp({type:Number,default:2}),direction=buildProp({type:String,values:["ltr","rtl"],default:"ltr"}),initScrollOffset=buildProp({type:Number,default:0}),total=buildProp({type:Number,required:!0}),layout=buildProp({type:String,values:["horizontal","vertical"],default:VERTICAL}),virtualizedProps=buildProps({className:{type:String,default:""},containerElement:{type:definePropType([String,Object]),default:"div"},data:{type:definePropType(Array),default:()=>mutable([])},direction,height:{type:[String,Number],required:!0},innerElement:{type:[String,Object],default:"div"},style:{type:definePropType([Object,String,Array])},useIsScrolling:{type:Boolean,default:!1},width:{type:[Number,String],required:!1},perfMode:{type:Boolean,default:!0},scrollbarAlwaysOn:{type:Boolean,default:!1}}),virtualizedListProps=buildProps({cache:cache$1,estimatedItemSize,layout,initScrollOffset,total,itemSize:itemSize$1,...virtualizedProps}),scrollbarSize={type:Number,default:6},startGap={type:Number,default:0},endGap={type:Number,default:2},virtualizedGridProps=buildProps({columnCache:cache$1,columnWidth:itemSize$1,estimatedColumnWidth:estimatedItemSize,estimatedRowHeight:estimatedItemSize,initScrollLeft:initScrollOffset,initScrollTop:initScrollOffset,itemKey:{type:definePropType(Function),default:({columnIndex:e,rowIndex:t})=>`${t}:${e}`},rowCache:cache$1,rowHeight:itemSize$1,totalColumn:total,totalRow:total,hScrollbarSize:scrollbarSize,vScrollbarSize:scrollbarSize,scrollbarStartGap:startGap,scrollbarEndGap:endGap,...virtualizedProps}),virtualizedScrollbarProps=buildProps({alwaysOn:Boolean,class:String,layout,total,ratio:{type:Number,required:!0},clientSize:{type:Number,required:!0},scrollFrom:{type:Number,required:!0},scrollbarSize,startGap,endGap,visible:Boolean}),getScrollDir=(e,t)=>ee===LTR||e===RTL||e===HORIZONTAL,isRTL=e=>e===RTL;let cachedRTLResult=null;function getRTLOffsetType(e=!1){if(cachedRTLResult===null||e){const t=document.createElement("div"),n=t.style;n.width="50px",n.height="50px",n.overflow="scroll",n.direction="rtl";const r=document.createElement("div"),i=r.style;return i.width="100px",i.height="100px",t.appendChild(r),document.body.appendChild(t),t.scrollLeft>0?cachedRTLResult=RTL_OFFSET_POS_DESC:(t.scrollLeft=1,t.scrollLeft===0?cachedRTLResult=RTL_OFFSET_NAG:cachedRTLResult=RTL_OFFSET_POS_ASC),document.body.removeChild(t),cachedRTLResult}return cachedRTLResult}function renderThumbStyle({move:e,size:t,bar:n},r){const i={},g=`translate${n.axis}(${e}px)`;return i[n.size]=t,i.transform=g,i.msTransform=g,i.webkitTransform=g,r==="horizontal"?i.height="100%":i.width="100%",i}const ScrollBar=defineComponent({name:"ElVirtualScrollBar",props:virtualizedScrollbarProps,emits:["scroll","start-move","stop-move"],setup(e,{emit:t}){const n=computed(()=>e.startGap+e.endGap),r=useNamespace("virtual-scrollbar"),i=useNamespace("scrollbar"),g=ref(),$=ref();let y=null,k=null;const j=reactive({isDragging:!1,traveled:0}),L=computed(()=>BAR_MAP[e.layout]),V=computed(()=>e.clientSize-unref(n)),z=computed(()=>({position:"absolute",width:`${HORIZONTAL===e.layout?V.value:e.scrollbarSize}px`,height:`${HORIZONTAL===e.layout?e.scrollbarSize:V.value}px`,[ScrollbarDirKey[e.layout]]:"2px",right:"2px",bottom:"2px",borderRadius:"4px"})),oe=computed(()=>{const _e=e.ratio,Ie=e.clientSize;if(_e>=100)return Number.POSITIVE_INFINITY;if(_e>=50)return _e*Ie/100;const Ce=Ie/3;return Math.floor(Math.min(Math.max(_e*Ie,SCROLLBAR_MIN_SIZE),Ce))}),re=computed(()=>{if(!Number.isFinite(oe.value))return{display:"none"};const _e=`${oe.value}px`;return renderThumbStyle({bar:L.value,size:_e,move:j.traveled},e.layout)}),ie=computed(()=>Math.floor(e.clientSize-oe.value-unref(n))),ae=()=>{window.addEventListener("mousemove",he),window.addEventListener("mouseup",pe);const _e=unref($);!_e||(k=document.onselectstart,document.onselectstart=()=>!1,_e.addEventListener("touchmove",he),_e.addEventListener("touchend",pe))},le=()=>{window.removeEventListener("mousemove",he),window.removeEventListener("mouseup",pe),document.onselectstart=k,k=null;const _e=unref($);!_e||(_e.removeEventListener("touchmove",he),_e.removeEventListener("touchend",pe))},de=_e=>{_e.stopImmediatePropagation(),!(_e.ctrlKey||[1,2].includes(_e.button))&&(j.isDragging=!0,j[L.value.axis]=_e.currentTarget[L.value.offset]-(_e[L.value.client]-_e.currentTarget.getBoundingClientRect()[L.value.direction]),t("start-move"),ae())},pe=()=>{j.isDragging=!1,j[L.value.axis]=0,t("stop-move"),le()},he=_e=>{const{isDragging:Ie}=j;if(!Ie||!$.value||!g.value)return;const Ce=j[L.value.axis];if(!Ce)return;cAF(y);const Oe=(g.value.getBoundingClientRect()[L.value.direction]-_e[L.value.client])*-1,$e=$.value[L.value.offset]-Ce,qe=Oe-$e;y=rAF(()=>{j.traveled=Math.max(e.startGap,Math.min(qe,ie.value)),t("scroll",qe,ie.value)})},ue=_e=>{const Ie=Math.abs(_e.target.getBoundingClientRect()[L.value.direction]-_e[L.value.client]),Ce=$.value[L.value.offset]/2,Oe=Ie-Ce;j.traveled=Math.max(0,Math.min(Oe,ie.value)),t("scroll",Oe,ie.value)};return watch(()=>e.scrollFrom,_e=>{j.isDragging||(j.traveled=Math.ceil(_e*ie.value))}),onBeforeUnmount(()=>{le()}),()=>h$1("div",{role:"presentation",ref:g,class:[r.b(),e.class,(e.alwaysOn||j.isDragging)&&"always-on"],style:z.value,onMousedown:withModifiers(ue,["stop","prevent"]),onTouchstartPrevent:de},h$1("div",{ref:$,class:i.e("thumb"),style:re.value,onMousedown:de},[]))}}),createList=({name:e,getOffset:t,getItemSize:n,getItemOffset:r,getEstimatedTotalSize:i,getStartIndexForOffset:g,getStopIndexForStartIndex:$,initCache:y,clearCache:k,validateProps:j})=>defineComponent({name:e!=null?e:"ElVirtualList",props:virtualizedListProps,emits:[ITEM_RENDER_EVT,SCROLL_EVT],setup(L,{emit:V,expose:z}){j(L);const oe=getCurrentInstance(),re=useNamespace("vl"),ie=ref(y(L,oe)),ae=useCache(),le=ref(),de=ref(),pe=ref(),he=ref({isScrolling:!1,scrollDir:"forward",scrollOffset:isNumber$1(L.initScrollOffset)?L.initScrollOffset:0,updateRequested:!1,isScrollbarDragging:!1,scrollbarAlwaysOn:L.scrollbarAlwaysOn}),ue=computed(()=>{const{total:vn,cache:Cn}=L,{isScrolling:xn,scrollDir:En,scrollOffset:Sn}=unref(he);if(vn===0)return[0,0,0,0];const Bn=g(L,Sn,unref(ie)),An=$(L,Bn,Sn,unref(ie)),Pn=!xn||En===BACKWARD?Math.max(1,Cn):1,Mn=!xn||En===FORWARD?Math.max(1,Cn):1;return[Math.max(0,Bn-Pn),Math.max(0,Math.min(vn-1,An+Mn)),Bn,An]}),_e=computed(()=>i(L,unref(ie))),Ie=computed(()=>isHorizontal(L.layout)),Ce=computed(()=>[{position:"relative",[`overflow-${Ie.value?"x":"y"}`]:"scroll",WebkitOverflowScrolling:"touch",willChange:"transform"},{direction:L.direction,height:isNumber$1(L.height)?`${L.height}px`:L.height,width:isNumber$1(L.width)?`${L.width}px`:L.width},L.style]),Oe=computed(()=>{const vn=unref(_e),Cn=unref(Ie);return{height:Cn?"100%":`${vn}px`,pointerEvents:unref(he).isScrolling?"none":void 0,width:Cn?`${vn}px`:"100%"}}),$e=computed(()=>Ie.value?L.width:L.height),{onWheel:qe}=useWheel({atStartEdge:computed(()=>he.value.scrollOffset<=0),atEndEdge:computed(()=>he.value.scrollOffset>=_e.value),layout:computed(()=>L.layout)},vn=>{var Cn,xn;(xn=(Cn=pe.value).onMouseUp)==null||xn.call(Cn),jt(Math.min(he.value.scrollOffset+vn,_e.value-$e.value))}),ze=()=>{const{total:vn}=L;if(vn>0){const[Sn,Bn,An,Pn]=unref(ue);V(ITEM_RENDER_EVT,Sn,Bn,An,Pn)}const{scrollDir:Cn,scrollOffset:xn,updateRequested:En}=unref(he);V(SCROLL_EVT,Cn,xn,En)},Ue=vn=>{const{clientHeight:Cn,scrollHeight:xn,scrollTop:En}=vn.currentTarget,Sn=unref(he);if(Sn.scrollOffset===En)return;const Bn=Math.max(0,Math.min(En,xn-Cn));he.value={...Sn,isScrolling:!0,scrollDir:getScrollDir(Sn.scrollOffset,Bn),scrollOffset:Bn,updateRequested:!1},nextTick(Dt)},kt=vn=>{const{clientWidth:Cn,scrollLeft:xn,scrollWidth:En}=vn.currentTarget,Sn=unref(he);if(Sn.scrollOffset===xn)return;const{direction:Bn}=L;let An=xn;if(Bn===RTL)switch(getRTLOffsetType()){case RTL_OFFSET_NAG:{An=-xn;break}case RTL_OFFSET_POS_DESC:{An=En-Cn-xn;break}}An=Math.max(0,Math.min(An,En-Cn)),he.value={...Sn,isScrolling:!0,scrollDir:getScrollDir(Sn.scrollOffset,An),scrollOffset:An,updateRequested:!1},nextTick(Dt)},At=vn=>{unref(Ie)?kt(vn):Ue(vn),ze()},Pt=(vn,Cn)=>{const xn=(_e.value-$e.value)/Cn*vn;jt(Math.min(_e.value-$e.value,xn))},jt=vn=>{vn=Math.max(vn,0),vn!==unref(he).scrollOffset&&(he.value={...unref(he),scrollOffset:vn,scrollDir:getScrollDir(unref(he).scrollOffset,vn),updateRequested:!0},nextTick(Dt))},bn=(vn,Cn=AUTO_ALIGNMENT)=>{const{scrollOffset:xn}=unref(he);vn=Math.max(0,Math.min(vn,L.total-1)),jt(t(L,vn,Cn,xn,unref(ie)))},hn=vn=>{const{direction:Cn,itemSize:xn,layout:En}=L,Sn=ae.value(k&&xn,k&&En,k&&Cn);let Bn;if(hasOwn$2(Sn,String(vn)))Bn=Sn[vn];else{const An=r(L,vn,unref(ie)),Pn=n(L,vn,unref(ie)),Mn=unref(Ie),Fn=Cn===RTL,jn=Mn?An:0;Sn[vn]=Bn={position:"absolute",left:Fn?void 0:`${jn}px`,right:Fn?`${jn}px`:void 0,top:Mn?0:`${An}px`,height:Mn?"100%":`${Pn}px`,width:Mn?`${Pn}px`:"100%"}}return Bn},Dt=()=>{he.value.isScrolling=!1,nextTick(()=>{ae.value(-1,null,null)})},wn=()=>{const vn=le.value;vn&&(vn.scrollTop=0)};onMounted(()=>{if(!isClient)return;const{initScrollOffset:vn}=L,Cn=unref(le);isNumber$1(vn)&&Cn&&(unref(Ie)?Cn.scrollLeft=vn:Cn.scrollTop=vn),ze()}),onUpdated(()=>{const{direction:vn,layout:Cn}=L,{scrollOffset:xn,updateRequested:En}=unref(he),Sn=unref(le);if(En&&Sn)if(Cn===HORIZONTAL)if(vn===RTL)switch(getRTLOffsetType()){case RTL_OFFSET_NAG:{Sn.scrollLeft=-xn;break}case RTL_OFFSET_POS_ASC:{Sn.scrollLeft=xn;break}default:{const{clientWidth:Bn,scrollWidth:An}=Sn;Sn.scrollLeft=An-Bn-xn;break}}else Sn.scrollLeft=xn;else Sn.scrollTop=xn});const _n={ns:re,clientSize:$e,estimatedTotalSize:_e,windowStyle:Ce,windowRef:le,innerRef:de,innerStyle:Oe,itemsToRender:ue,scrollbarRef:pe,states:he,getItemStyle:hn,onScroll:At,onScrollbarScroll:Pt,onWheel:qe,scrollTo:jt,scrollToItem:bn,resetScrollTop:wn};return z({windowRef:le,innerRef:de,getItemStyleCache:ae,scrollTo:jt,scrollToItem:bn,resetScrollTop:wn,states:he}),_n},render(L){var V;const{$slots:z,className:oe,clientSize:re,containerElement:ie,data:ae,getItemStyle:le,innerElement:de,itemsToRender:pe,innerStyle:he,layout:ue,total:_e,onScroll:Ie,onScrollbarScroll:Ce,onWheel:Oe,states:$e,useIsScrolling:qe,windowStyle:ze,ns:Ue}=L,[kt,At]=pe,Pt=resolveDynamicComponent(ie),jt=resolveDynamicComponent(de),bn=[];if(_e>0)for(let _n=kt;_n<=At;_n++)bn.push((V=z.default)==null?void 0:V.call(z,{data:ae,key:_n,index:_n,isScrolling:qe?$e.isScrolling:void 0,style:le(_n)}));const hn=[h$1(jt,{style:he,ref:"innerRef"},isString$3(jt)?bn:{default:()=>bn})],Dt=h$1(ScrollBar,{ref:"scrollbarRef",clientSize:re,layout:ue,onScroll:Ce,ratio:re*100/this.estimatedTotalSize,scrollFrom:$e.scrollOffset/(this.estimatedTotalSize-re),total:_e}),wn=h$1(Pt,{class:[Ue.e("window"),oe],style:ze,onScroll:Ie,onWheel:Oe,ref:"windowRef",key:0},isString$3(Pt)?[hn]:{default:()=>[hn]});return h$1("div",{key:0,class:[Ue.e("wrapper"),$e.scrollbarAlwaysOn?"always-on":""]},[wn,Dt])}}),FixedSizeList=createList({name:"ElFixedSizeList",getItemOffset:({itemSize:e},t)=>t*e,getItemSize:({itemSize:e})=>e,getEstimatedTotalSize:({total:e,itemSize:t})=>t*e,getOffset:({height:e,total:t,itemSize:n,layout:r,width:i},g,$,y)=>{const k=isHorizontal(r)?i:e,j=Math.max(0,t*n-k),L=Math.min(j,g*n),V=Math.max(0,(g+1)*n-k);switch($===SMART_ALIGNMENT&&(y>=V-k&&y<=L+k?$=AUTO_ALIGNMENT:$=CENTERED_ALIGNMENT),$){case START_ALIGNMENT:return L;case END_ALIGNMENT:return V;case CENTERED_ALIGNMENT:{const z=Math.round(V+(L-V)/2);return zj+Math.floor(k/2)?j:z}case AUTO_ALIGNMENT:default:return y>=V&&y<=L?y:yMath.max(0,Math.min(e-1,Math.floor(n/t))),getStopIndexForStartIndex:({height:e,total:t,itemSize:n,layout:r,width:i},g,$)=>{const y=g*n,k=isHorizontal(r)?i:e,j=Math.ceil((k+$-y)/n);return Math.max(0,Math.min(t-1,g+j-1))},initCache(){},clearCache:!0,validateProps(){}}),getItemFromCache$1=(e,t,n)=>{const{itemSize:r}=e,{items:i,lastVisitedIndex:g}=n;if(t>g){let $=0;if(g>=0){const y=i[g];$=y.offset+y.size}for(let y=g+1;y<=t;y++){const k=r(y);i[y]={offset:$,size:k},$+=k}n.lastVisitedIndex=t}return i[t]},findItem$1=(e,t,n)=>{const{items:r,lastVisitedIndex:i}=t;return(i>0?r[i].offset:0)>=n?bs$1(e,t,0,i,n):es$1(e,t,Math.max(0,i),n)},bs$1=(e,t,n,r,i)=>{for(;n<=r;){const g=n+Math.floor((r-n)/2),$=getItemFromCache$1(e,g,t).offset;if($===i)return g;$i&&(r=g-1)}return Math.max(0,n-1)},es$1=(e,t,n,r)=>{const{total:i}=e;let g=1;for(;n{let i=0;if(r>=e&&(r=e-1),r>=0){const y=t[r];i=y.offset+y.size}const $=(e-r-1)*n;return i+$},DynamicSizeList=createList({name:"ElDynamicSizeList",getItemOffset:(e,t,n)=>getItemFromCache$1(e,t,n).offset,getItemSize:(e,t,{items:n})=>n[t].size,getEstimatedTotalSize,getOffset:(e,t,n,r,i)=>{const{height:g,layout:$,width:y}=e,k=isHorizontal($)?y:g,j=getItemFromCache$1(e,t,i),L=getEstimatedTotalSize(e,i),V=Math.max(0,Math.min(L-k,j.offset)),z=Math.max(0,j.offset-k+j.size);switch(n===SMART_ALIGNMENT&&(r>=z-k&&r<=V+k?n=AUTO_ALIGNMENT:n=CENTERED_ALIGNMENT),n){case START_ALIGNMENT:return V;case END_ALIGNMENT:return z;case CENTERED_ALIGNMENT:return Math.round(z+(V-z)/2);case AUTO_ALIGNMENT:default:return r>=z&&r<=V?r:rfindItem$1(e,n,t),getStopIndexForStartIndex:(e,t,n,r)=>{const{height:i,total:g,layout:$,width:y}=e,k=isHorizontal($)?y:i,j=getItemFromCache$1(e,t,r),L=n+k;let V=j.offset+j.size,z=t;for(;z{var g,$;n.lastVisitedIndex=Math.min(n.lastVisitedIndex,r-1),(g=t.exposed)==null||g.getItemStyleCache(-1),i&&(($=t.proxy)==null||$.$forceUpdate())},n},clearCache:!1,validateProps:({itemSize:e})=>{}}),useGridWheel=({atXEndEdge:e,atXStartEdge:t,atYEndEdge:n,atYStartEdge:r},i)=>{let g=null,$=0,y=0;const k=(L,V)=>{const z=L<0&&t.value||L>0&&e.value,oe=V<0&&r.value||V>0&&n.value;return z&&oe};return{hasReachedEdge:k,onWheel:L=>{cAF(g);let V=L.deltaX,z=L.deltaY;Math.abs(V)>Math.abs(z)?z=0:V=0,L.shiftKey&&z!==0&&(V=z,z=0),!(k($,y)&&k($+V,y+z))&&($+=V,y+=z,isFirefox()||L.preventDefault(),g=rAF(()=>{i($,y),$=0,y=0}))}}},createGrid=({name:e,clearCache:t,getColumnPosition:n,getColumnStartIndexForOffset:r,getColumnStopIndexForStartIndex:i,getEstimatedTotalHeight:g,getEstimatedTotalWidth:$,getColumnOffset:y,getRowOffset:k,getRowPosition:j,getRowStartIndexForOffset:L,getRowStopIndexForStartIndex:V,initCache:z,injectToInstance:oe,validateProps:re})=>defineComponent({name:e!=null?e:"ElVirtualList",props:virtualizedGridProps,emits:[ITEM_RENDER_EVT,SCROLL_EVT],setup(ie,{emit:ae,expose:le,slots:de}){const pe=useNamespace("vl");re(ie);const he=getCurrentInstance(),ue=ref(z(ie,he));oe==null||oe(he,ue);const _e=ref(),Ie=ref(),Ce=ref(),Oe=ref(null),$e=ref({isScrolling:!1,scrollLeft:isNumber$1(ie.initScrollLeft)?ie.initScrollLeft:0,scrollTop:isNumber$1(ie.initScrollTop)?ie.initScrollTop:0,updateRequested:!1,xAxisScrollDir:FORWARD,yAxisScrollDir:FORWARD}),qe=useCache(),ze=computed(()=>Number.parseInt(`${ie.height}`,10)),Ue=computed(()=>Number.parseInt(`${ie.width}`,10)),kt=computed(()=>{const{totalColumn:eo,totalRow:Un,columnCache:Yn}=ie,{isScrolling:to,xAxisScrollDir:Hn,scrollLeft:On}=unref($e);if(eo===0||Un===0)return[0,0,0,0];const Wn=r(ie,On,unref(ue)),oo=i(ie,Wn,On,unref(ue)),ro=!to||Hn===BACKWARD?Math.max(1,Yn):1,Qn=!to||Hn===FORWARD?Math.max(1,Yn):1;return[Math.max(0,Wn-ro),Math.max(0,Math.min(eo-1,oo+Qn)),Wn,oo]}),At=computed(()=>{const{totalColumn:eo,totalRow:Un,rowCache:Yn}=ie,{isScrolling:to,yAxisScrollDir:Hn,scrollTop:On}=unref($e);if(eo===0||Un===0)return[0,0,0,0];const Wn=L(ie,On,unref(ue)),oo=V(ie,Wn,On,unref(ue)),ro=!to||Hn===BACKWARD?Math.max(1,Yn):1,Qn=!to||Hn===FORWARD?Math.max(1,Yn):1;return[Math.max(0,Wn-ro),Math.max(0,Math.min(Un-1,oo+Qn)),Wn,oo]}),Pt=computed(()=>g(ie,unref(ue))),jt=computed(()=>$(ie,unref(ue))),bn=computed(()=>{var eo;return[{position:"relative",overflow:"hidden",WebkitOverflowScrolling:"touch",willChange:"transform"},{direction:ie.direction,height:isNumber$1(ie.height)?`${ie.height}px`:ie.height,width:isNumber$1(ie.width)?`${ie.width}px`:ie.width},(eo=ie.style)!=null?eo:{}]}),hn=computed(()=>{const eo=`${unref(jt)}px`;return{height:`${unref(Pt)}px`,pointerEvents:unref($e).isScrolling?"none":void 0,width:eo}}),Dt=()=>{const{totalColumn:eo,totalRow:Un}=ie;if(eo>0&&Un>0){const[oo,ro,Qn,lo]=unref(kt),[ho,Tn,Ln,Rn]=unref(At);ae(ITEM_RENDER_EVT,{columnCacheStart:oo,columnCacheEnd:ro,rowCacheStart:ho,rowCacheEnd:Tn,columnVisibleStart:Qn,columnVisibleEnd:lo,rowVisibleStart:Ln,rowVisibleEnd:Rn})}const{scrollLeft:Yn,scrollTop:to,updateRequested:Hn,xAxisScrollDir:On,yAxisScrollDir:Wn}=unref($e);ae(SCROLL_EVT,{xAxisScrollDir:On,scrollLeft:Yn,yAxisScrollDir:Wn,scrollTop:to,updateRequested:Hn})},wn=eo=>{const{clientHeight:Un,clientWidth:Yn,scrollHeight:to,scrollLeft:Hn,scrollTop:On,scrollWidth:Wn}=eo.currentTarget,oo=unref($e);if(oo.scrollTop===On&&oo.scrollLeft===Hn)return;let ro=Hn;if(isRTL(ie.direction))switch(getRTLOffsetType()){case RTL_OFFSET_NAG:ro=-Hn;break;case RTL_OFFSET_POS_DESC:ro=Wn-Yn-Hn;break}$e.value={...oo,isScrolling:!0,scrollLeft:ro,scrollTop:Math.max(0,Math.min(On,to-Un)),updateRequested:!0,xAxisScrollDir:getScrollDir(oo.scrollLeft,ro),yAxisScrollDir:getScrollDir(oo.scrollTop,On)},nextTick(()=>Bn()),An(),Dt()},_n=(eo,Un)=>{const Yn=unref(ze),to=(Pt.value-Yn)/Un*eo;xn({scrollTop:Math.min(Pt.value-Yn,to)})},vn=(eo,Un)=>{const Yn=unref(Ue),to=(jt.value-Yn)/Un*eo;xn({scrollLeft:Math.min(jt.value-Yn,to)})},{onWheel:Cn}=useGridWheel({atXStartEdge:computed(()=>$e.value.scrollLeft<=0),atXEndEdge:computed(()=>$e.value.scrollLeft>=jt.value),atYStartEdge:computed(()=>$e.value.scrollTop<=0),atYEndEdge:computed(()=>$e.value.scrollTop>=Pt.value)},(eo,Un)=>{var Yn,to,Hn,On;(to=(Yn=Ie.value)==null?void 0:Yn.onMouseUp)==null||to.call(Yn),(On=(Hn=Ie.value)==null?void 0:Hn.onMouseUp)==null||On.call(Hn);const Wn=unref(Ue),oo=unref(ze);xn({scrollLeft:Math.min($e.value.scrollLeft+eo,jt.value-Wn),scrollTop:Math.min($e.value.scrollTop+Un,Pt.value-oo)})}),xn=({scrollLeft:eo=$e.value.scrollLeft,scrollTop:Un=$e.value.scrollTop})=>{eo=Math.max(eo,0),Un=Math.max(Un,0);const Yn=unref($e);Un===Yn.scrollTop&&eo===Yn.scrollLeft||($e.value={...Yn,xAxisScrollDir:getScrollDir(Yn.scrollLeft,eo),yAxisScrollDir:getScrollDir(Yn.scrollTop,Un),scrollLeft:eo,scrollTop:Un,updateRequested:!0},nextTick(()=>Bn()),An(),Dt())},En=(eo=0,Un=0,Yn=AUTO_ALIGNMENT)=>{const to=unref($e);Un=Math.max(0,Math.min(Un,ie.totalColumn-1)),eo=Math.max(0,Math.min(eo,ie.totalRow-1));const Hn=getScrollBarWidth(pe.namespace.value),On=unref(ue),Wn=g(ie,On),oo=$(ie,On);xn({scrollLeft:y(ie,Un,Yn,to.scrollLeft,On,oo>ie.width?Hn:0),scrollTop:k(ie,eo,Yn,to.scrollTop,On,Wn>ie.height?Hn:0)})},Sn=(eo,Un)=>{const{columnWidth:Yn,direction:to,rowHeight:Hn}=ie,On=qe.value(t&&Yn,t&&Hn,t&&to),Wn=`${eo},${Un}`;if(hasOwn$2(On,Wn))return On[Wn];{const[,oo]=n(ie,Un,unref(ue)),ro=unref(ue),Qn=isRTL(to),[lo,ho]=j(ie,eo,ro),[Tn]=n(ie,Un,ro);return On[Wn]={position:"absolute",left:Qn?void 0:`${oo}px`,right:Qn?`${oo}px`:void 0,top:`${ho}px`,height:`${lo}px`,width:`${Tn}px`},On[Wn]}},Bn=()=>{$e.value.isScrolling=!1,nextTick(()=>{qe.value(-1,null,null)})};onMounted(()=>{if(!isClient)return;const{initScrollLeft:eo,initScrollTop:Un}=ie,Yn=unref(_e);Yn&&(isNumber$1(eo)&&(Yn.scrollLeft=eo),isNumber$1(Un)&&(Yn.scrollTop=Un)),Dt()});const An=()=>{const{direction:eo}=ie,{scrollLeft:Un,scrollTop:Yn,updateRequested:to}=unref($e),Hn=unref(_e);if(to&&Hn){if(eo===RTL)switch(getRTLOffsetType()){case RTL_OFFSET_NAG:{Hn.scrollLeft=-Un;break}case RTL_OFFSET_POS_ASC:{Hn.scrollLeft=Un;break}default:{const{clientWidth:On,scrollWidth:Wn}=Hn;Hn.scrollLeft=Wn-On-Un;break}}else Hn.scrollLeft=Math.max(0,Un);Hn.scrollTop=Math.max(0,Yn)}},{resetAfterColumnIndex:Pn,resetAfterRowIndex:Mn,resetAfter:Fn}=he.proxy;le({windowRef:_e,innerRef:Oe,getItemStyleCache:qe,scrollTo:xn,scrollToItem:En,states:$e,resetAfterColumnIndex:Pn,resetAfterRowIndex:Mn,resetAfter:Fn});const jn=()=>{const{scrollbarAlwaysOn:eo,scrollbarStartGap:Un,scrollbarEndGap:Yn,totalColumn:to,totalRow:Hn}=ie,On=unref(Ue),Wn=unref(ze),oo=unref(jt),ro=unref(Pt),{scrollLeft:Qn,scrollTop:lo}=unref($e),ho=h$1(ScrollBar,{ref:Ie,alwaysOn:eo,startGap:Un,endGap:Yn,class:pe.e("horizontal"),clientSize:On,layout:"horizontal",onScroll:vn,ratio:On*100/oo,scrollFrom:Qn/(oo-On),total:Hn,visible:!0}),Tn=h$1(ScrollBar,{ref:Ce,alwaysOn:eo,startGap:Un,endGap:Yn,class:pe.e("vertical"),clientSize:Wn,layout:"vertical",onScroll:_n,ratio:Wn*100/ro,scrollFrom:lo/(ro-Wn),total:to,visible:!0});return{horizontalScrollbar:ho,verticalScrollbar:Tn}},zn=()=>{var eo;const[Un,Yn]=unref(kt),[to,Hn]=unref(At),{data:On,totalColumn:Wn,totalRow:oo,useIsScrolling:ro,itemKey:Qn}=ie,lo=[];if(oo>0&&Wn>0)for(let ho=to;ho<=Hn;ho++)for(let Tn=Un;Tn<=Yn;Tn++)lo.push((eo=de.default)==null?void 0:eo.call(de,{columnIndex:Tn,data:On,key:Qn({columnIndex:Tn,data:On,rowIndex:ho}),isScrolling:ro?unref($e).isScrolling:void 0,style:Sn(ho,Tn),rowIndex:ho}));return lo},Jn=()=>{const eo=resolveDynamicComponent(ie.innerElement),Un=zn();return[h$1(eo,{style:unref(hn),ref:Oe},isString$3(eo)?Un:{default:()=>Un})]};return()=>{const eo=resolveDynamicComponent(ie.containerElement),{horizontalScrollbar:Un,verticalScrollbar:Yn}=jn(),to=Jn();return h$1("div",{key:0,class:pe.e("wrapper")},[h$1(eo,{class:ie.className,style:unref(bn),onScroll:wn,onWheel:Cn,ref:_e},isString$3(eo)?to:{default:()=>to}),Un,Yn])}}}),FixedSizeGrid=createGrid({name:"ElFixedSizeGrid",getColumnPosition:({columnWidth:e},t)=>[e,t*e],getRowPosition:({rowHeight:e},t)=>[e,t*e],getEstimatedTotalHeight:({totalRow:e,rowHeight:t})=>t*e,getEstimatedTotalWidth:({totalColumn:e,columnWidth:t})=>t*e,getColumnOffset:({totalColumn:e,columnWidth:t,width:n},r,i,g,$,y)=>{n=Number(n);const k=Math.max(0,e*t-n),j=Math.min(k,r*t),L=Math.max(0,r*t-n+y+t);switch(i==="smart"&&(g>=L-n&&g<=j+n?i=AUTO_ALIGNMENT:i=CENTERED_ALIGNMENT),i){case START_ALIGNMENT:return j;case END_ALIGNMENT:return L;case CENTERED_ALIGNMENT:{const V=Math.round(L+(j-L)/2);return Vk+Math.floor(n/2)?k:V}case AUTO_ALIGNMENT:default:return g>=L&&g<=j?g:L>j||g{t=Number(t);const k=Math.max(0,n*e-t),j=Math.min(k,r*e),L=Math.max(0,r*e-t+y+e);switch(i===SMART_ALIGNMENT&&(g>=L-t&&g<=j+t?i=AUTO_ALIGNMENT:i=CENTERED_ALIGNMENT),i){case START_ALIGNMENT:return j;case END_ALIGNMENT:return L;case CENTERED_ALIGNMENT:{const V=Math.round(L+(j-L)/2);return Vk+Math.floor(t/2)?k:V}case AUTO_ALIGNMENT:default:return g>=L&&g<=j?g:L>j||gMath.max(0,Math.min(t-1,Math.floor(n/e))),getColumnStopIndexForStartIndex:({columnWidth:e,totalColumn:t,width:n},r,i)=>{const g=r*e,$=Math.ceil((n+i-g)/e);return Math.max(0,Math.min(t-1,r+$-1))},getRowStartIndexForOffset:({rowHeight:e,totalRow:t},n)=>Math.max(0,Math.min(t-1,Math.floor(n/e))),getRowStopIndexForStartIndex:({rowHeight:e,totalRow:t,height:n},r,i)=>{const g=r*e,$=Math.ceil((n+i-g)/e);return Math.max(0,Math.min(t-1,r+$-1))},initCache:()=>{},clearCache:!0,validateProps:({columnWidth:e,rowHeight:t})=>{}}),{max,min,floor}=Math,ACCESS_SIZER_KEY_MAP={column:"columnWidth",row:"rowHeight"},ACCESS_LAST_VISITED_KEY_MAP={column:"lastVisitedColumnIndex",row:"lastVisitedRowIndex"},getItemFromCache=(e,t,n,r)=>{const[i,g,$]=[n[r],e[ACCESS_SIZER_KEY_MAP[r]],n[ACCESS_LAST_VISITED_KEY_MAP[r]]];if(t>$){let y=0;if($>=0){const k=i[$];y=k.offset+k.size}for(let k=$+1;k<=t;k++){const j=g(k);i[k]={offset:y,size:j},y+=j}n[ACCESS_LAST_VISITED_KEY_MAP[r]]=t}return i[t]},bs=(e,t,n,r,i,g)=>{for(;n<=r;){const $=n+floor((r-n)/2),y=getItemFromCache(e,$,t,g).offset;if(y===i)return $;y{const g=i==="column"?e.totalColumn:e.totalRow;let $=1;for(;n{const[i,g]=[t[r],t[ACCESS_LAST_VISITED_KEY_MAP[r]]];return(g>0?i[g].offset:0)>=n?bs(e,t,0,g,n,r):es(e,t,max(0,g),n,r)},getEstimatedTotalHeight=({totalRow:e},{estimatedRowHeight:t,lastVisitedRowIndex:n,row:r})=>{let i=0;if(n>=e&&(n=e-1),n>=0){const y=r[n];i=y.offset+y.size}const $=(e-n-1)*t;return i+$},getEstimatedTotalWidth=({totalColumn:e},{column:t,estimatedColumnWidth:n,lastVisitedColumnIndex:r})=>{let i=0;if(r>e&&(r=e-1),r>=0){const y=t[r];i=y.offset+y.size}const $=(e-r-1)*n;return i+$},ACCESS_ESTIMATED_SIZE_KEY_MAP={column:getEstimatedTotalWidth,row:getEstimatedTotalHeight},getOffset$1=(e,t,n,r,i,g,$)=>{const[y,k]=[g==="row"?e.height:e.width,ACCESS_ESTIMATED_SIZE_KEY_MAP[g]],j=getItemFromCache(e,t,i,g),L=k(e,i),V=max(0,min(L-y,j.offset)),z=max(0,j.offset-y+$+j.size);switch(n===SMART_ALIGNMENT&&(r>=z-y&&r<=V+y?n=AUTO_ALIGNMENT:n=CENTERED_ALIGNMENT),n){case START_ALIGNMENT:return V;case END_ALIGNMENT:return z;case CENTERED_ALIGNMENT:return Math.round(z+(V-z)/2);case AUTO_ALIGNMENT:default:return r>=z&&r<=V?r:z>V||r{const r=getItemFromCache(e,t,n,"column");return[r.size,r.offset]},getRowPosition:(e,t,n)=>{const r=getItemFromCache(e,t,n,"row");return[r.size,r.offset]},getColumnOffset:(e,t,n,r,i,g)=>getOffset$1(e,t,n,r,i,"column",g),getRowOffset:(e,t,n,r,i,g)=>getOffset$1(e,t,n,r,i,"row",g),getColumnStartIndexForOffset:(e,t,n)=>findItem(e,n,t,"column"),getColumnStopIndexForStartIndex:(e,t,n,r)=>{const i=getItemFromCache(e,t,r,"column"),g=n+e.width;let $=i.offset+i.size,y=t;for(;yfindItem(e,n,t,"row"),getRowStopIndexForStartIndex:(e,t,n,r)=>{const{totalRow:i,height:g}=e,$=getItemFromCache(e,t,r,"row"),y=n+g;let k=$.size+$.offset,j=t;for(;j{const n=({columnIndex:g,rowIndex:$},y)=>{var k,j;y=isUndefined(y)?!0:y,isNumber$1(g)&&(t.value.lastVisitedColumnIndex=Math.min(t.value.lastVisitedColumnIndex,g-1)),isNumber$1($)&&(t.value.lastVisitedRowIndex=Math.min(t.value.lastVisitedRowIndex,$-1)),(k=e.exposed)==null||k.getItemStyleCache.value(-1,null,null),y&&((j=e.proxy)==null||j.$forceUpdate())},r=(g,$)=>{n({columnIndex:g},$)},i=(g,$)=>{n({rowIndex:g},$)};Object.assign(e.proxy,{resetAfterColumnIndex:r,resetAfterRowIndex:i,resetAfter:n})},initCache:({estimatedColumnWidth:e=DEFAULT_DYNAMIC_LIST_ITEM_SIZE,estimatedRowHeight:t=DEFAULT_DYNAMIC_LIST_ITEM_SIZE})=>({column:{},estimatedColumnWidth:e,estimatedRowHeight:t,lastVisitedColumnIndex:-1,lastVisitedRowIndex:-1,row:{}}),clearCache:!1,validateProps:({columnWidth:e,rowHeight:t})=>{}}),_sfc_main$I=defineComponent({props:{item:{type:Object,required:!0},style:Object,height:Number},setup(){return{ns:useNamespace("select")}}});function _sfc_render$c(e,t,n,r,i,g){return e.item.isTitle?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(e.ns.be("group","title")),style:normalizeStyle([e.style,{lineHeight:`${e.height}px`}])},toDisplayString$1(e.item.label),7)):(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(e.ns.be("group","split")),style:normalizeStyle(e.style)},[createBaseVNode("span",{class:normalizeClass(e.ns.be("group","split-dash")),style:normalizeStyle({top:`${e.height/2}px`})},null,6)],6))}var GroupItem=_export_sfc$1(_sfc_main$I,[["render",_sfc_render$c],["__file","/home/runner/work/element-plus/element-plus/packages/components/select-v2/src/group-item.vue"]]);function useOption(e,{emit:t}){return{hoverItem:()=>{e.disabled||t("hover",e.index)},selectOptionClick:()=>{e.disabled||t("select",e.item,e.index)}}}const SelectProps={allowCreate:Boolean,autocomplete:{type:String,default:"none"},automaticDropdown:Boolean,clearable:Boolean,clearIcon:{type:[String,Object],default:circle_close_default},effect:{type:String,default:"light"},collapseTags:Boolean,collapseTagsTooltip:{type:Boolean,default:!1},defaultFirstOption:Boolean,disabled:Boolean,estimatedOptionHeight:{type:Number,default:void 0},filterable:Boolean,filterMethod:Function,height:{type:Number,default:170},itemHeight:{type:Number,default:34},id:String,loading:Boolean,loadingText:String,label:String,modelValue:[Array,String,Number,Boolean,Object],multiple:Boolean,multipleLimit:{type:Number,default:0},name:String,noDataText:String,noMatchText:String,remoteMethod:Function,reserveKeyword:{type:Boolean,default:!0},options:{type:Array,required:!0},placeholder:{type:String},teleported:useTooltipContentProps.teleported,persistent:{type:Boolean,default:!0},popperClass:{type:String,default:""},popperOptions:{type:Object,default:()=>({})},remote:Boolean,size:{type:String,validator:isValidComponentSize},valueKey:{type:String,default:"value"},scrollbarAlwaysOn:{type:Boolean,default:!1},validateEvent:{type:Boolean,default:!0},placement:{type:definePropType(String),values:Ee,default:"bottom-start"}},OptionProps={data:Array,disabled:Boolean,hovering:Boolean,item:Object,index:Number,style:Object,selected:Boolean,created:Boolean},_sfc_main$H=defineComponent({props:OptionProps,emits:["select","hover"],setup(e,{emit:t}){const n=useNamespace("select"),{hoverItem:r,selectOptionClick:i}=useOption(e,{emit:t});return{ns:n,hoverItem:r,selectOptionClick:i}}}),_hoisted_1$k=["aria-selected"];function _sfc_render$b(e,t,n,r,i,g){return openBlock(),createElementBlock("li",{"aria-selected":e.selected,style:normalizeStyle(e.style),class:normalizeClass([e.ns.be("dropdown","option-item"),e.ns.is("selected",e.selected),e.ns.is("disabled",e.disabled),e.ns.is("created",e.created),{hover:e.hovering}]),onMouseenter:t[0]||(t[0]=(...$)=>e.hoverItem&&e.hoverItem(...$)),onClick:t[1]||(t[1]=withModifiers((...$)=>e.selectOptionClick&&e.selectOptionClick(...$),["stop"]))},[renderSlot(e.$slots,"default",{item:e.item,index:e.index,disabled:e.disabled},()=>[createBaseVNode("span",null,toDisplayString$1(e.item.label),1)])],46,_hoisted_1$k)}var OptionItem=_export_sfc$1(_sfc_main$H,[["render",_sfc_render$b],["__file","/home/runner/work/element-plus/element-plus/packages/components/select-v2/src/option-item.vue"]]);const selectV2InjectionKey="ElSelectV2Injection";var ElSelectMenu=defineComponent({name:"ElSelectDropdown",props:{data:{type:Array,required:!0},hoveringIndex:Number,width:Number},setup(e,{slots:t,expose:n}){const r=inject(selectV2InjectionKey),i=useNamespace("select"),g=ref([]),$=ref(),y=computed(()=>e.data.length);watch(()=>y.value,()=>{var Ce,Oe;(Oe=(Ce=r.popper.value).updatePopper)==null||Oe.call(Ce)});const k=computed(()=>isUndefined(r.props.estimatedOptionHeight)),j=computed(()=>k.value?{itemSize:r.props.itemHeight}:{estimatedSize:r.props.estimatedOptionHeight,itemSize:Ce=>g.value[Ce]}),L=(Ce=[],Oe)=>{const{props:{valueKey:$e}}=r;return isObject$4(Oe)?Ce&&Ce.some(qe=>get$1(qe,$e)===get$1(Oe,$e)):Ce.includes(Oe)},V=(Ce,Oe)=>{if(isObject$4(Oe)){const{valueKey:$e}=r.props;return get$1(Ce,$e)===get$1(Oe,$e)}else return Ce===Oe},z=(Ce,Oe)=>{const{valueKey:$e}=r.props;return r.props.multiple?L(Ce,get$1(Oe,$e)):V(Ce,get$1(Oe,$e))},oe=(Ce,Oe)=>{const{disabled:$e,multiple:qe,multipleLimit:ze}=r.props;return $e||!Oe&&(qe?ze>0&&Ce.length>=ze:!1)},re=Ce=>e.hoveringIndex===Ce;n({listRef:$,isSized:k,isItemDisabled:oe,isItemHovering:re,isItemSelected:z,scrollToItem:Ce=>{const Oe=$.value;Oe&&Oe.scrollToItem(Ce)},resetScrollTop:()=>{const Ce=$.value;Ce&&Ce.resetScrollTop()}});const le=Ce=>{const{index:Oe,data:$e,style:qe}=Ce,ze=unref(k),{itemSize:Ue,estimatedSize:kt}=unref(j),{modelValue:At}=r.props,{onSelect:Pt,onHover:jt}=r,bn=$e[Oe];if(bn.type==="Group")return createVNode(GroupItem,{item:bn,style:qe,height:ze?Ue:kt},null);const hn=z(At,bn),Dt=oe(At,hn),wn=re(Oe);return createVNode(OptionItem,mergeProps(Ce,{selected:hn,disabled:bn.disabled||Dt,created:!!bn.created,hovering:wn,item:bn,onSelect:Pt,onHover:jt}),{default:_n=>{var vn;return((vn=t.default)==null?void 0:vn.call(t,_n))||createVNode("span",null,[bn.label])}})},{onKeyboardNavigate:de,onKeyboardSelect:pe}=r,he=()=>{de("forward")},ue=()=>{de("backward")},_e=()=>{r.expanded=!1},Ie=Ce=>{const{code:Oe}=Ce,{tab:$e,esc:qe,down:ze,up:Ue,enter:kt}=EVENT_CODE;switch(Oe!==$e&&(Ce.preventDefault(),Ce.stopPropagation()),Oe){case $e:case qe:{_e();break}case ze:{he();break}case Ue:{ue();break}case kt:{pe();break}}};return()=>{var Ce;const{data:Oe,width:$e}=e,{height:qe,multiple:ze,scrollbarAlwaysOn:Ue}=r.props;if(Oe.length===0)return createVNode("div",{class:i.b("dropdown"),style:{width:`${$e}px`}},[(Ce=t.empty)==null?void 0:Ce.call(t)]);const kt=unref(k)?FixedSizeList:DynamicSizeList;return createVNode("div",{class:[i.b("dropdown"),i.is("multiple",ze)]},[createVNode(kt,mergeProps({ref:$},unref(j),{className:i.be("dropdown","list"),scrollbarAlwaysOn:Ue,data:Oe,height:qe,width:$e,total:Oe.length,onKeydown:Ie}),{default:At=>createVNode(le,At,null)})])}}});function useAllowCreate(e,t){const n=ref(0),r=ref(null),i=computed(()=>e.allowCreate&&e.filterable);function g(L){const V=z=>z.value===L;return e.options&&e.options.some(V)||t.createdOptions.some(V)}function $(L){!i.value||(e.multiple&&L.created?n.value++:r.value=L)}function y(L){if(i.value)if(L&&L.length>0&&!g(L)){const V={value:L,label:L,created:!0,disabled:!1};t.createdOptions.length>=n.value?t.createdOptions[n.value]=V:t.createdOptions.push(V)}else if(e.multiple)t.createdOptions.length=n.value;else{const V=r.value;t.createdOptions.length=0,V&&V.created&&t.createdOptions.push(V)}}function k(L){if(!i.value||!L||!L.created||L.created&&e.reserveKeyword&&t.inputValue===L.label)return;const V=t.createdOptions.findIndex(z=>z.value===L.value);~V&&(t.createdOptions.splice(V,1),n.value--)}function j(){i.value&&(t.createdOptions.length=0,n.value=0)}return{createNewOption:y,removeNewOption:k,selectNewOption:$,clearAllNewOption:j}}const flattenOptions=e=>{const t=[];return e.forEach(n=>{isArray$4(n.options)?(t.push({label:n.label,isTitle:!0,type:"Group"}),n.options.forEach(r=>{t.push(r)}),t.push({type:"Group"})):t.push(n)}),t};function useInput(e){const t=ref(!1);return{handleCompositionStart:()=>{t.value=!0},handleCompositionUpdate:g=>{const $=g.target.value,y=$[$.length-1]||"";t.value=!isKorean(y)},handleCompositionEnd:g=>{t.value&&(t.value=!1,isFunction$4(e)&&e(g))}}}const DEFAULT_INPUT_PLACEHOLDER="",MINIMUM_INPUT_WIDTH=11,TAG_BASE_WIDTH={larget:51,default:42,small:33},useSelect$1=(e,t)=>{const{t:n}=useLocale(),r=useNamespace("select-v2"),i=useNamespace("input"),{form:g,formItem:$}=useFormItem(),y=reactive({inputValue:DEFAULT_INPUT_PLACEHOLDER,displayInputValue:DEFAULT_INPUT_PLACEHOLDER,calculatedWidth:0,cachedPlaceholder:"",cachedOptions:[],createdOptions:[],createdLabel:"",createdSelected:!1,currentPlaceholder:"",hoveringIndex:-1,comboBoxHovering:!1,isOnComposition:!1,isSilentBlur:!1,isComposing:!1,inputLength:20,selectWidth:200,initialInputHeight:0,previousQuery:null,previousValue:void 0,query:"",selectedLabel:"",softFocus:!1,tagInMultiLine:!1}),k=ref(-1),j=ref(-1),L=ref(null),V=ref(null),z=ref(null),oe=ref(null),re=ref(null),ie=ref(null),ae=ref(null),le=ref(!1),de=computed(()=>e.disabled||(g==null?void 0:g.disabled)),pe=computed(()=>{const Zn=ze.value.length*34;return Zn>e.height?e.height:Zn}),he=computed(()=>!isNil(e.modelValue)),ue=computed(()=>{const Zn=e.multiple?Array.isArray(e.modelValue)&&e.modelValue.length>0:he.value;return e.clearable&&!de.value&&y.comboBoxHovering&&Zn}),_e=computed(()=>e.remote&&e.filterable?"":arrow_up_default),Ie=computed(()=>_e.value&&r.is("reverse",le.value)),Ce=computed(()=>($==null?void 0:$.validateState)||""),Oe=computed(()=>ValidateComponentsMap[Ce.value]),$e=computed(()=>e.remote?300:0),qe=computed(()=>{const Zn=ze.value;return e.loading?e.loadingText||n("el.select.loading"):e.remote&&y.inputValue===""&&Zn.length===0?!1:e.filterable&&y.inputValue&&Zn.length>0?e.noMatchText||n("el.select.noMatch"):Zn.length===0?e.noDataText||n("el.select.noData"):null}),ze=computed(()=>{const Zn=po=>{const $o=y.inputValue,wo=new RegExp(escapeStringRegexp($o),"i");return $o?wo.test(po.label||""):!0};return e.loading?[]:flattenOptions(e.options.concat(y.createdOptions).map(po=>{if(isArray$4(po.options)){const $o=po.options.filter(Zn);if($o.length>0)return{...po,options:$o}}else if(e.remote||Zn(po))return po;return null}).filter(po=>po!==null))}),Ue=computed(()=>ze.value.every(Zn=>Zn.disabled)),kt=useSize(),At=computed(()=>kt.value==="small"?"small":"default"),Pt=computed(()=>{const Zn=ie.value,po=At.value||"default",$o=Zn?Number.parseInt(getComputedStyle(Zn).paddingLeft):0,wo=Zn?Number.parseInt(getComputedStyle(Zn).paddingRight):0;return y.selectWidth-wo-$o-TAG_BASE_WIDTH[po]}),jt=()=>{var Zn;j.value=((Zn=re.value)==null?void 0:Zn.offsetWidth)||200},bn=computed(()=>({width:`${y.calculatedWidth===0?MINIMUM_INPUT_WIDTH:Math.ceil(y.calculatedWidth)+MINIMUM_INPUT_WIDTH}px`})),hn=computed(()=>isArray$4(e.modelValue)?e.modelValue.length===0&&!y.displayInputValue:e.filterable?y.displayInputValue.length===0:!0),Dt=computed(()=>{const Zn=e.placeholder||n("el.select.placeholder");return e.multiple||isNil(e.modelValue)?Zn:y.selectedLabel}),wn=computed(()=>{var Zn,po;return(po=(Zn=oe.value)==null?void 0:Zn.popperRef)==null?void 0:po.contentRef}),_n=computed(()=>{if(e.multiple){const Zn=e.modelValue.length;if(e.modelValue.length>0)return ze.value.findIndex(po=>po.value===e.modelValue[Zn-1])}else if(e.modelValue)return ze.value.findIndex(Zn=>Zn.value===e.modelValue);return-1}),vn=computed({get(){return le.value&&qe.value!==!1},set(Zn){le.value=Zn}}),{createNewOption:Cn,removeNewOption:xn,selectNewOption:En,clearAllNewOption:Sn}=useAllowCreate(e,y),{handleCompositionStart:Bn,handleCompositionUpdate:An,handleCompositionEnd:Pn}=useInput(Zn=>bo(Zn)),Mn=()=>{var Zn,po,$o;(po=(Zn=V.value).focus)==null||po.call(Zn),($o=oe.value)==null||$o.updatePopper()},Fn=()=>{if(!e.automaticDropdown&&!de.value)return y.isComposing&&(y.softFocus=!0),nextTick(()=>{var Zn,po;le.value=!le.value,(po=(Zn=V.value)==null?void 0:Zn.focus)==null||po.call(Zn)})},jn=()=>(e.filterable&&y.inputValue!==y.selectedLabel&&(y.query=y.selectedLabel),Jn(y.inputValue),nextTick(()=>{Cn(y.inputValue)})),zn=debounce$1(jn,$e.value),Jn=Zn=>{y.previousQuery!==Zn&&(y.previousQuery=Zn,e.filterable&&isFunction$4(e.filterMethod)?e.filterMethod(Zn):e.filterable&&e.remote&&isFunction$4(e.remoteMethod)&&e.remoteMethod(Zn))},io=Zn=>{isEqual$1(e.modelValue,Zn)||t(CHANGE_EVENT,Zn)},eo=Zn=>{t(UPDATE_MODEL_EVENT,Zn),io(Zn),y.previousValue=Zn==null?void 0:Zn.toString()},Un=(Zn=[],po)=>{if(!isObject$4(po))return Zn.indexOf(po);const $o=e.valueKey;let wo=-1;return Zn.some((To,Oo)=>get$1(To,$o)===get$1(po,$o)?(wo=Oo,!0):!1),wo},Yn=Zn=>isObject$4(Zn)?get$1(Zn,e.valueKey):Zn,to=Zn=>isObject$4(Zn)?Zn.label:Zn,Hn=()=>{if(!(e.collapseTags&&!e.filterable))return nextTick(()=>{var Zn,po;if(!V.value)return;const $o=ie.value;re.value.height=$o.offsetHeight,le.value&&qe.value!==!1&&((po=(Zn=oe.value)==null?void 0:Zn.updatePopper)==null||po.call(Zn))})},On=()=>{var Zn,po;if(Wn(),jt(),(po=(Zn=oe.value)==null?void 0:Zn.updatePopper)==null||po.call(Zn),e.multiple)return Hn()},Wn=()=>{const Zn=ie.value;Zn&&(y.selectWidth=Zn.getBoundingClientRect().width)},oo=(Zn,po,$o=!0)=>{var wo,To;if(e.multiple){let Oo=e.modelValue.slice();const Mo=Un(Oo,Yn(Zn));Mo>-1?(Oo=[...Oo.slice(0,Mo),...Oo.slice(Mo+1)],y.cachedOptions.splice(Mo,1),xn(Zn)):(e.multipleLimit<=0||Oo.length{const{valueKey:$o}=e,wo=e.modelValue.indexOf(get$1(po,$o));if(wo>-1&&!de.value){const To=[...e.modelValue.slice(0,wo),...e.modelValue.slice(wo+1)];return y.cachedOptions.splice(wo,1),eo(To),t("remove-tag",get$1(po,$o)),y.softFocus=!0,xn(po),nextTick(Mn)}Zn.stopPropagation()},Qn=Zn=>{const po=y.isComposing;y.isComposing=!0,y.softFocus?y.softFocus=!1:po||t("focus",Zn)},lo=Zn=>(y.softFocus=!1,nextTick(()=>{var po,$o;($o=(po=V.value)==null?void 0:po.blur)==null||$o.call(po),ae.value&&(y.calculatedWidth=ae.value.getBoundingClientRect().width),y.isSilentBlur?y.isSilentBlur=!1:y.isComposing&&t("blur",Zn),y.isComposing=!1})),ho=()=>{y.displayInputValue.length>0?Rn(""):le.value=!1},Tn=Zn=>{if(y.displayInputValue.length===0){Zn.preventDefault();const po=e.modelValue.slice();po.pop(),xn(y.cachedOptions.pop()),eo(po)}},Ln=()=>{let Zn;return isArray$4(e.modelValue)?Zn=[]:Zn=void 0,y.softFocus=!0,e.multiple?y.cachedOptions=[]:y.selectedLabel="",le.value=!1,eo(Zn),t("clear"),Sn(),nextTick(Mn)},Rn=Zn=>{y.displayInputValue=Zn,y.inputValue=Zn},Nn=(Zn,po=void 0)=>{const $o=ze.value;if(!["forward","backward"].includes(Zn)||de.value||$o.length<=0||Ue.value)return;if(!le.value)return Fn();po===void 0&&(po=y.hoveringIndex);let wo=-1;Zn==="forward"?(wo=po+1,wo>=$o.length&&(wo=0)):Zn==="backward"&&(wo=po-1,(wo<0||wo>=$o.length)&&(wo=$o.length-1));const To=$o[wo];if(To.disabled||To.type==="Group")return Nn(Zn,wo);Gn(wo),mo(wo)},In=()=>{if(le.value)~y.hoveringIndex&&ze.value[y.hoveringIndex]&&oo(ze.value[y.hoveringIndex],y.hoveringIndex,!1);else return Fn()},Gn=Zn=>{y.hoveringIndex=Zn},Xn=()=>{y.hoveringIndex=-1},ao=()=>{var Zn;const po=V.value;po&&((Zn=po.focus)==null||Zn.call(po))},bo=Zn=>{const po=Zn.target.value;if(Rn(po),y.displayInputValue.length>0&&!le.value&&(le.value=!0),y.calculatedWidth=ae.value.getBoundingClientRect().width,e.multiple&&Hn(),e.remote)zn();else return jn()},uo=()=>(le.value=!1,lo()),go=()=>(y.inputValue=y.displayInputValue,nextTick(()=>{~_n.value&&(Gn(_n.value),mo(y.hoveringIndex))})),mo=Zn=>{z.value.scrollToItem(Zn)},vo=()=>{if(Xn(),e.multiple)if(e.modelValue.length>0){let Zn=!1;y.cachedOptions.length=0,y.previousValue=e.modelValue.toString(),e.modelValue.forEach(po=>{const $o=ze.value.findIndex(wo=>Yn(wo)===po);~$o&&(y.cachedOptions.push(ze.value[$o]),Zn||Gn($o),Zn=!0)})}else y.cachedOptions=[],y.previousValue=void 0;else if(he.value){y.previousValue=e.modelValue;const Zn=ze.value,po=Zn.findIndex($o=>Yn($o)===Yn(e.modelValue));~po?(y.selectedLabel=Zn[po].label,Gn(po)):y.selectedLabel=`${e.modelValue}`}else y.selectedLabel="",y.previousValue=void 0;Sn(),jt()};return watch(le,Zn=>{var po,$o;t("visible-change",Zn),Zn?($o=(po=oe.value).update)==null||$o.call(po):(y.displayInputValue="",y.previousQuery=null,Cn(""))}),watch(()=>e.modelValue,(Zn,po)=>{var $o;(!Zn||Zn.toString()!==y.previousValue)&&vo(),!isEqual$1(Zn,po)&&e.validateEvent&&(($o=$==null?void 0:$.validate)==null||$o.call($,"change").catch(wo=>void 0))},{deep:!0}),watch(()=>e.options,()=>{const Zn=V.value;(!Zn||Zn&&document.activeElement!==Zn)&&vo()},{deep:!0}),watch(ze,()=>nextTick(z.value.resetScrollTop)),onMounted(()=>{vo()}),useResizeObserver(re,On),{collapseTagSize:At,currentPlaceholder:Dt,expanded:le,emptyText:qe,popupHeight:pe,debounce:$e,filteredOptions:ze,iconComponent:_e,iconReverse:Ie,inputWrapperStyle:bn,popperSize:j,dropdownMenuVisible:vn,hasModelValue:he,shouldShowPlaceholder:hn,selectDisabled:de,selectSize:kt,showClearBtn:ue,states:y,tagMaxWidth:Pt,nsSelectV2:r,nsInput:i,calculatorRef:ae,controlRef:L,inputRef:V,menuRef:z,popper:oe,selectRef:re,selectionRef:ie,popperRef:wn,validateState:Ce,validateIcon:Oe,debouncedOnInputChange:zn,deleteTag:ro,getLabel:to,getValueKey:Yn,handleBlur:lo,handleClear:Ln,handleClickOutside:uo,handleDel:Tn,handleEsc:ho,handleFocus:Qn,handleMenuEnter:go,handleResize:On,toggleMenu:Fn,scrollTo:mo,onInput:bo,onKeyboardNavigate:Nn,onKeyboardSelect:In,onSelect:oo,onHover:Gn,onUpdateInputValue:Rn,handleCompositionStart:Bn,handleCompositionEnd:Pn,handleCompositionUpdate:An}},_sfc_main$G=defineComponent({name:"ElSelectV2",components:{ElSelectMenu,ElTag,ElTooltip,ElIcon},directives:{ClickOutside,ModelText:vModelText},props:SelectProps,emits:[UPDATE_MODEL_EVENT,CHANGE_EVENT,"remove-tag","clear","visible-change","focus","blur"],setup(e,{emit:t}){const n=computed(()=>{const{modelValue:i,multiple:g}=e,$=g?[]:void 0;return isArray$4(i)?g?i:$:g?$:i}),r=useSelect$1(reactive({...toRefs(e),modelValue:n}),t);return provide(selectV2InjectionKey,{props:reactive({...toRefs(e),height:r.popupHeight,modelValue:n}),popper:r.popper,onSelect:r.onSelect,onHover:r.onHover,onKeyboardNavigate:r.onKeyboardNavigate,onKeyboardSelect:r.onKeyboardSelect}),{...r,modelValue:n}}}),_hoisted_1$j={key:0},_hoisted_2$e=["id","autocomplete","aria-expanded","aria-labelledby","disabled","readonly","name","unselectable"],_hoisted_3$7=["textContent"],_hoisted_4$5=["id","aria-labelledby","aria-expanded","autocomplete","disabled","name","readonly","unselectable"],_hoisted_5$4=["textContent"];function _sfc_render$a(e,t,n,r,i,g){const $=resolveComponent("el-tag"),y=resolveComponent("el-tooltip"),k=resolveComponent("el-icon"),j=resolveComponent("el-select-menu"),L=resolveDirective("model-text"),V=resolveDirective("click-outside");return withDirectives((openBlock(),createElementBlock("div",{ref:"selectRef",class:normalizeClass([e.nsSelectV2.b(),e.nsSelectV2.m(e.selectSize)]),onClick:t[25]||(t[25]=withModifiers((...z)=>e.toggleMenu&&e.toggleMenu(...z),["stop"])),onMouseenter:t[26]||(t[26]=z=>e.states.comboBoxHovering=!0),onMouseleave:t[27]||(t[27]=z=>e.states.comboBoxHovering=!1)},[createVNode(y,{ref:"popper",visible:e.dropdownMenuVisible,teleported:e.teleported,"popper-class":[e.nsSelectV2.e("popper"),e.popperClass],"gpu-acceleration":!1,"stop-popper-mouse-event":!1,"popper-options":e.popperOptions,"fallback-placements":["bottom-start","top-start","right","left"],effect:e.effect,placement:e.placement,pure:"",transition:`${e.nsSelectV2.namespace.value}-zoom-in-top`,trigger:"click",persistent:e.persistent,onBeforeShow:e.handleMenuEnter,onHide:t[24]||(t[24]=z=>e.states.inputValue=e.states.displayInputValue)},{default:withCtx(()=>{var z;return[createBaseVNode("div",{ref:"selectionRef",class:normalizeClass([e.nsSelectV2.e("wrapper"),e.nsSelectV2.is("focused",e.states.isComposing||e.expanded),e.nsSelectV2.is("hovering",e.states.comboBoxHovering),e.nsSelectV2.is("filterable",e.filterable),e.nsSelectV2.is("disabled",e.selectDisabled)])},[e.$slots.prefix?(openBlock(),createElementBlock("div",_hoisted_1$j,[renderSlot(e.$slots,"prefix")])):createCommentVNode("v-if",!0),e.multiple?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(e.nsSelectV2.e("selection"))},[e.collapseTags&&e.modelValue.length>0?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(e.nsSelectV2.e("selected-item"))},[createVNode($,{closable:!e.selectDisabled&&!((z=e.states.cachedOptions[0])!=null&&z.disable),size:e.collapseTagSize,type:"info","disable-transitions":"",onClose:t[0]||(t[0]=oe=>e.deleteTag(oe,e.states.cachedOptions[0]))},{default:withCtx(()=>{var oe;return[createBaseVNode("span",{class:normalizeClass(e.nsSelectV2.e("tags-text")),style:normalizeStyle({maxWidth:`${e.tagMaxWidth}px`})},toDisplayString$1((oe=e.states.cachedOptions[0])==null?void 0:oe.label),7)]}),_:1},8,["closable","size"]),e.modelValue.length>1?(openBlock(),createBlock($,{key:0,closable:!1,size:e.collapseTagSize,type:"info","disable-transitions":""},{default:withCtx(()=>[e.collapseTagsTooltip?(openBlock(),createBlock(y,{key:0,disabled:e.dropdownMenuVisible,"fallback-placements":["bottom","top","right","left"],effect:e.effect,placement:"bottom",teleported:!1},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass(e.nsSelectV2.e("tags-text")),style:normalizeStyle({maxWidth:`${e.tagMaxWidth}px`})},"+ "+toDisplayString$1(e.modelValue.length-1),7)]),content:withCtx(()=>[createBaseVNode("div",{class:normalizeClass(e.nsSelectV2.e("selection"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.states.cachedOptions.slice(1),(oe,re)=>(openBlock(),createElementBlock("div",{key:re,class:normalizeClass(e.nsSelectV2.e("selected-item"))},[(openBlock(),createBlock($,{key:e.getValueKey(oe),closable:!e.selectDisabled&&!oe.disabled,size:e.collapseTagSize,class:"in-tooltip",type:"info","disable-transitions":"",onClose:ie=>e.deleteTag(ie,oe)},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass(e.nsSelectV2.e("tags-text")),style:normalizeStyle({maxWidth:`${e.tagMaxWidth}px`})},toDisplayString$1(e.getLabel(oe)),7)]),_:2},1032,["closable","size","onClose"]))],2))),128))],2)]),_:1},8,["disabled","effect"])):(openBlock(),createElementBlock("span",{key:1,class:normalizeClass(e.nsSelectV2.e("tags-text")),style:normalizeStyle({maxWidth:`${e.tagMaxWidth}px`})},"+ "+toDisplayString$1(e.modelValue.length-1),7))]),_:1},8,["size"])):createCommentVNode("v-if",!0)],2)):(openBlock(!0),createElementBlock(Fragment,{key:1},renderList(e.states.cachedOptions,(oe,re)=>(openBlock(),createElementBlock("div",{key:re,class:normalizeClass(e.nsSelectV2.e("selected-item"))},[(openBlock(),createBlock($,{key:e.getValueKey(oe),closable:!e.selectDisabled&&!oe.disabled,size:e.collapseTagSize,type:"info","disable-transitions":"",onClose:ie=>e.deleteTag(ie,oe)},{default:withCtx(()=>[createBaseVNode("span",{class:normalizeClass(e.nsSelectV2.e("tags-text")),style:normalizeStyle({maxWidth:`${e.tagMaxWidth}px`})},toDisplayString$1(e.getLabel(oe)),7)]),_:2},1032,["closable","size","onClose"]))],2))),128)),createBaseVNode("div",{class:normalizeClass([e.nsSelectV2.e("selected-item"),e.nsSelectV2.e("input-wrapper")]),style:normalizeStyle(e.inputWrapperStyle)},[withDirectives(createBaseVNode("input",{id:e.id,ref:"inputRef",autocomplete:e.autocomplete,"aria-autocomplete":"list","aria-haspopup":"listbox",autocapitalize:"off","aria-expanded":e.expanded,"aria-labelledby":e.label,class:normalizeClass([e.nsSelectV2.is(e.selectSize),e.nsSelectV2.e("combobox-input")]),disabled:e.disabled,role:"combobox",readonly:!e.filterable,spellcheck:"false",type:"text",name:e.name,unselectable:e.expanded?"on":void 0,"onUpdate:modelValue":t[1]||(t[1]=(...oe)=>e.onUpdateInputValue&&e.onUpdateInputValue(...oe)),onFocus:t[2]||(t[2]=(...oe)=>e.handleFocus&&e.handleFocus(...oe)),onBlur:t[3]||(t[3]=(...oe)=>e.handleBlur&&e.handleBlur(...oe)),onInput:t[4]||(t[4]=(...oe)=>e.onInput&&e.onInput(...oe)),onCompositionstart:t[5]||(t[5]=(...oe)=>e.handleCompositionStart&&e.handleCompositionStart(...oe)),onCompositionupdate:t[6]||(t[6]=(...oe)=>e.handleCompositionUpdate&&e.handleCompositionUpdate(...oe)),onCompositionend:t[7]||(t[7]=(...oe)=>e.handleCompositionEnd&&e.handleCompositionEnd(...oe)),onKeydown:[t[8]||(t[8]=withKeys(withModifiers(oe=>e.onKeyboardNavigate("backward"),["stop","prevent"]),["up"])),t[9]||(t[9]=withKeys(withModifiers(oe=>e.onKeyboardNavigate("forward"),["stop","prevent"]),["down"])),t[10]||(t[10]=withKeys(withModifiers((...oe)=>e.onKeyboardSelect&&e.onKeyboardSelect(...oe),["stop","prevent"]),["enter"])),t[11]||(t[11]=withKeys(withModifiers((...oe)=>e.handleEsc&&e.handleEsc(...oe),["stop","prevent"]),["esc"])),t[12]||(t[12]=withKeys(withModifiers((...oe)=>e.handleDel&&e.handleDel(...oe),["stop"]),["delete"]))]},null,42,_hoisted_2$e),[[L,e.states.displayInputValue]]),e.filterable?(openBlock(),createElementBlock("span",{key:0,ref:"calculatorRef","aria-hidden":"true",class:normalizeClass(e.nsSelectV2.e("input-calculator")),textContent:toDisplayString$1(e.states.displayInputValue)},null,10,_hoisted_3$7)):createCommentVNode("v-if",!0)],6)],2)):(openBlock(),createElementBlock(Fragment,{key:2},[createBaseVNode("div",{class:normalizeClass([e.nsSelectV2.e("selected-item"),e.nsSelectV2.e("input-wrapper")])},[withDirectives(createBaseVNode("input",{id:e.id,ref:"inputRef","aria-autocomplete":"list","aria-haspopup":"listbox","aria-labelledby":e.label,"aria-expanded":e.expanded,autocapitalize:"off",autocomplete:e.autocomplete,class:normalizeClass(e.nsSelectV2.e("combobox-input")),disabled:e.disabled,name:e.name,role:"combobox",readonly:!e.filterable,spellcheck:"false",type:"text",unselectable:e.expanded?"on":void 0,onCompositionstart:t[13]||(t[13]=(...oe)=>e.handleCompositionStart&&e.handleCompositionStart(...oe)),onCompositionupdate:t[14]||(t[14]=(...oe)=>e.handleCompositionUpdate&&e.handleCompositionUpdate(...oe)),onCompositionend:t[15]||(t[15]=(...oe)=>e.handleCompositionEnd&&e.handleCompositionEnd(...oe)),onFocus:t[16]||(t[16]=(...oe)=>e.handleFocus&&e.handleFocus(...oe)),onBlur:t[17]||(t[17]=(...oe)=>e.handleBlur&&e.handleBlur(...oe)),onInput:t[18]||(t[18]=(...oe)=>e.onInput&&e.onInput(...oe)),onKeydown:[t[19]||(t[19]=withKeys(withModifiers(oe=>e.onKeyboardNavigate("backward"),["stop","prevent"]),["up"])),t[20]||(t[20]=withKeys(withModifiers(oe=>e.onKeyboardNavigate("forward"),["stop","prevent"]),["down"])),t[21]||(t[21]=withKeys(withModifiers((...oe)=>e.onKeyboardSelect&&e.onKeyboardSelect(...oe),["stop","prevent"]),["enter"])),t[22]||(t[22]=withKeys(withModifiers((...oe)=>e.handleEsc&&e.handleEsc(...oe),["stop","prevent"]),["esc"]))],"onUpdate:modelValue":t[23]||(t[23]=(...oe)=>e.onUpdateInputValue&&e.onUpdateInputValue(...oe))},null,42,_hoisted_4$5),[[L,e.states.displayInputValue]])],2),e.filterable?(openBlock(),createElementBlock("span",{key:0,ref:"calculatorRef","aria-hidden":"true",class:normalizeClass([e.nsSelectV2.e("selected-item"),e.nsSelectV2.e("input-calculator")]),textContent:toDisplayString$1(e.states.displayInputValue)},null,10,_hoisted_5$4)):createCommentVNode("v-if",!0)],64)),e.shouldShowPlaceholder?(openBlock(),createElementBlock("span",{key:3,class:normalizeClass([e.nsSelectV2.e("placeholder"),e.nsSelectV2.is("transparent",e.multiple?e.modelValue.length===0:!e.hasModelValue)])},toDisplayString$1(e.currentPlaceholder),3)):createCommentVNode("v-if",!0),createBaseVNode("span",{class:normalizeClass(e.nsSelectV2.e("suffix"))},[e.iconComponent?withDirectives((openBlock(),createBlock(k,{key:0,class:normalizeClass([e.nsSelectV2.e("caret"),e.nsInput.e("icon"),e.iconReverse])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(e.iconComponent)))]),_:1},8,["class"])),[[vShow,!e.showClearBtn]]):createCommentVNode("v-if",!0),e.showClearBtn&&e.clearIcon?(openBlock(),createBlock(k,{key:1,class:normalizeClass([e.nsSelectV2.e("caret"),e.nsInput.e("icon")]),onClick:withModifiers(e.handleClear,["prevent","stop"])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(e.clearIcon)))]),_:1},8,["class","onClick"])):createCommentVNode("v-if",!0),e.validateState&&e.validateIcon?(openBlock(),createBlock(k,{key:2,class:normalizeClass([e.nsInput.e("icon"),e.nsInput.e("validateIcon")])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(e.validateIcon)))]),_:1},8,["class"])):createCommentVNode("v-if",!0)],2)],2)]}),content:withCtx(()=>[createVNode(j,{ref:"menuRef",data:e.filteredOptions,width:e.popperSize,"hovering-index":e.states.hoveringIndex,"scrollbar-always-on":e.scrollbarAlwaysOn},{default:withCtx(z=>[renderSlot(e.$slots,"default",normalizeProps(guardReactiveProps(z)))]),empty:withCtx(()=>[renderSlot(e.$slots,"empty",{},()=>[createBaseVNode("p",{class:normalizeClass(e.nsSelectV2.e("empty"))},toDisplayString$1(e.emptyText?e.emptyText:""),3)])]),_:3},8,["data","width","hovering-index","scrollbar-always-on"])]),_:3},8,["visible","teleported","popper-class","popper-options","effect","placement","transition","persistent","onBeforeShow"])],34)),[[V,e.handleClickOutside,e.popperRef]])}var Select=_export_sfc$1(_sfc_main$G,[["render",_sfc_render$a],["__file","/home/runner/work/element-plus/element-plus/packages/components/select-v2/src/select.vue"]]);Select.install=e=>{e.component(Select.name,Select)};const _Select=Select,ElSelectV2=_Select,skeletonProps=buildProps({animated:{type:Boolean,default:!1},count:{type:Number,default:1},rows:{type:Number,default:3},loading:{type:Boolean,default:!0},throttle:{type:Number}}),skeletonItemProps=buildProps({variant:{type:String,values:["circle","rect","h1","h3","text","caption","p","image","button"],default:"text"}}),__default__$s=defineComponent({name:"ElSkeletonItem"}),_sfc_main$F=defineComponent({...__default__$s,props:skeletonItemProps,setup(e){const t=useNamespace("skeleton");return(n,r)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(t).e("item"),unref(t).e(n.variant)])},[n.variant==="image"?(openBlock(),createBlock(unref(picture_filled_default),{key:0})):createCommentVNode("v-if",!0)],2))}});var SkeletonItem=_export_sfc$1(_sfc_main$F,[["__file","/home/runner/work/element-plus/element-plus/packages/components/skeleton/src/skeleton-item.vue"]]);const __default__$r=defineComponent({name:"ElSkeleton"}),_sfc_main$E=defineComponent({...__default__$r,props:skeletonProps,setup(e,{expose:t}){const n=e,r=useNamespace("skeleton"),i=useThrottleRender(toRef(n,"loading"),n.throttle);return t({uiLoading:i}),(g,$)=>unref(i)?(openBlock(),createElementBlock("div",mergeProps({key:0,class:[unref(r).b(),unref(r).is("animated",g.animated)]},g.$attrs),[(openBlock(!0),createElementBlock(Fragment,null,renderList(g.count,y=>(openBlock(),createElementBlock(Fragment,{key:y},[g.loading?renderSlot(g.$slots,"template",{key:y},()=>[createVNode(SkeletonItem,{class:normalizeClass(unref(r).is("first")),variant:"p"},null,8,["class"]),(openBlock(!0),createElementBlock(Fragment,null,renderList(g.rows,k=>(openBlock(),createBlock(SkeletonItem,{key:k,class:normalizeClass([unref(r).e("paragraph"),unref(r).is("last",k===g.rows&&g.rows>1)]),variant:"p"},null,8,["class"]))),128))]):createCommentVNode("v-if",!0)],64))),128))],16)):renderSlot(g.$slots,"default",normalizeProps(mergeProps({key:1},g.$attrs)))}});var Skeleton=_export_sfc$1(_sfc_main$E,[["__file","/home/runner/work/element-plus/element-plus/packages/components/skeleton/src/skeleton.vue"]]);const ElSkeleton=withInstall(Skeleton,{SkeletonItem}),ElSkeletonItem=withNoopInstall(SkeletonItem),sliderProps=buildProps({modelValue:{type:definePropType([Number,Array]),default:0},id:{type:String,default:void 0},min:{type:Number,default:0},max:{type:Number,default:100},step:{type:Number,default:1},showInput:Boolean,showInputControls:{type:Boolean,default:!0},size:useSizeProp,inputSize:useSizeProp,showStops:Boolean,showTooltip:{type:Boolean,default:!0},formatTooltip:{type:definePropType(Function),default:void 0},disabled:Boolean,range:Boolean,vertical:Boolean,height:String,debounce:{type:Number,default:300},label:{type:String,default:void 0},rangeStartLabel:{type:String,default:void 0},rangeEndLabel:{type:String,default:void 0},formatValueText:{type:definePropType(Function),default:void 0},tooltipClass:{type:String,default:void 0},placement:{type:String,values:Ee,default:"top"},marks:{type:definePropType(Object)},validateEvent:{type:Boolean,default:!0}}),isValidValue$1=e=>isNumber$1(e)||isArray$4(e)&&e.every(isNumber$1),sliderEmits={[UPDATE_MODEL_EVENT]:isValidValue$1,[INPUT_EVENT]:isValidValue$1,[CHANGE_EVENT]:isValidValue$1},useLifecycle=(e,t,n)=>{const r=ref();return onMounted(async()=>{e.range?(Array.isArray(e.modelValue)?(t.firstValue=Math.max(e.min,e.modelValue[0]),t.secondValue=Math.min(e.max,e.modelValue[1])):(t.firstValue=e.min,t.secondValue=e.max),t.oldValue=[t.firstValue,t.secondValue]):(typeof e.modelValue!="number"||Number.isNaN(e.modelValue)?t.firstValue=e.min:t.firstValue=Math.min(e.max,Math.max(e.min,e.modelValue)),t.oldValue=t.firstValue),useEventListener(window,"resize",n),await nextTick(),n()}),{sliderWrapper:r}},useMarks=e=>computed(()=>e.marks?Object.keys(e.marks).map(Number.parseFloat).sort((n,r)=>n-r).filter(n=>n<=e.max&&n>=e.min).map(n=>({point:n,position:(n-e.min)*100/(e.max-e.min),mark:e.marks[n]})):[]),useSlide=(e,t,n)=>{const{form:r,formItem:i}=useFormItem(),g=shallowRef(),$=ref(),y=ref(),k={firstButton:$,secondButton:y},j=computed(()=>e.disabled||(r==null?void 0:r.disabled)||!1),L=computed(()=>Math.min(t.firstValue,t.secondValue)),V=computed(()=>Math.max(t.firstValue,t.secondValue)),z=computed(()=>e.range?`${100*(V.value-L.value)/(e.max-e.min)}%`:`${100*(t.firstValue-e.min)/(e.max-e.min)}%`),oe=computed(()=>e.range?`${100*(L.value-e.min)/(e.max-e.min)}%`:"0%"),re=computed(()=>e.vertical?{height:e.height}:{}),ie=computed(()=>e.vertical?{height:z.value,bottom:oe.value}:{width:z.value,left:oe.value}),ae=()=>{g.value&&(t.sliderSize=g.value[`client${e.vertical?"Height":"Width"}`])},le=qe=>{const ze=e.min+qe*(e.max-e.min)/100;if(!e.range)return $;let Ue;return Math.abs(L.value-ze)t.secondValue?"firstButton":"secondButton",k[Ue]},de=qe=>{const ze=le(qe);return ze.value.setPosition(qe),ze},pe=qe=>{t.firstValue=qe,ue(e.range?[L.value,V.value]:qe)},he=qe=>{t.secondValue=qe,e.range&&ue([L.value,V.value])},ue=qe=>{n(UPDATE_MODEL_EVENT,qe),n(INPUT_EVENT,qe)},_e=async()=>{await nextTick(),n(CHANGE_EVENT,e.range?[L.value,V.value]:e.modelValue)},Ie=qe=>{var ze,Ue,kt,At,Pt,jt;if(j.value||t.dragging)return;ae();let bn=0;if(e.vertical){const hn=(kt=(Ue=(ze=qe.touches)==null?void 0:ze.item(0))==null?void 0:Ue.clientY)!=null?kt:qe.clientY;bn=(g.value.getBoundingClientRect().bottom-hn)/t.sliderSize*100}else{const hn=(jt=(Pt=(At=qe.touches)==null?void 0:At.item(0))==null?void 0:Pt.clientX)!=null?jt:qe.clientX,Dt=g.value.getBoundingClientRect().left;bn=(hn-Dt)/t.sliderSize*100}if(!(bn<0||bn>100))return de(bn)};return{elFormItem:i,slider:g,firstButton:$,secondButton:y,sliderDisabled:j,minValue:L,maxValue:V,runwayStyle:re,barStyle:ie,resetSize:ae,setPosition:de,emitChange:_e,onSliderWrapperPrevent:qe=>{var ze,Ue;(((ze=k.firstButton.value)==null?void 0:ze.dragging)||((Ue=k.secondButton.value)==null?void 0:Ue.dragging))&&qe.preventDefault()},onSliderClick:qe=>{Ie(qe)&&_e()},onSliderDown:async qe=>{const ze=Ie(qe);ze&&(await nextTick(),ze.value.onButtonDown(qe))},setFirstValue:pe,setSecondValue:he}},{left,down,right,up,home,end,pageUp,pageDown}=EVENT_CODE,useTooltip=(e,t,n)=>{const r=ref(),i=ref(!1),g=computed(()=>t.value instanceof Function),$=computed(()=>g.value&&t.value(e.modelValue)||e.modelValue),y=debounce$1(()=>{n.value&&(i.value=!0)},50),k=debounce$1(()=>{n.value&&(i.value=!1)},50);return{tooltip:r,tooltipVisible:i,formatValue:$,displayTooltip:y,hideTooltip:k}},useSliderButton=(e,t,n)=>{const{disabled:r,min:i,max:g,step:$,showTooltip:y,precision:k,sliderSize:j,formatTooltip:L,emitChange:V,resetSize:z,updateDragging:oe}=inject(sliderContextKey),{tooltip:re,tooltipVisible:ie,formatValue:ae,displayTooltip:le,hideTooltip:de}=useTooltip(e,L,y),pe=ref(),he=computed(()=>`${(e.modelValue-i.value)/(g.value-i.value)*100}%`),ue=computed(()=>e.vertical?{bottom:he.value}:{left:he.value}),_e=()=>{t.hovering=!0,le()},Ie=()=>{t.hovering=!1,t.dragging||de()},Ce=_n=>{r.value||(_n.preventDefault(),bn(_n),window.addEventListener("mousemove",hn),window.addEventListener("touchmove",hn),window.addEventListener("mouseup",Dt),window.addEventListener("touchend",Dt),window.addEventListener("contextmenu",Dt),pe.value.focus())},Oe=_n=>{r.value||(t.newPosition=Number.parseFloat(he.value)+_n/(g.value-i.value)*100,wn(t.newPosition),V())},$e=()=>{Oe(-$.value)},qe=()=>{Oe($.value)},ze=()=>{Oe(-$.value*4)},Ue=()=>{Oe($.value*4)},kt=()=>{r.value||(wn(0),V())},At=()=>{r.value||(wn(100),V())},Pt=_n=>{let vn=!0;[left,down].includes(_n.key)?$e():[right,up].includes(_n.key)?qe():_n.key===home?kt():_n.key===end?At():_n.key===pageDown?ze():_n.key===pageUp?Ue():vn=!1,vn&&_n.preventDefault()},jt=_n=>{let vn,Cn;return _n.type.startsWith("touch")?(Cn=_n.touches[0].clientY,vn=_n.touches[0].clientX):(Cn=_n.clientY,vn=_n.clientX),{clientX:vn,clientY:Cn}},bn=_n=>{t.dragging=!0,t.isClick=!0;const{clientX:vn,clientY:Cn}=jt(_n);e.vertical?t.startY=Cn:t.startX=vn,t.startPosition=Number.parseFloat(he.value),t.newPosition=t.startPosition},hn=_n=>{if(t.dragging){t.isClick=!1,le(),z();let vn;const{clientX:Cn,clientY:xn}=jt(_n);e.vertical?(t.currentY=xn,vn=(t.startY-t.currentY)/j.value*100):(t.currentX=Cn,vn=(t.currentX-t.startX)/j.value*100),t.newPosition=t.startPosition+vn,wn(t.newPosition)}},Dt=()=>{t.dragging&&(setTimeout(()=>{t.dragging=!1,t.hovering||de(),t.isClick||wn(t.newPosition),V()},0),window.removeEventListener("mousemove",hn),window.removeEventListener("touchmove",hn),window.removeEventListener("mouseup",Dt),window.removeEventListener("touchend",Dt),window.removeEventListener("contextmenu",Dt))},wn=async _n=>{if(_n===null||Number.isNaN(+_n))return;_n<0?_n=0:_n>100&&(_n=100);const vn=100/((g.value-i.value)/$.value);let xn=Math.round(_n/vn)*vn*(g.value-i.value)*.01+i.value;xn=Number.parseFloat(xn.toFixed(k.value)),xn!==e.modelValue&&n(UPDATE_MODEL_EVENT,xn),!t.dragging&&e.modelValue!==t.oldValue&&(t.oldValue=e.modelValue),await nextTick(),t.dragging&&le(),re.value.updatePopper()};return watch(()=>t.dragging,_n=>{oe(_n)}),{disabled:r,button:pe,tooltip:re,tooltipVisible:ie,showTooltip:y,wrapperStyle:ue,formatValue:ae,handleMouseEnter:_e,handleMouseLeave:Ie,onButtonDown:Ce,onKeyDown:Pt,setPosition:wn}},useStops=(e,t,n,r)=>({stops:computed(()=>{if(!e.showStops||e.min>e.max)return[];if(e.step===0)return[];const $=(e.max-e.min)/e.step,y=100*e.step/(e.max-e.min),k=Array.from({length:$-1}).map((j,L)=>(L+1)*y);return e.range?k.filter(j=>j<100*(n.value-e.min)/(e.max-e.min)||j>100*(r.value-e.min)/(e.max-e.min)):k.filter(j=>j>100*(t.firstValue-e.min)/(e.max-e.min))}),getStopStyle:$=>e.vertical?{bottom:`${$}%`}:{left:`${$}%`}}),useWatch=(e,t,n,r,i,g)=>{const $=j=>{i(UPDATE_MODEL_EVENT,j),i(INPUT_EVENT,j)},y=()=>e.range?![n.value,r.value].every((j,L)=>j===t.oldValue[L]):e.modelValue!==t.oldValue,k=()=>{var j,L;if(e.min>e.max){throwError("Slider","min should not be greater than max.");return}const V=e.modelValue;e.range&&Array.isArray(V)?V[1]e.max?$([e.max,e.max]):V[0]e.max?$([V[0],e.max]):(t.firstValue=V[0],t.secondValue=V[1],y()&&(e.validateEvent&&((j=g==null?void 0:g.validate)==null||j.call(g,"change").catch(z=>void 0)),t.oldValue=V.slice())):!e.range&&typeof V=="number"&&!Number.isNaN(V)&&(Ve.max?$(e.max):(t.firstValue=V,y()&&(e.validateEvent&&((L=g==null?void 0:g.validate)==null||L.call(g,"change").catch(z=>void 0)),t.oldValue=V)))};k(),watch(()=>t.dragging,j=>{j||k()}),watch(()=>e.modelValue,(j,L)=>{t.dragging||Array.isArray(j)&&Array.isArray(L)&&j.every((V,z)=>V===L[z])&&t.firstValue===j[0]&&t.secondValue===j[1]||k()},{deep:!0}),watch(()=>[e.min,e.max],()=>{k()})},sliderButtonProps=buildProps({modelValue:{type:Number,default:0},vertical:Boolean,tooltipClass:String,placement:{type:String,values:Ee,default:"top"}}),sliderButtonEmits={[UPDATE_MODEL_EVENT]:e=>isNumber$1(e)},_hoisted_1$i=["tabindex"],__default__$q=defineComponent({name:"ElSliderButton"}),_sfc_main$D=defineComponent({...__default__$q,props:sliderButtonProps,emits:sliderButtonEmits,setup(e,{expose:t,emit:n}){const r=e,i=useNamespace("slider"),g=reactive({hovering:!1,dragging:!1,isClick:!1,startX:0,currentX:0,startY:0,currentY:0,startPosition:0,newPosition:0,oldValue:r.modelValue}),{disabled:$,button:y,tooltip:k,showTooltip:j,tooltipVisible:L,wrapperStyle:V,formatValue:z,handleMouseEnter:oe,handleMouseLeave:re,onButtonDown:ie,onKeyDown:ae,setPosition:le}=useSliderButton(r,g,n),{hovering:de,dragging:pe}=toRefs(g);return t({onButtonDown:ie,onKeyDown:ae,setPosition:le,hovering:de,dragging:pe}),(he,ue)=>(openBlock(),createElementBlock("div",{ref_key:"button",ref:y,class:normalizeClass([unref(i).e("button-wrapper"),{hover:unref(de),dragging:unref(pe)}]),style:normalizeStyle(unref(V)),tabindex:unref($)?-1:0,onMouseenter:ue[0]||(ue[0]=(..._e)=>unref(oe)&&unref(oe)(..._e)),onMouseleave:ue[1]||(ue[1]=(..._e)=>unref(re)&&unref(re)(..._e)),onMousedown:ue[2]||(ue[2]=(..._e)=>unref(ie)&&unref(ie)(..._e)),onTouchstart:ue[3]||(ue[3]=(..._e)=>unref(ie)&&unref(ie)(..._e)),onFocus:ue[4]||(ue[4]=(..._e)=>unref(oe)&&unref(oe)(..._e)),onBlur:ue[5]||(ue[5]=(..._e)=>unref(re)&&unref(re)(..._e)),onKeydown:ue[6]||(ue[6]=(..._e)=>unref(ae)&&unref(ae)(..._e))},[createVNode(unref(ElTooltip),{ref_key:"tooltip",ref:k,visible:unref(L),placement:he.placement,"fallback-placements":["top","bottom","right","left"],"stop-popper-mouse-event":!1,"popper-class":he.tooltipClass,disabled:!unref(j),persistent:""},{content:withCtx(()=>[createBaseVNode("span",null,toDisplayString$1(unref(z)),1)]),default:withCtx(()=>[createBaseVNode("div",{class:normalizeClass([unref(i).e("button"),{hover:unref(de),dragging:unref(pe)}])},null,2)]),_:1},8,["visible","placement","popper-class","disabled"])],46,_hoisted_1$i))}});var SliderButton=_export_sfc$1(_sfc_main$D,[["__file","/home/runner/work/element-plus/element-plus/packages/components/slider/src/button.vue"]]);const sliderMarkerProps=buildProps({mark:{type:definePropType([String,Object]),default:void 0}});var SliderMarker=defineComponent({name:"ElSliderMarker",props:sliderMarkerProps,setup(e){const t=useNamespace("slider"),n=computed(()=>isString$3(e.mark)?e.mark:e.mark.label),r=computed(()=>isString$3(e.mark)?void 0:e.mark.style);return()=>h$1("div",{class:t.e("marks-text"),style:r.value},n.value)}});const _hoisted_1$h=["id","role","aria-label","aria-labelledby"],_hoisted_2$d={key:1},__default__$p=defineComponent({name:"ElSlider"}),_sfc_main$C=defineComponent({...__default__$p,props:sliderProps,emits:sliderEmits,setup(e,{expose:t,emit:n}){const r=e,i=useNamespace("slider"),{t:g}=useLocale(),$=reactive({firstValue:0,secondValue:0,oldValue:0,dragging:!1,sliderSize:1}),{elFormItem:y,slider:k,firstButton:j,secondButton:L,sliderDisabled:V,minValue:z,maxValue:oe,runwayStyle:re,barStyle:ie,resetSize:ae,emitChange:le,onSliderWrapperPrevent:de,onSliderClick:pe,onSliderDown:he,setFirstValue:ue,setSecondValue:_e}=useSlide(r,$,n),{stops:Ie,getStopStyle:Ce}=useStops(r,$,z,oe),{inputId:Oe,isLabeledByFormItem:$e}=useFormItemInputId(r,{formItemContext:y}),qe=useSize(),ze=computed(()=>r.inputSize||qe.value),Ue=computed(()=>r.label||g("el.slider.defaultLabel",{min:r.min,max:r.max})),kt=computed(()=>r.range?r.rangeStartLabel||g("el.slider.defaultRangeStartLabel"):Ue.value),At=computed(()=>r.formatValueText?r.formatValueText(_n.value):`${_n.value}`),Pt=computed(()=>r.rangeEndLabel||g("el.slider.defaultRangeEndLabel")),jt=computed(()=>r.formatValueText?r.formatValueText(vn.value):`${vn.value}`),bn=computed(()=>[i.b(),i.m(qe.value),i.is("vertical",r.vertical),{[i.m("with-input")]:r.showInput}]),hn=useMarks(r);useWatch(r,$,z,oe,n,y);const Dt=computed(()=>{const En=[r.min,r.max,r.step].map(Sn=>{const Bn=`${Sn}`.split(".")[1];return Bn?Bn.length:0});return Math.max.apply(null,En)}),{sliderWrapper:wn}=useLifecycle(r,$,ae),{firstValue:_n,secondValue:vn,sliderSize:Cn}=toRefs($),xn=En=>{$.dragging=En};return provide(sliderContextKey,{...toRefs(r),sliderSize:Cn,disabled:V,precision:Dt,emitChange:le,resetSize:ae,updateDragging:xn}),t({onSliderClick:pe}),(En,Sn)=>{var Bn,An;return openBlock(),createElementBlock("div",{id:En.range?unref(Oe):void 0,ref_key:"sliderWrapper",ref:wn,class:normalizeClass(unref(bn)),role:En.range?"group":void 0,"aria-label":En.range&&!unref($e)?unref(Ue):void 0,"aria-labelledby":En.range&&unref($e)?(Bn=unref(y))==null?void 0:Bn.labelId:void 0,onTouchstart:Sn[2]||(Sn[2]=(...Pn)=>unref(de)&&unref(de)(...Pn)),onTouchmove:Sn[3]||(Sn[3]=(...Pn)=>unref(de)&&unref(de)(...Pn))},[createBaseVNode("div",{ref_key:"slider",ref:k,class:normalizeClass([unref(i).e("runway"),{"show-input":En.showInput&&!En.range},unref(i).is("disabled",unref(V))]),style:normalizeStyle(unref(re)),onMousedown:Sn[0]||(Sn[0]=(...Pn)=>unref(he)&&unref(he)(...Pn)),onTouchstart:Sn[1]||(Sn[1]=(...Pn)=>unref(he)&&unref(he)(...Pn))},[createBaseVNode("div",{class:normalizeClass(unref(i).e("bar")),style:normalizeStyle(unref(ie))},null,6),createVNode(SliderButton,{id:En.range?void 0:unref(Oe),ref_key:"firstButton",ref:j,"model-value":unref(_n),vertical:En.vertical,"tooltip-class":En.tooltipClass,placement:En.placement,role:"slider","aria-label":En.range||!unref($e)?unref(kt):void 0,"aria-labelledby":!En.range&&unref($e)?(An=unref(y))==null?void 0:An.labelId:void 0,"aria-valuemin":En.min,"aria-valuemax":En.range?unref(vn):En.max,"aria-valuenow":unref(_n),"aria-valuetext":unref(At),"aria-orientation":En.vertical?"vertical":"horizontal","aria-disabled":unref(V),"onUpdate:modelValue":unref(ue)},null,8,["id","model-value","vertical","tooltip-class","placement","aria-label","aria-labelledby","aria-valuemin","aria-valuemax","aria-valuenow","aria-valuetext","aria-orientation","aria-disabled","onUpdate:modelValue"]),En.range?(openBlock(),createBlock(SliderButton,{key:0,ref_key:"secondButton",ref:L,"model-value":unref(vn),vertical:En.vertical,"tooltip-class":En.tooltipClass,placement:En.placement,role:"slider","aria-label":unref(Pt),"aria-valuemin":unref(_n),"aria-valuemax":En.max,"aria-valuenow":unref(vn),"aria-valuetext":unref(jt),"aria-orientation":En.vertical?"vertical":"horizontal","aria-disabled":unref(V),"onUpdate:modelValue":unref(_e)},null,8,["model-value","vertical","tooltip-class","placement","aria-label","aria-valuemin","aria-valuemax","aria-valuenow","aria-valuetext","aria-orientation","aria-disabled","onUpdate:modelValue"])):createCommentVNode("v-if",!0),En.showStops?(openBlock(),createElementBlock("div",_hoisted_2$d,[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(Ie),(Pn,Mn)=>(openBlock(),createElementBlock("div",{key:Mn,class:normalizeClass(unref(i).e("stop")),style:normalizeStyle(unref(Ce)(Pn))},null,6))),128))])):createCommentVNode("v-if",!0),unref(hn).length>0?(openBlock(),createElementBlock(Fragment,{key:2},[createBaseVNode("div",null,[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(hn),(Pn,Mn)=>(openBlock(),createElementBlock("div",{key:Mn,style:normalizeStyle(unref(Ce)(Pn.position)),class:normalizeClass([unref(i).e("stop"),unref(i).e("marks-stop")])},null,6))),128))]),createBaseVNode("div",{class:normalizeClass(unref(i).e("marks"))},[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(hn),(Pn,Mn)=>(openBlock(),createBlock(unref(SliderMarker),{key:Mn,mark:Pn.mark,style:normalizeStyle(unref(Ce)(Pn.position))},null,8,["mark","style"]))),128))],2)],64)):createCommentVNode("v-if",!0)],38),En.showInput&&!En.range?(openBlock(),createBlock(unref(ElInputNumber),{key:0,ref:"input","model-value":unref(_n),class:normalizeClass(unref(i).e("input")),step:En.step,disabled:unref(V),controls:En.showInputControls,min:En.min,max:En.max,debounce:En.debounce,size:unref(ze),"onUpdate:modelValue":unref(ue),onChange:unref(le)},null,8,["model-value","class","step","disabled","controls","min","max","debounce","size","onUpdate:modelValue","onChange"])):createCommentVNode("v-if",!0)],42,_hoisted_1$h)}}});var Slider=_export_sfc$1(_sfc_main$C,[["__file","/home/runner/work/element-plus/element-plus/packages/components/slider/src/slider.vue"]]);const ElSlider=withInstall(Slider),spaceItemProps=buildProps({prefixCls:{type:String}}),SpaceItem=defineComponent({name:"ElSpaceItem",props:spaceItemProps,setup(e,{slots:t}){const n=useNamespace("space"),r=computed(()=>`${e.prefixCls||n.b()}__item`);return()=>h$1("div",{class:r.value},renderSlot(t,"default"))}}),SIZE_MAP={small:8,default:12,large:16};function useSpace(e){const t=useNamespace("space"),n=computed(()=>[t.b(),t.m(e.direction),e.class]),r=ref(0),i=ref(0),g=computed(()=>{const y=e.wrap||e.fill?{flexWrap:"wrap",marginBottom:`-${i.value}px`}:{},k={alignItems:e.alignment};return[y,k,e.style]}),$=computed(()=>{const y={paddingBottom:`${i.value}px`,marginRight:`${r.value}px`},k=e.fill?{flexGrow:1,minWidth:`${e.fillRatio}%`}:{};return[y,k]});return watchEffect(()=>{const{size:y="small",wrap:k,direction:j,fill:L}=e;if(isArray$4(y)){const[V=0,z=0]=y;r.value=V,i.value=z}else{let V;isNumber$1(y)?V=y:V=SIZE_MAP[y||"small"]||SIZE_MAP.small,(k||L)&&j==="horizontal"?r.value=i.value=V:j==="horizontal"?(r.value=V,i.value=0):(i.value=V,r.value=0)}}),{classes:n,containerStyle:g,itemStyle:$}}const spaceProps=buildProps({direction:{type:String,values:["horizontal","vertical"],default:"horizontal"},class:{type:definePropType([String,Object,Array]),default:""},style:{type:definePropType([String,Array,Object]),default:""},alignment:{type:definePropType(String),default:"center"},prefixCls:{type:String},spacer:{type:definePropType([Object,String,Number,Array]),default:null,validator:e=>isVNode(e)||isNumber$1(e)||isString$3(e)},wrap:Boolean,fill:Boolean,fillRatio:{type:Number,default:100},size:{type:[String,Array,Number],values:componentSizes,validator:e=>isNumber$1(e)||isArray$4(e)&&e.length===2&&e.every(isNumber$1)}}),Space=defineComponent({name:"ElSpace",props:spaceProps,setup(e,{slots:t}){const{classes:n,containerStyle:r,itemStyle:i}=useSpace(e);function g($,y="",k=[]){const{prefixCls:j}=e;return $.forEach((L,V)=>{isFragment(L)?isArray$4(L.children)&&L.children.forEach((z,oe)=>{isFragment(z)&&isArray$4(z.children)?g(z.children,`${y+oe}-`,k):k.push(createVNode(SpaceItem,{style:i.value,prefixCls:j,key:`nested-${y+oe}`},{default:()=>[z]},PatchFlags.PROPS|PatchFlags.STYLE,["style","prefixCls"]))}):isValidElementNode(L)&&k.push(createVNode(SpaceItem,{style:i.value,prefixCls:j,key:`LoopKey${y+V}`},{default:()=>[L]},PatchFlags.PROPS|PatchFlags.STYLE,["style","prefixCls"]))}),k}return()=>{var $;const{spacer:y,direction:k}=e,j=renderSlot(t,"default",{key:0},()=>[]);if((($=j.children)!=null?$:[]).length===0)return null;if(isArray$4(j.children)){let L=g(j.children);if(y){const V=L.length-1;L=L.reduce((z,oe,re)=>{const ie=[...z,oe];return re!==V&&ie.push(createVNode("span",{style:[i.value,k==="vertical"?"width: 100%":null],key:re},[isVNode(y)?y:createTextVNode(y,PatchFlags.TEXT)],PatchFlags.STYLE)),ie},[])}return createVNode("div",{class:n.value,style:r.value},L,PatchFlags.STYLE|PatchFlags.CLASS)}return j.children}}}),ElSpace=withInstall(Space),statisticProps=buildProps({decimalSeparator:{type:String,default:"."},groupSeparator:{type:String,default:","},precision:{type:Number,default:0},formatter:Function,value:{type:definePropType([Number,Object]),default:0},prefix:String,suffix:String,title:String,valueStyle:{type:definePropType([String,Object,Array])}}),__default__$o=defineComponent({name:"ElStatistic"}),_sfc_main$B=defineComponent({...__default__$o,props:statisticProps,setup(e,{expose:t}){const n=e,r=useNamespace("statistic"),i=computed(()=>{const{value:g,formatter:$,precision:y,decimalSeparator:k,groupSeparator:j}=n;if(isFunction$4($))return $(g);if(!isNumber$1(g))return g;let[L,V=""]=String(g).split(".");return V=V.padEnd(y,"0").slice(0,y>0?y:0),L=L.replace(/\B(?=(\d{3})+(?!\d))/g,j),[L,V].join(V?k:"")});return t({displayValue:i}),(g,$)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref(r).b())},[g.$slots.title||g.title?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(r).e("head"))},[renderSlot(g.$slots,"title",{},()=>[createTextVNode(toDisplayString$1(g.title),1)])],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(r).e("content"))},[g.$slots.prefix||g.prefix?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(r).e("prefix"))},[renderSlot(g.$slots,"prefix",{},()=>[createBaseVNode("span",null,toDisplayString$1(g.prefix),1)])],2)):createCommentVNode("v-if",!0),createBaseVNode("span",{class:normalizeClass(unref(r).e("number")),style:normalizeStyle(g.valueStyle)},toDisplayString$1(unref(i)),7),g.$slots.suffix||g.suffix?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref(r).e("suffix"))},[renderSlot(g.$slots,"suffix",{},()=>[createBaseVNode("span",null,toDisplayString$1(g.suffix),1)])],2)):createCommentVNode("v-if",!0)],2)],2))}});var Statistic=_export_sfc$1(_sfc_main$B,[["__file","/home/runner/work/element-plus/element-plus/packages/components/statistic/src/statistic.vue"]]);const ElStatistic=withInstall(Statistic),countdownProps=buildProps({format:{type:String,default:"HH:mm:ss"},prefix:String,suffix:String,title:String,value:{type:definePropType([Number,Object]),default:0},valueStyle:{type:definePropType([String,Object,Array])}}),countdownEmits={finish:()=>!0,[CHANGE_EVENT]:e=>isNumber$1(e)},timeUnits=[["Y",1e3*60*60*24*365],["M",1e3*60*60*24*30],["D",1e3*60*60*24],["H",1e3*60*60],["m",1e3*60],["s",1e3],["S",1]],getTime=e=>isNumber$1(e)?new Date(e).getTime():e.valueOf(),formatTime$1=(e,t)=>{let n=e;const r=/\[([^\]]*)]/g;return timeUnits.reduce((g,[$,y])=>{const k=new RegExp(`${$}+(?![^\\[\\]]*\\])`,"g");if(k.test(g)){const j=Math.floor(n/y);return n-=j*y,g.replace(k,L=>String(j).padStart(L.length,"0"))}return g},t).replace(r,"$1")},__default__$n=defineComponent({name:"ElCountdown"}),_sfc_main$A=defineComponent({...__default__$n,props:countdownProps,emits:countdownEmits,setup(e,{expose:t,emit:n}){const r=e;let i;const g=ref(getTime(r.value)-Date.now()),$=computed(()=>formatTime$1(g.value,r.format)),y=L=>formatTime$1(L,r.format),k=()=>{i&&(cAF(i),i=void 0)},j=()=>{const L=getTime(r.value),V=()=>{let z=L-Date.now();n("change",z),z<=0?(z=0,k(),n("finish")):i=rAF(V),g.value=z};i=rAF(V)};return watch(()=>[r.value,r.format],()=>{k(),j()},{immediate:!0}),onBeforeUnmount(()=>{k()}),t({displayValue:$}),(L,V)=>(openBlock(),createBlock(unref(ElStatistic),{value:g.value,title:L.title,prefix:L.prefix,suffix:L.suffix,"value-style":L.valueStyle,formatter:y},createSlots({_:2},[renderList(L.$slots,(z,oe)=>({name:oe,fn:withCtx(()=>[renderSlot(L.$slots,oe)])}))]),1032,["value","title","prefix","suffix","value-style"]))}});var Countdown=_export_sfc$1(_sfc_main$A,[["__file","/home/runner/work/element-plus/element-plus/packages/components/countdown/src/countdown.vue"]]);const ElCountdown=withInstall(Countdown),stepsProps=buildProps({space:{type:[Number,String],default:""},active:{type:Number,default:0},direction:{type:String,default:"horizontal",values:["horizontal","vertical"]},alignCenter:{type:Boolean},simple:{type:Boolean},finishStatus:{type:String,values:["wait","process","finish","error","success"],default:"finish"},processStatus:{type:String,values:["wait","process","finish","error","success"],default:"process"}}),stepsEmits={[CHANGE_EVENT]:(e,t)=>[e,t].every(isNumber$1)},__default__$m=defineComponent({name:"ElSteps"}),_sfc_main$z=defineComponent({...__default__$m,props:stepsProps,emits:stepsEmits,setup(e,{emit:t}){const n=e,r=useNamespace("steps"),i=ref([]);return watch(i,()=>{i.value.forEach((g,$)=>{g.setIndex($)})}),provide("ElSteps",{props:n,steps:i}),watch(()=>n.active,(g,$)=>{t(CHANGE_EVENT,g,$)}),(g,$)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(r).b(),unref(r).m(g.simple?"simple":g.direction)])},[renderSlot(g.$slots,"default")],2))}});var Steps=_export_sfc$1(_sfc_main$z,[["__file","/home/runner/work/element-plus/element-plus/packages/components/steps/src/steps.vue"]]);const stepProps=buildProps({title:{type:String,default:""},icon:{type:iconPropType},description:{type:String,default:""},status:{type:String,values:["","wait","process","finish","error","success"],default:""}}),__default__$l=defineComponent({name:"ElStep"}),_sfc_main$y=defineComponent({...__default__$l,props:stepProps,setup(e){const t=e,n=useNamespace("step"),r=ref(-1),i=ref({}),g=ref(""),$=inject("ElSteps"),y=getCurrentInstance();onMounted(()=>{watch([()=>$.props.active,()=>$.props.processStatus,()=>$.props.finishStatus],([ue])=>{pe(ue)},{immediate:!0})}),onBeforeUnmount(()=>{$.steps.value=$.steps.value.filter(ue=>ue.uid!==(y==null?void 0:y.uid))});const k=computed(()=>t.status||g.value),j=computed(()=>{const ue=$.steps.value[r.value-1];return ue?ue.currentStatus:"wait"}),L=computed(()=>$.props.alignCenter),V=computed(()=>$.props.direction==="vertical"),z=computed(()=>$.props.simple),oe=computed(()=>$.steps.value.length),re=computed(()=>{var ue;return((ue=$.steps.value[oe.value-1])==null?void 0:ue.uid)===(y==null?void 0:y.uid)}),ie=computed(()=>z.value?"":$.props.space),ae=computed(()=>{const ue={flexBasis:typeof ie.value=="number"?`${ie.value}px`:ie.value?ie.value:`${100/(oe.value-(L.value?0:1))}%`};return V.value||re.value&&(ue.maxWidth=`${100/oe.value}%`),ue}),le=ue=>{r.value=ue},de=ue=>{let _e=100;const Ie={};Ie.transitionDelay=`${150*r.value}ms`,ue===$.props.processStatus?_e=0:ue==="wait"&&(_e=0,Ie.transitionDelay=`${-150*r.value}ms`),Ie.borderWidth=_e&&!z.value?"1px":0,Ie[$.props.direction==="vertical"?"height":"width"]=`${_e}%`,i.value=Ie},pe=ue=>{ue>r.value?g.value=$.props.finishStatus:ue===r.value&&j.value!=="error"?g.value=$.props.processStatus:g.value="wait";const _e=$.steps.value[r.value-1];_e&&_e.calcProgress(g.value)},he=reactive({uid:computed(()=>y==null?void 0:y.uid),currentStatus:k,setIndex:le,calcProgress:de});return $.steps.value=[...$.steps.value,he],(ue,_e)=>(openBlock(),createElementBlock("div",{style:normalizeStyle(unref(ae)),class:normalizeClass([unref(n).b(),unref(n).is(unref(z)?"simple":unref($).props.direction),unref(n).is("flex",unref(re)&&!unref(ie)&&!unref(L)),unref(n).is("center",unref(L)&&!unref(V)&&!unref(z))])},[createCommentVNode(" icon & line "),createBaseVNode("div",{class:normalizeClass([unref(n).e("head"),unref(n).is(unref(k))])},[unref(z)?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(n).e("line"))},[createBaseVNode("i",{class:normalizeClass(unref(n).e("line-inner")),style:normalizeStyle(i.value)},null,6)],2)),createBaseVNode("div",{class:normalizeClass([unref(n).e("icon"),unref(n).is(ue.icon||ue.$slots.icon?"icon":"text")])},[renderSlot(ue.$slots,"icon",{},()=>[ue.icon?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(n).e("icon-inner"))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(ue.icon)))]),_:1},8,["class"])):unref(k)==="success"?(openBlock(),createBlock(unref(ElIcon),{key:1,class:normalizeClass([unref(n).e("icon-inner"),unref(n).is("status")])},{default:withCtx(()=>[createVNode(unref(check_default))]),_:1},8,["class"])):unref(k)==="error"?(openBlock(),createBlock(unref(ElIcon),{key:2,class:normalizeClass([unref(n).e("icon-inner"),unref(n).is("status")])},{default:withCtx(()=>[createVNode(unref(close_default))]),_:1},8,["class"])):unref(z)?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("div",{key:3,class:normalizeClass(unref(n).e("icon-inner"))},toDisplayString$1(r.value+1),3))])],2)],2),createCommentVNode(" title & description "),createBaseVNode("div",{class:normalizeClass(unref(n).e("main"))},[createBaseVNode("div",{class:normalizeClass([unref(n).e("title"),unref(n).is(unref(k))])},[renderSlot(ue.$slots,"title",{},()=>[createTextVNode(toDisplayString$1(ue.title),1)])],2),unref(z)?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(n).e("arrow"))},null,2)):(openBlock(),createElementBlock("div",{key:1,class:normalizeClass([unref(n).e("description"),unref(n).is(unref(k))])},[renderSlot(ue.$slots,"description",{},()=>[createTextVNode(toDisplayString$1(ue.description),1)])],2))],2)],6))}});var Step=_export_sfc$1(_sfc_main$y,[["__file","/home/runner/work/element-plus/element-plus/packages/components/steps/src/item.vue"]]);const ElSteps=withInstall(Steps,{Step}),ElStep=withNoopInstall(Step),switchProps=buildProps({modelValue:{type:[Boolean,String,Number],default:!1},value:{type:[Boolean,String,Number],default:!1},disabled:{type:Boolean,default:!1},width:{type:[String,Number],default:""},inlinePrompt:{type:Boolean,default:!1},activeIcon:{type:iconPropType},inactiveIcon:{type:iconPropType},activeText:{type:String,default:""},inactiveText:{type:String,default:""},activeColor:{type:String,default:""},inactiveColor:{type:String,default:""},borderColor:{type:String,default:""},activeValue:{type:[Boolean,String,Number],default:!0},inactiveValue:{type:[Boolean,String,Number],default:!1},name:{type:String,default:""},validateEvent:{type:Boolean,default:!0},id:String,loading:{type:Boolean,default:!1},beforeChange:{type:definePropType(Function)},size:{type:String,validator:isValidComponentSize},tabindex:{type:[String,Number]}}),switchEmits={[UPDATE_MODEL_EVENT]:e=>isBoolean$1(e)||isString$3(e)||isNumber$1(e),[CHANGE_EVENT]:e=>isBoolean$1(e)||isString$3(e)||isNumber$1(e),[INPUT_EVENT]:e=>isBoolean$1(e)||isString$3(e)||isNumber$1(e)},_hoisted_1$g=["onClick"],_hoisted_2$c=["id","aria-checked","aria-disabled","name","true-value","false-value","disabled","tabindex","onKeydown"],_hoisted_3$6=["aria-hidden"],_hoisted_4$4=["aria-hidden"],_hoisted_5$3=["aria-hidden"],COMPONENT_NAME$8="ElSwitch",__default__$k=defineComponent({name:COMPONENT_NAME$8}),_sfc_main$x=defineComponent({...__default__$k,props:switchProps,emits:switchEmits,setup(e,{expose:t,emit:n}){const r=e,i=getCurrentInstance(),{formItem:g}=useFormItem(),$=useSize(),y=useNamespace("switch");useDeprecated({from:'"value"',replacement:'"model-value" or "v-model"',scope:COMPONENT_NAME$8,version:"2.3.0",ref:"https://element-plus.org/en-US/component/switch.html#attributes",type:"Attribute"},computed(()=>{var ue;return!!((ue=i.vnode.props)!=null&&ue.value)}));const{inputId:k}=useFormItemInputId(r,{formItemContext:g}),j=useDisabled(computed(()=>r.loading)),L=ref(r.modelValue!==!1),V=ref(),z=ref(),oe=computed(()=>[y.b(),y.m($.value),y.is("disabled",j.value),y.is("checked",ae.value)]),re=computed(()=>({width:addUnit(r.width)}));watch(()=>r.modelValue,()=>{L.value=!0}),watch(()=>r.value,()=>{L.value=!1});const ie=computed(()=>L.value?r.modelValue:r.value),ae=computed(()=>ie.value===r.activeValue);[r.activeValue,r.inactiveValue].includes(ie.value)||(n(UPDATE_MODEL_EVENT,r.inactiveValue),n(CHANGE_EVENT,r.inactiveValue),n(INPUT_EVENT,r.inactiveValue)),watch(ae,ue=>{var _e;V.value.checked=ue,r.validateEvent&&((_e=g==null?void 0:g.validate)==null||_e.call(g,"change").catch(Ie=>void 0))});const le=()=>{const ue=ae.value?r.inactiveValue:r.activeValue;n(UPDATE_MODEL_EVENT,ue),n(CHANGE_EVENT,ue),n(INPUT_EVENT,ue),nextTick(()=>{V.value.checked=ae.value})},de=()=>{if(j.value)return;const{beforeChange:ue}=r;if(!ue){le();return}const _e=ue();[isPromise$1(_e),isBoolean$1(_e)].includes(!0)||throwError(COMPONENT_NAME$8,"beforeChange must return type `Promise` or `boolean`"),isPromise$1(_e)?_e.then(Ce=>{Ce&&le()}).catch(Ce=>{}):_e&&le()},pe=computed(()=>y.cssVarBlock({...r.activeColor?{"on-color":r.activeColor}:null,...r.inactiveColor?{"off-color":r.inactiveColor}:null,...r.borderColor?{"border-color":r.borderColor}:null})),he=()=>{var ue,_e;(_e=(ue=V.value)==null?void 0:ue.focus)==null||_e.call(ue)};return onMounted(()=>{V.value.checked=ae.value}),t({focus:he,checked:ae}),(ue,_e)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref(oe)),style:normalizeStyle(unref(pe)),onClick:withModifiers(de,["prevent"])},[createBaseVNode("input",{id:unref(k),ref_key:"input",ref:V,class:normalizeClass(unref(y).e("input")),type:"checkbox",role:"switch","aria-checked":unref(ae),"aria-disabled":unref(j),name:ue.name,"true-value":ue.activeValue,"false-value":ue.inactiveValue,disabled:unref(j),tabindex:ue.tabindex,onChange:le,onKeydown:withKeys(de,["enter"])},null,42,_hoisted_2$c),!ue.inlinePrompt&&(ue.inactiveIcon||ue.inactiveText)?(openBlock(),createElementBlock("span",{key:0,class:normalizeClass([unref(y).e("label"),unref(y).em("label","left"),unref(y).is("active",!unref(ae))])},[ue.inactiveIcon?(openBlock(),createBlock(unref(ElIcon),{key:0},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(ue.inactiveIcon)))]),_:1})):createCommentVNode("v-if",!0),!ue.inactiveIcon&&ue.inactiveText?(openBlock(),createElementBlock("span",{key:1,"aria-hidden":unref(ae)},toDisplayString$1(ue.inactiveText),9,_hoisted_3$6)):createCommentVNode("v-if",!0)],2)):createCommentVNode("v-if",!0),createBaseVNode("span",{ref_key:"core",ref:z,class:normalizeClass(unref(y).e("core")),style:normalizeStyle(unref(re))},[ue.inlinePrompt?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(unref(y).e("inner"))},[ue.activeIcon||ue.inactiveIcon?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(y).is("icon"))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(ae)?ue.activeIcon:ue.inactiveIcon)))]),_:1},8,["class"])):ue.activeText||ue.inactiveText?(openBlock(),createElementBlock("span",{key:1,class:normalizeClass(unref(y).is("text")),"aria-hidden":!unref(ae)},toDisplayString$1(unref(ae)?ue.activeText:ue.inactiveText),11,_hoisted_4$4)):createCommentVNode("v-if",!0)],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(y).e("action"))},[ue.loading?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(y).is("loading"))},{default:withCtx(()=>[createVNode(unref(loading_default))]),_:1},8,["class"])):createCommentVNode("v-if",!0)],2)],6),!ue.inlinePrompt&&(ue.activeIcon||ue.activeText)?(openBlock(),createElementBlock("span",{key:1,class:normalizeClass([unref(y).e("label"),unref(y).em("label","right"),unref(y).is("active",unref(ae))])},[ue.activeIcon?(openBlock(),createBlock(unref(ElIcon),{key:0},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(ue.activeIcon)))]),_:1})):createCommentVNode("v-if",!0),!ue.activeIcon&&ue.activeText?(openBlock(),createElementBlock("span",{key:1,"aria-hidden":!unref(ae)},toDisplayString$1(ue.activeText),9,_hoisted_5$3)):createCommentVNode("v-if",!0)],2)):createCommentVNode("v-if",!0)],14,_hoisted_1$g))}});var Switch=_export_sfc$1(_sfc_main$x,[["__file","/home/runner/work/element-plus/element-plus/packages/components/switch/src/switch.vue"]]);const ElSwitch=withInstall(Switch);/*! +* escape-html +* Copyright(c) 2012-2013 TJ Holowaychuk +* Copyright(c) 2015 Andreas Lubbe +* Copyright(c) 2015 Tiancheng "Timothy" Gu +* MIT Licensed +*/var matchHtmlRegExp=/["'&<>]/,escapeHtml_1=escapeHtml$1;function escapeHtml$1(e){var t=""+e,n=matchHtmlRegExp.exec(t);if(!n)return t;var r,i="",g=0,$=0;for(g=n.index;gtypeof j=="string"?get$1(y,j):j(y,k,e))):(t!=="$key"&&isObject$4(y)&&"$value"in y&&(y=y.$value),[isObject$4(y)?get$1(y,t):y])},$=function(y,k){if(r)return r(y.value,k.value);for(let j=0,L=y.key.length;jk.key[j])return 1}return 0};return e.map((y,k)=>({value:y,index:k,key:g?g(y,k):null})).sort((y,k)=>{let j=$(y,k);return j||(j=y.index-k.index),j*+n}).map(y=>y.value)},getColumnById=function(e,t){let n=null;return e.columns.forEach(r=>{r.id===t&&(n=r)}),n},getColumnByKey=function(e,t){let n=null;for(let r=0;r{if(!e)throw new Error("Row is required when get row identity");if(typeof t=="string"){if(!t.includes("."))return`${e[t]}`;const n=t.split(".");let r=e;for(const i of n)r=r[i];return`${r}`}else if(typeof t=="function")return t.call(null,e)},getKeysMap=function(e,t){const n={};return(e||[]).forEach((r,i)=>{n[getRowIdentity(r,t)]={row:r,index:i}}),n};function mergeOptions(e,t){const n={};let r;for(r in e)n[r]=e[r];for(r in t)if(hasOwn$2(t,r)){const i=t[r];typeof i!="undefined"&&(n[r]=i)}return n}function parseWidth(e){return e===""||e!==void 0&&(e=Number.parseInt(e,10),Number.isNaN(e)&&(e="")),e}function parseMinWidth(e){return e===""||e!==void 0&&(e=parseWidth(e),Number.isNaN(e)&&(e=80)),e}function parseHeight(e){return typeof e=="number"?e:typeof e=="string"?/^\d+(?:px)?$/.test(e)?Number.parseInt(e,10):e:null}function compose(...e){return e.length===0?t=>t:e.length===1?e[0]:e.reduce((t,n)=>(...r)=>t(n(...r)))}function toggleRowStatus(e,t,n){let r=!1;const i=e.indexOf(t),g=i!==-1,$=y=>{y==="add"?e.push(t):e.splice(i,1),r=!0,isArray$4(t.children)&&t.children.forEach(k=>{toggleRowStatus(e,k,n!=null?n:!g)})};return isBoolean$1(n)?n&&!g?$("add"):!n&&g&&$("remove"):$(g?"remove":"add"),r}function walkTreeNode(e,t,n="children",r="hasChildren"){const i=$=>!(Array.isArray($)&&$.length);function g($,y,k){t($,y,k),y.forEach(j=>{if(j[r]){t(j,null,k+1);return}const L=j[n];i(L)||g(j,L,k+1)})}e.forEach($=>{if($[r]){t($,null,0);return}const y=$[n];i(y)||g($,y,0)})}let removePopper;function createTablePopper(e,t,n,r){r=merge$1({enterable:!0,showArrow:!0},r);const{nextZIndex:i}=useZIndex(),g=e==null?void 0:e.dataset.prefix,$=e==null?void 0:e.querySelector(`.${g}-scrollbar__wrap`);function y(){const ae=r.effect==="light",le=document.createElement("div");return le.className=[`${g}-popper`,ae?"is-light":"is-dark",r.popperClass||""].join(" "),n=escapeHtml_1(n),le.innerHTML=n,le.style.zIndex=String(i()),e==null||e.appendChild(le),le}function k(){const ae=document.createElement("div");return ae.className=`${g}-popper__arrow`,ae}function j(){L&&L.update()}removePopper==null||removePopper(),removePopper=()=>{try{L&&L.destroy(),oe&&(e==null||e.removeChild(oe)),t.removeEventListener("mouseenter",V),t.removeEventListener("mouseleave",z),$==null||$.removeEventListener("scroll",removePopper),removePopper=void 0}catch{}};let L=null,V=j,z=removePopper;r.enterable&&({onOpen:V,onClose:z}=useDelayedToggle({showAfter:r.showAfter,hideAfter:r.hideAfter,open:j,close:removePopper}));const oe=y();oe.onmouseenter=V,oe.onmouseleave=z;const re=[];if(r.offset&&re.push({name:"offset",options:{offset:[0,r.offset]}}),r.showArrow){const ae=oe.appendChild(k());re.push({name:"arrow",options:{element:ae,padding:10}})}const ie=r.popperOptions||{};return L=yn(t,oe,{placement:r.placement||"top",strategy:"fixed",...ie,modifiers:ie.modifiers?re.concat(ie.modifiers):re}),t.addEventListener("mouseenter",V),t.addEventListener("mouseleave",z),$==null||$.addEventListener("scroll",removePopper),L}function getCurrentColumns(e){return e.children?flatMap(e.children,getCurrentColumns):[e]}function getColSpan(e,t){return e+t.colSpan}const isFixedColumn=(e,t,n,r)=>{let i=0,g=e;const $=n.states.columns.value;if(r){const k=getCurrentColumns(r[e]);i=$.slice(0,$.indexOf(k[0])).reduce(getColSpan,0),g=i+k.reduce(getColSpan,0)-1}else i=e;let y;switch(t){case"left":g=$.length-n.states.rightFixedLeafColumnsLength.value&&(y="right");break;default:g=$.length-n.states.rightFixedLeafColumnsLength.value&&(y="right")}return y?{direction:y,start:i,after:g}:{}},getFixedColumnsClass=(e,t,n,r,i,g=0)=>{const $=[],{direction:y,start:k,after:j}=isFixedColumn(t,n,r,i);if(y){const L=y==="left";$.push(`${e}-fixed-column--${y}`),L&&j+g===r.states.fixedLeafColumnsLength.value-1?$.push("is-last-column"):!L&&k-g===r.states.columns.value.length-r.states.rightFixedLeafColumnsLength.value&&$.push("is-first-column")}return $};function getOffset(e,t){return e+(t.realWidth===null||Number.isNaN(t.realWidth)?Number(t.width):t.realWidth)}const getFixedColumnOffset=(e,t,n,r)=>{const{direction:i,start:g=0,after:$=0}=isFixedColumn(e,t,n,r);if(!i)return;const y={},k=i==="left",j=n.states.columns.value;return k?y.left=j.slice(0,g).reduce(getOffset,0):y.right=j.slice($+1).reverse().reduce(getOffset,0),y},ensurePosition=(e,t)=>{!e||Number.isNaN(e[t])||(e[t]=`${e[t]}px`)};function useExpand(e){const t=getCurrentInstance(),n=ref(!1),r=ref([]);return{updateExpandRows:()=>{const k=e.data.value||[],j=e.rowKey.value;if(n.value)r.value=k.slice();else if(j){const L=getKeysMap(r.value,j);r.value=k.reduce((V,z)=>{const oe=getRowIdentity(z,j);return L[oe]&&V.push(z),V},[])}else r.value=[]},toggleRowExpansion:(k,j)=>{toggleRowStatus(r.value,k,j)&&t.emit("expand-change",k,r.value.slice())},setExpandRowKeys:k=>{t.store.assertRowKey();const j=e.data.value||[],L=e.rowKey.value,V=getKeysMap(j,L);r.value=k.reduce((z,oe)=>{const re=V[oe];return re&&z.push(re.row),z},[])},isRowExpanded:k=>{const j=e.rowKey.value;return j?!!getKeysMap(r.value,j)[getRowIdentity(k,j)]:r.value.includes(k)},states:{expandRows:r,defaultExpandAll:n}}}function useCurrent(e){const t=getCurrentInstance(),n=ref(null),r=ref(null),i=j=>{t.store.assertRowKey(),n.value=j,$(j)},g=()=>{n.value=null},$=j=>{const{data:L,rowKey:V}=e;let z=null;V.value&&(z=(unref(L)||[]).find(oe=>getRowIdentity(oe,V.value)===j)),r.value=z,t.emit("current-change",r.value,null)};return{setCurrentRowKey:i,restoreCurrentRowKey:g,setCurrentRowByKey:$,updateCurrentRow:j=>{const L=r.value;if(j&&j!==L){r.value=j,t.emit("current-change",r.value,L);return}!j&&L&&(r.value=null,t.emit("current-change",null,L))},updateCurrentRowData:()=>{const j=e.rowKey.value,L=e.data.value||[],V=r.value;if(!L.includes(V)&&V){if(j){const z=getRowIdentity(V,j);$(z)}else r.value=null;r.value===null&&t.emit("current-change",null,V)}else n.value&&($(n.value),g())},states:{_currentRowKey:n,currentRow:r}}}function useTree$2(e){const t=ref([]),n=ref({}),r=ref(16),i=ref(!1),g=ref({}),$=ref("hasChildren"),y=ref("children"),k=getCurrentInstance(),j=computed(()=>{if(!e.rowKey.value)return{};const le=e.data.value||[];return V(le)}),L=computed(()=>{const le=e.rowKey.value,de=Object.keys(g.value),pe={};return de.length&&de.forEach(he=>{if(g.value[he].length){const ue={children:[]};g.value[he].forEach(_e=>{const Ie=getRowIdentity(_e,le);ue.children.push(Ie),_e[$.value]&&!pe[Ie]&&(pe[Ie]={children:[]})}),pe[he]=ue}}),pe}),V=le=>{const de=e.rowKey.value,pe={};return walkTreeNode(le,(he,ue,_e)=>{const Ie=getRowIdentity(he,de);Array.isArray(ue)?pe[Ie]={children:ue.map(Ce=>getRowIdentity(Ce,de)),level:_e}:i.value&&(pe[Ie]={children:[],lazy:!0,level:_e})},y.value,$.value),pe},z=(le=!1,de=(pe=>(pe=k.store)==null?void 0:pe.states.defaultExpandAll.value)())=>{var pe;const he=j.value,ue=L.value,_e=Object.keys(he),Ie={};if(_e.length){const Ce=unref(n),Oe=[],$e=(ze,Ue)=>{if(le)return t.value?de||t.value.includes(Ue):!!(de||(ze==null?void 0:ze.expanded));{const kt=de||t.value&&t.value.includes(Ue);return!!((ze==null?void 0:ze.expanded)||kt)}};_e.forEach(ze=>{const Ue=Ce[ze],kt={...he[ze]};if(kt.expanded=$e(Ue,ze),kt.lazy){const{loaded:At=!1,loading:Pt=!1}=Ue||{};kt.loaded=!!At,kt.loading=!!Pt,Oe.push(ze)}Ie[ze]=kt});const qe=Object.keys(ue);i.value&&qe.length&&Oe.length&&qe.forEach(ze=>{const Ue=Ce[ze],kt=ue[ze].children;if(Oe.includes(ze)){if(Ie[ze].children.length!==0)throw new Error("[ElTable]children must be an empty array.");Ie[ze].children=kt}else{const{loaded:At=!1,loading:Pt=!1}=Ue||{};Ie[ze]={lazy:!0,loaded:!!At,loading:!!Pt,expanded:$e(Ue,ze),children:kt,level:""}}})}n.value=Ie,(pe=k.store)==null||pe.updateTableScrollY()};watch(()=>t.value,()=>{z(!0)}),watch(()=>j.value,()=>{z()}),watch(()=>L.value,()=>{z()});const oe=le=>{t.value=le,z()},re=(le,de)=>{k.store.assertRowKey();const pe=e.rowKey.value,he=getRowIdentity(le,pe),ue=he&&n.value[he];if(he&&ue&&"expanded"in ue){const _e=ue.expanded;de=typeof de=="undefined"?!ue.expanded:de,n.value[he].expanded=de,_e!==de&&k.emit("expand-change",le,de),k.store.updateTableScrollY()}},ie=le=>{k.store.assertRowKey();const de=e.rowKey.value,pe=getRowIdentity(le,de),he=n.value[pe];i.value&&he&&"loaded"in he&&!he.loaded?ae(le,pe,he):re(le,void 0)},ae=(le,de,pe)=>{const{load:he}=k.props;he&&!n.value[de].loaded&&(n.value[de].loading=!0,he(le,pe,ue=>{if(!Array.isArray(ue))throw new TypeError("[ElTable] data must be an array");n.value[de].loading=!1,n.value[de].loaded=!0,n.value[de].expanded=!0,ue.length&&(g.value[de]=ue),k.emit("expand-change",le,!0)}))};return{loadData:ae,loadOrToggle:ie,toggleTreeExpansion:re,updateTreeExpandKeys:oe,updateTreeData:z,normalize:V,states:{expandRowKeys:t,treeData:n,indent:r,lazy:i,lazyTreeNodeMap:g,lazyColumnIdentifier:$,childrenColumnName:y}}}const sortData=(e,t)=>{const n=t.sortingColumn;return!n||typeof n.sortable=="string"?e:orderBy(e,t.sortProp,t.sortOrder,n.sortMethod,n.sortBy)},doFlattenColumns=e=>{const t=[];return e.forEach(n=>{n.children?t.push.apply(t,doFlattenColumns(n.children)):t.push(n)}),t};function useWatcher$1(){var e;const t=getCurrentInstance(),{size:n}=toRefs((e=t.proxy)==null?void 0:e.$props),r=ref(null),i=ref([]),g=ref([]),$=ref(!1),y=ref([]),k=ref([]),j=ref([]),L=ref([]),V=ref([]),z=ref([]),oe=ref([]),re=ref([]),ie=ref(0),ae=ref(0),le=ref(0),de=ref(!1),pe=ref([]),he=ref(!1),ue=ref(!1),_e=ref(null),Ie=ref({}),Ce=ref(null),Oe=ref(null),$e=ref(null),qe=ref(null),ze=ref(null);watch(i,()=>t.state&&Pt(!1),{deep:!0});const Ue=()=>{if(!r.value)throw new Error("[ElTable] prop row-key is required")},kt=Tn=>{var Ln;(Ln=Tn.children)==null||Ln.forEach(Rn=>{Rn.fixed=Tn.fixed,kt(Rn)})},At=()=>{y.value.forEach(In=>{kt(In)}),L.value=y.value.filter(In=>In.fixed===!0||In.fixed==="left"),V.value=y.value.filter(In=>In.fixed==="right"),L.value.length>0&&y.value[0]&&y.value[0].type==="selection"&&!y.value[0].fixed&&(y.value[0].fixed=!0,L.value.unshift(y.value[0]));const Tn=y.value.filter(In=>!In.fixed);k.value=[].concat(L.value).concat(Tn).concat(V.value);const Ln=doFlattenColumns(Tn),Rn=doFlattenColumns(L.value),Nn=doFlattenColumns(V.value);ie.value=Ln.length,ae.value=Rn.length,le.value=Nn.length,j.value=[].concat(Rn).concat(Ln).concat(Nn),$.value=L.value.length>0||V.value.length>0},Pt=(Tn,Ln=!1)=>{Tn&&At(),Ln?t.state.doLayout():t.state.debouncedUpdateLayout()},jt=Tn=>pe.value.includes(Tn),bn=()=>{de.value=!1,pe.value.length&&(pe.value=[],t.emit("selection-change",[]))},hn=()=>{let Tn;if(r.value){Tn=[];const Ln=getKeysMap(pe.value,r.value),Rn=getKeysMap(i.value,r.value);for(const Nn in Ln)hasOwn$2(Ln,Nn)&&!Rn[Nn]&&Tn.push(Ln[Nn].row)}else Tn=pe.value.filter(Ln=>!i.value.includes(Ln));if(Tn.length){const Ln=pe.value.filter(Rn=>!Tn.includes(Rn));pe.value=Ln,t.emit("selection-change",Ln.slice())}},Dt=()=>(pe.value||[]).slice(),wn=(Tn,Ln=void 0,Rn=!0)=>{if(toggleRowStatus(pe.value,Tn,Ln)){const In=(pe.value||[]).slice();Rn&&t.emit("select",In,Tn),t.emit("selection-change",In)}},_n=()=>{var Tn,Ln;const Rn=ue.value?!de.value:!(de.value||pe.value.length);de.value=Rn;let Nn=!1,In=0;const Gn=(Ln=(Tn=t==null?void 0:t.store)==null?void 0:Tn.states)==null?void 0:Ln.rowKey.value;i.value.forEach((Xn,ao)=>{const bo=ao+In;_e.value?_e.value.call(null,Xn,bo)&&toggleRowStatus(pe.value,Xn,Rn)&&(Nn=!0):toggleRowStatus(pe.value,Xn,Rn)&&(Nn=!0),In+=xn(getRowIdentity(Xn,Gn))}),Nn&&t.emit("selection-change",pe.value?pe.value.slice():[]),t.emit("select-all",pe.value)},vn=()=>{const Tn=getKeysMap(pe.value,r.value);i.value.forEach(Ln=>{const Rn=getRowIdentity(Ln,r.value),Nn=Tn[Rn];Nn&&(pe.value[Nn.index]=Ln)})},Cn=()=>{var Tn,Ln,Rn;if(((Tn=i.value)==null?void 0:Tn.length)===0){de.value=!1;return}let Nn;r.value&&(Nn=getKeysMap(pe.value,r.value));const In=function(bo){return Nn?!!Nn[getRowIdentity(bo,r.value)]:pe.value.includes(bo)};let Gn=!0,Xn=0,ao=0;for(let bo=0,uo=(i.value||[]).length;bo{var Ln;if(!t||!t.store)return 0;const{treeData:Rn}=t.store.states;let Nn=0;const In=(Ln=Rn.value[Tn])==null?void 0:Ln.children;return In&&(Nn+=In.length,In.forEach(Gn=>{Nn+=xn(Gn)})),Nn},En=(Tn,Ln)=>{Array.isArray(Tn)||(Tn=[Tn]);const Rn={};return Tn.forEach(Nn=>{Ie.value[Nn.id]=Ln,Rn[Nn.columnKey||Nn.id]=Ln}),Rn},Sn=(Tn,Ln,Rn)=>{Oe.value&&Oe.value!==Tn&&(Oe.value.order=null),Oe.value=Tn,$e.value=Ln,qe.value=Rn},Bn=()=>{let Tn=unref(g);Object.keys(Ie.value).forEach(Ln=>{const Rn=Ie.value[Ln];if(!Rn||Rn.length===0)return;const Nn=getColumnById({columns:j.value},Ln);Nn&&Nn.filterMethod&&(Tn=Tn.filter(In=>Rn.some(Gn=>Nn.filterMethod.call(null,Gn,In,Nn))))}),Ce.value=Tn},An=()=>{i.value=sortData(Ce.value,{sortingColumn:Oe.value,sortProp:$e.value,sortOrder:qe.value})},Pn=(Tn=void 0)=>{Tn&&Tn.filter||Bn(),An()},Mn=Tn=>{const{tableHeaderRef:Ln}=t.refs;if(!Ln)return;const Rn=Object.assign({},Ln.filterPanels),Nn=Object.keys(Rn);if(!!Nn.length)if(typeof Tn=="string"&&(Tn=[Tn]),Array.isArray(Tn)){const In=Tn.map(Gn=>getColumnByKey({columns:j.value},Gn));Nn.forEach(Gn=>{const Xn=In.find(ao=>ao.id===Gn);Xn&&(Xn.filteredValue=[])}),t.store.commit("filterChange",{column:In,values:[],silent:!0,multi:!0})}else Nn.forEach(In=>{const Gn=j.value.find(Xn=>Xn.id===In);Gn&&(Gn.filteredValue=[])}),Ie.value={},t.store.commit("filterChange",{column:{},values:[],silent:!0})},Fn=()=>{!Oe.value||(Sn(null,null,null),t.store.commit("changeSortCondition",{silent:!0}))},{setExpandRowKeys:jn,toggleRowExpansion:zn,updateExpandRows:Jn,states:io,isRowExpanded:eo}=useExpand({data:i,rowKey:r}),{updateTreeExpandKeys:Un,toggleTreeExpansion:Yn,updateTreeData:to,loadOrToggle:Hn,states:On}=useTree$2({data:i,rowKey:r}),{updateCurrentRowData:Wn,updateCurrentRow:oo,setCurrentRowKey:ro,states:Qn}=useCurrent({data:i,rowKey:r});return{assertRowKey:Ue,updateColumns:At,scheduleLayout:Pt,isSelected:jt,clearSelection:bn,cleanSelection:hn,getSelectionRows:Dt,toggleRowSelection:wn,_toggleAllSelection:_n,toggleAllSelection:null,updateSelectionByRowKey:vn,updateAllSelected:Cn,updateFilters:En,updateCurrentRow:oo,updateSort:Sn,execFilter:Bn,execSort:An,execQuery:Pn,clearFilter:Mn,clearSort:Fn,toggleRowExpansion:zn,setExpandRowKeysAdapter:Tn=>{jn(Tn),Un(Tn)},setCurrentRowKey:ro,toggleRowExpansionAdapter:(Tn,Ln)=>{j.value.some(({type:Nn})=>Nn==="expand")?zn(Tn,Ln):Yn(Tn,Ln)},isRowExpanded:eo,updateExpandRows:Jn,updateCurrentRowData:Wn,loadOrToggle:Hn,updateTreeData:to,states:{tableSize:n,rowKey:r,data:i,_data:g,isComplex:$,_columns:y,originColumns:k,columns:j,fixedColumns:L,rightFixedColumns:V,leafColumns:z,fixedLeafColumns:oe,rightFixedLeafColumns:re,leafColumnsLength:ie,fixedLeafColumnsLength:ae,rightFixedLeafColumnsLength:le,isAllSelected:de,selection:pe,reserveSelection:he,selectOnIndeterminate:ue,selectable:_e,filters:Ie,filteredData:Ce,sortingColumn:Oe,sortProp:$e,sortOrder:qe,hoverRow:ze,...io,...On,...Qn}}}function replaceColumn(e,t){return e.map(n=>{var r;return n.id===t.id?t:((r=n.children)!=null&&r.length&&(n.children=replaceColumn(n.children,t)),n)})}function sortColumn(e){e.forEach(t=>{var n,r;t.no=(n=t.getColumnIndex)==null?void 0:n.call(t),(r=t.children)!=null&&r.length&&sortColumn(t.children)}),e.sort((t,n)=>t.no-n.no)}function useStore(){const e=getCurrentInstance(),t=useWatcher$1();return{ns:useNamespace("table"),...t,mutations:{setData($,y){const k=unref($._data)!==y;$.data.value=y,$._data.value=y,e.store.execQuery(),e.store.updateCurrentRowData(),e.store.updateExpandRows(),e.store.updateTreeData(e.store.states.defaultExpandAll.value),unref($.reserveSelection)?(e.store.assertRowKey(),e.store.updateSelectionByRowKey()):k?e.store.clearSelection():e.store.cleanSelection(),e.store.updateAllSelected(),e.$ready&&e.store.scheduleLayout()},insertColumn($,y,k){const j=unref($._columns);let L=[];k?(k&&!k.children&&(k.children=[]),k.children.push(y),L=replaceColumn(j,k)):(j.push(y),L=j),sortColumn(L),$._columns.value=L,y.type==="selection"&&($.selectable.value=y.selectable,$.reserveSelection.value=y.reserveSelection),e.$ready&&(e.store.updateColumns(),e.store.scheduleLayout())},removeColumn($,y,k){const j=unref($._columns)||[];if(k)k.children.splice(k.children.findIndex(L=>L.id===y.id),1),nextTick(()=>{var L;((L=k.children)==null?void 0:L.length)===0&&delete k.children}),$._columns.value=replaceColumn(j,k);else{const L=j.indexOf(y);L>-1&&(j.splice(L,1),$._columns.value=j)}e.$ready&&(e.store.updateColumns(),e.store.scheduleLayout())},sort($,y){const{prop:k,order:j,init:L}=y;if(k){const V=unref($.columns).find(z=>z.property===k);V&&(V.order=j,e.store.updateSort(V,k,j),e.store.commit("changeSortCondition",{init:L}))}},changeSortCondition($,y){const{sortingColumn:k,sortProp:j,sortOrder:L}=$,V=unref(k),z=unref(j),oe=unref(L);oe===null&&($.sortingColumn.value=null,$.sortProp.value=null);const re={filter:!0};e.store.execQuery(re),(!y||!(y.silent||y.init))&&e.emit("sort-change",{column:V,prop:z,order:oe}),e.store.updateTableScrollY()},filterChange($,y){const{column:k,values:j,silent:L}=y,V=e.store.updateFilters(k,j);e.store.execQuery(),L||e.emit("filter-change",V),e.store.updateTableScrollY()},toggleAllSelection(){e.store.toggleAllSelection()},rowSelectedChanged($,y){e.store.toggleRowSelection(y),e.store.updateAllSelected()},setHoverRow($,y){$.hoverRow.value=y},setCurrentRow($,y){e.store.updateCurrentRow(y)}},commit:function($,...y){const k=e.store.mutations;if(k[$])k[$].apply(e,[e.store.states].concat(y));else throw new Error(`Action not found: ${$}`)},updateTableScrollY:function(){nextTick(()=>e.layout.updateScrollY.apply(e.layout))}}}const InitialStateMap={rowKey:"rowKey",defaultExpandAll:"defaultExpandAll",selectOnIndeterminate:"selectOnIndeterminate",indent:"indent",lazy:"lazy",data:"data",["treeProps.hasChildren"]:{key:"lazyColumnIdentifier",default:"hasChildren"},["treeProps.children"]:{key:"childrenColumnName",default:"children"}};function createStore(e,t){if(!e)throw new Error("Table is required.");const n=useStore();return n.toggleAllSelection=debounce$1(n._toggleAllSelection,10),Object.keys(InitialStateMap).forEach(r=>{handleValue(getArrKeysValue(t,r),r,n)}),proxyTableProps(n,t),n}function proxyTableProps(e,t){Object.keys(InitialStateMap).forEach(n=>{watch(()=>getArrKeysValue(t,n),r=>{handleValue(r,n,e)})})}function handleValue(e,t,n){let r=e,i=InitialStateMap[t];typeof InitialStateMap[t]=="object"&&(i=i.key,r=r||InitialStateMap[t].default),n.states[i].value=r}function getArrKeysValue(e,t){if(t.includes(".")){const n=t.split(".");let r=e;return n.forEach(i=>{r=r[i]}),r}else return e[t]}class TableLayout{constructor(t){this.observers=[],this.table=null,this.store=null,this.columns=[],this.fit=!0,this.showHeader=!0,this.height=ref(null),this.scrollX=ref(!1),this.scrollY=ref(!1),this.bodyWidth=ref(null),this.fixedWidth=ref(null),this.rightFixedWidth=ref(null),this.gutterWidth=0;for(const n in t)hasOwn$2(t,n)&&(isRef(this[n])?this[n].value=t[n]:this[n]=t[n]);if(!this.table)throw new Error("Table is required for Table Layout");if(!this.store)throw new Error("Store is required for Table Layout")}updateScrollY(){if(this.height.value===null)return!1;const n=this.table.refs.scrollBarRef;if(this.table.vnode.el&&n){let r=!0;const i=this.scrollY.value;return r=n.wrapRef.scrollHeight>n.wrapRef.clientHeight,this.scrollY.value=r,i!==r}return!1}setHeight(t,n="height"){if(!isClient)return;const r=this.table.vnode.el;if(t=parseHeight(t),this.height.value=Number(t),!r&&(t||t===0))return nextTick(()=>this.setHeight(t,n));typeof t=="number"?(r.style[n]=`${t}px`,this.updateElsHeight()):typeof t=="string"&&(r.style[n]=t,this.updateElsHeight())}setMaxHeight(t){this.setHeight(t,"max-height")}getFlattenColumns(){const t=[];return this.table.store.states.columns.value.forEach(r=>{r.isColumnGroup?t.push.apply(t,r.columns):t.push(r)}),t}updateElsHeight(){this.updateScrollY(),this.notifyObservers("scrollable")}headerDisplayNone(t){if(!t)return!0;let n=t;for(;n.tagName!=="DIV";){if(getComputedStyle(n).display==="none")return!0;n=n.parentElement}return!1}updateColumnsWidth(){if(!isClient)return;const t=this.fit,n=this.table.vnode.el.clientWidth;let r=0;const i=this.getFlattenColumns(),g=i.filter(k=>typeof k.width!="number");if(i.forEach(k=>{typeof k.width=="number"&&k.realWidth&&(k.realWidth=null)}),g.length>0&&t){if(i.forEach(k=>{r+=Number(k.width||k.minWidth||80)}),r<=n){this.scrollX.value=!1;const k=n-r;if(g.length===1)g[0].realWidth=Number(g[0].minWidth||80)+k;else{const j=g.reduce((z,oe)=>z+Number(oe.minWidth||80),0),L=k/j;let V=0;g.forEach((z,oe)=>{if(oe===0)return;const re=Math.floor(Number(z.minWidth||80)*L);V+=re,z.realWidth=Number(z.minWidth||80)+re}),g[0].realWidth=Number(g[0].minWidth||80)+k-V}}else this.scrollX.value=!0,g.forEach(k=>{k.realWidth=Number(k.minWidth)});this.bodyWidth.value=Math.max(r,n),this.table.state.resizeState.value.width=this.bodyWidth.value}else i.forEach(k=>{!k.width&&!k.minWidth?k.realWidth=80:k.realWidth=Number(k.width||k.minWidth),r+=k.realWidth}),this.scrollX.value=r>n,this.bodyWidth.value=r;const $=this.store.states.fixedColumns.value;if($.length>0){let k=0;$.forEach(j=>{k+=Number(j.realWidth||j.width)}),this.fixedWidth.value=k}const y=this.store.states.rightFixedColumns.value;if(y.length>0){let k=0;y.forEach(j=>{k+=Number(j.realWidth||j.width)}),this.rightFixedWidth.value=k}this.notifyObservers("columns")}addObserver(t){this.observers.push(t)}removeObserver(t){const n=this.observers.indexOf(t);n!==-1&&this.observers.splice(n,1)}notifyObservers(t){this.observers.forEach(r=>{var i,g;switch(t){case"columns":(i=r.state)==null||i.onColumnsChange(this);break;case"scrollable":(g=r.state)==null||g.onScrollableChange(this);break;default:throw new Error(`Table Layout don't have event ${t}.`)}})}}const{CheckboxGroup:ElCheckboxGroup}=ElCheckbox,_sfc_main$w=defineComponent({name:"ElTableFilterPanel",components:{ElCheckbox,ElCheckboxGroup,ElScrollbar,ElTooltip,ElIcon,ArrowDown:arrow_down_default,ArrowUp:arrow_up_default},directives:{ClickOutside},props:{placement:{type:String,default:"bottom-start"},store:{type:Object},column:{type:Object},upDataColumn:{type:Function}},setup(e){const t=getCurrentInstance(),{t:n}=useLocale(),r=useNamespace("table-filter"),i=t==null?void 0:t.parent;i.filterPanels.value[e.column.id]||(i.filterPanels.value[e.column.id]=t);const g=ref(!1),$=ref(null),y=computed(()=>e.column&&e.column.filters),k=computed({get:()=>{var he;return(((he=e.column)==null?void 0:he.filteredValue)||[])[0]},set:he=>{j.value&&(typeof he!="undefined"&&he!==null?j.value.splice(0,1,he):j.value.splice(0,1))}}),j=computed({get(){return e.column?e.column.filteredValue||[]:[]},set(he){e.column&&e.upDataColumn("filteredValue",he)}}),L=computed(()=>e.column?e.column.filterMultiple:!0),V=he=>he.value===k.value,z=()=>{g.value=!1},oe=he=>{he.stopPropagation(),g.value=!g.value},re=()=>{g.value=!1},ie=()=>{de(j.value),z()},ae=()=>{j.value=[],de(j.value),z()},le=he=>{k.value=he,de(typeof he!="undefined"&&he!==null?j.value:[]),z()},de=he=>{e.store.commit("filterChange",{column:e.column,values:he}),e.store.updateAllSelected()};watch(g,he=>{e.column&&e.upDataColumn("filterOpened",he)},{immediate:!0});const pe=computed(()=>{var he,ue;return(ue=(he=$.value)==null?void 0:he.popperRef)==null?void 0:ue.contentRef});return{tooltipVisible:g,multiple:L,filteredValue:j,filterValue:k,filters:y,handleConfirm:ie,handleReset:ae,handleSelect:le,isActive:V,t:n,ns:r,showFilterPanel:oe,hideFilterPanel:re,popperPaneRef:pe,tooltip:$}}}),_hoisted_1$f={key:0},_hoisted_2$b=["disabled"],_hoisted_3$5=["label","onClick"];function _sfc_render$9(e,t,n,r,i,g){const $=resolveComponent("el-checkbox"),y=resolveComponent("el-checkbox-group"),k=resolveComponent("el-scrollbar"),j=resolveComponent("arrow-up"),L=resolveComponent("arrow-down"),V=resolveComponent("el-icon"),z=resolveComponent("el-tooltip"),oe=resolveDirective("click-outside");return openBlock(),createBlock(z,{ref:"tooltip",visible:e.tooltipVisible,offset:0,placement:e.placement,"show-arrow":!1,"stop-popper-mouse-event":!1,teleported:"",effect:"light",pure:"","popper-class":e.ns.b(),persistent:""},{content:withCtx(()=>[e.multiple?(openBlock(),createElementBlock("div",_hoisted_1$f,[createBaseVNode("div",{class:normalizeClass(e.ns.e("content"))},[createVNode(k,{"wrap-class":e.ns.e("wrap")},{default:withCtx(()=>[createVNode(y,{modelValue:e.filteredValue,"onUpdate:modelValue":t[0]||(t[0]=re=>e.filteredValue=re),class:normalizeClass(e.ns.e("checkbox-group"))},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.filters,re=>(openBlock(),createBlock($,{key:re.value,label:re.value},{default:withCtx(()=>[createTextVNode(toDisplayString$1(re.text),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue","class"])]),_:1},8,["wrap-class"])],2),createBaseVNode("div",{class:normalizeClass(e.ns.e("bottom"))},[createBaseVNode("button",{class:normalizeClass({[e.ns.is("disabled")]:e.filteredValue.length===0}),disabled:e.filteredValue.length===0,type:"button",onClick:t[1]||(t[1]=(...re)=>e.handleConfirm&&e.handleConfirm(...re))},toDisplayString$1(e.t("el.table.confirmFilter")),11,_hoisted_2$b),createBaseVNode("button",{type:"button",onClick:t[2]||(t[2]=(...re)=>e.handleReset&&e.handleReset(...re))},toDisplayString$1(e.t("el.table.resetFilter")),1)],2)])):(openBlock(),createElementBlock("ul",{key:1,class:normalizeClass(e.ns.e("list"))},[createBaseVNode("li",{class:normalizeClass([e.ns.e("list-item"),{[e.ns.is("active")]:e.filterValue===void 0||e.filterValue===null}]),onClick:t[3]||(t[3]=re=>e.handleSelect(null))},toDisplayString$1(e.t("el.table.clearFilter")),3),(openBlock(!0),createElementBlock(Fragment,null,renderList(e.filters,re=>(openBlock(),createElementBlock("li",{key:re.value,class:normalizeClass([e.ns.e("list-item"),e.ns.is("active",e.isActive(re))]),label:re.value,onClick:ie=>e.handleSelect(re.value)},toDisplayString$1(re.text),11,_hoisted_3$5))),128))],2))]),default:withCtx(()=>[withDirectives((openBlock(),createElementBlock("span",{class:normalizeClass([`${e.ns.namespace.value}-table__column-filter-trigger`,`${e.ns.namespace.value}-none-outline`]),onClick:t[4]||(t[4]=(...re)=>e.showFilterPanel&&e.showFilterPanel(...re))},[createVNode(V,null,{default:withCtx(()=>[e.column.filterOpened?(openBlock(),createBlock(j,{key:0})):(openBlock(),createBlock(L,{key:1}))]),_:1})],2)),[[oe,e.hideFilterPanel,e.popperPaneRef]])]),_:1},8,["visible","placement","popper-class"])}var FilterPanel=_export_sfc$1(_sfc_main$w,[["render",_sfc_render$9],["__file","/home/runner/work/element-plus/element-plus/packages/components/table/src/filter-panel.vue"]]);function useLayoutObserver(e){const t=getCurrentInstance();onBeforeMount(()=>{n.value.addObserver(t)}),onMounted(()=>{r(n.value),i(n.value)}),onUpdated(()=>{r(n.value),i(n.value)}),onUnmounted(()=>{n.value.removeObserver(t)});const n=computed(()=>{const g=e.layout;if(!g)throw new Error("Can not find table layout.");return g}),r=g=>{var $;const y=(($=e.vnode.el)==null?void 0:$.querySelectorAll("colgroup > col"))||[];if(!y.length)return;const k=g.getFlattenColumns(),j={};k.forEach(L=>{j[L.id]=L});for(let L=0,V=y.length;L{var $,y;const k=(($=e.vnode.el)==null?void 0:$.querySelectorAll("colgroup > col[name=gutter]"))||[];for(let L=0,V=k.length;L{ie.stopPropagation()},g=(ie,ae)=>{!ae.filters&&ae.sortable?re(ie,ae,!1):ae.filterable&&!ae.sortable&&i(ie),r==null||r.emit("header-click",ae,ie)},$=(ie,ae)=>{r==null||r.emit("header-contextmenu",ae,ie)},y=ref(null),k=ref(!1),j=ref({}),L=(ie,ae)=>{if(!!isClient&&!(ae.children&&ae.children.length>0)&&y.value&&e.border){k.value=!0;const le=r;t("set-drag-visible",!0);const pe=(le==null?void 0:le.vnode.el).getBoundingClientRect().left,he=n.vnode.el.querySelector(`th.${ae.id}`),ue=he.getBoundingClientRect(),_e=ue.left-pe+30;addClass(he,"noclick"),j.value={startMouseLeft:ie.clientX,startLeft:ue.right-pe,startColumnLeft:ue.left-pe,tableLeft:pe};const Ie=le==null?void 0:le.refs.resizeProxy;Ie.style.left=`${j.value.startLeft}px`,document.onselectstart=function(){return!1},document.ondragstart=function(){return!1};const Ce=$e=>{const qe=$e.clientX-j.value.startMouseLeft,ze=j.value.startLeft+qe;Ie.style.left=`${Math.max(_e,ze)}px`},Oe=()=>{if(k.value){const{startColumnLeft:$e,startLeft:qe}=j.value,Ue=Number.parseInt(Ie.style.left,10)-$e;ae.width=ae.realWidth=Ue,le==null||le.emit("header-dragend",ae.width,qe-$e,ae,ie),requestAnimationFrame(()=>{e.store.scheduleLayout(!1,!0)}),document.body.style.cursor="",k.value=!1,y.value=null,j.value={},t("set-drag-visible",!1)}document.removeEventListener("mousemove",Ce),document.removeEventListener("mouseup",Oe),document.onselectstart=null,document.ondragstart=null,setTimeout(()=>{removeClass(he,"noclick")},0)};document.addEventListener("mousemove",Ce),document.addEventListener("mouseup",Oe)}},V=(ie,ae)=>{var le;if(ae.children&&ae.children.length>0)return;const de=(le=ie.target)==null?void 0:le.closest("th");if(!(!ae||!ae.resizable)&&!k.value&&e.border){const pe=de.getBoundingClientRect(),he=document.body.style;pe.width>12&&pe.right-ie.pageX<8?(he.cursor="col-resize",hasClass(de,"is-sortable")&&(de.style.cursor="col-resize"),y.value=ae):k.value||(he.cursor="",hasClass(de,"is-sortable")&&(de.style.cursor="pointer"),y.value=null)}},z=()=>{!isClient||(document.body.style.cursor="")},oe=({order:ie,sortOrders:ae})=>{if(ie==="")return ae[0];const le=ae.indexOf(ie||null);return ae[le>ae.length-2?0:le+1]},re=(ie,ae,le)=>{var de;ie.stopPropagation();const pe=ae.order===le?null:le||oe(ae),he=(de=ie.target)==null?void 0:de.closest("th");if(he&&hasClass(he,"noclick")){removeClass(he,"noclick");return}if(!ae.sortable)return;const ue=e.store.states;let _e=ue.sortProp.value,Ie;const Ce=ue.sortingColumn.value;(Ce!==ae||Ce===ae&&Ce.order===null)&&(Ce&&(Ce.order=null),ue.sortingColumn.value=ae,_e=ae.property),pe?Ie=ae.order=pe:Ie=ae.order=null,ue.sortProp.value=_e,ue.sortOrder.value=Ie,r==null||r.store.commit("changeSortCondition")};return{handleHeaderClick:g,handleHeaderContextMenu:$,handleMouseDown:L,handleMouseMove:V,handleMouseOut:z,handleSortClick:re,handleFilterClick:i}}function useStyle$2(e){const t=inject(TABLE_INJECTION_KEY),n=useNamespace("table");return{getHeaderRowStyle:y=>{const k=t==null?void 0:t.props.headerRowStyle;return typeof k=="function"?k.call(null,{rowIndex:y}):k},getHeaderRowClass:y=>{const k=[],j=t==null?void 0:t.props.headerRowClassName;return typeof j=="string"?k.push(j):typeof j=="function"&&k.push(j.call(null,{rowIndex:y})),k.join(" ")},getHeaderCellStyle:(y,k,j,L)=>{var V;let z=(V=t==null?void 0:t.props.headerCellStyle)!=null?V:{};typeof z=="function"&&(z=z.call(null,{rowIndex:y,columnIndex:k,row:j,column:L}));const oe=getFixedColumnOffset(k,L.fixed,e.store,j);return ensurePosition(oe,"left"),ensurePosition(oe,"right"),Object.assign({},z,oe)},getHeaderCellClass:(y,k,j,L)=>{const V=getFixedColumnsClass(n.b(),k,L.fixed,e.store,j),z=[L.id,L.order,L.headerAlign,L.className,L.labelClassName,...V];L.children||z.push("is-leaf"),L.sortable&&z.push("is-sortable");const oe=t==null?void 0:t.props.headerCellClassName;return typeof oe=="string"?z.push(oe):typeof oe=="function"&&z.push(oe.call(null,{rowIndex:y,columnIndex:k,row:j,column:L})),z.push(n.e("cell")),z.filter(re=>Boolean(re)).join(" ")}}}const getAllColumns=e=>{const t=[];return e.forEach(n=>{n.children?(t.push(n),t.push.apply(t,getAllColumns(n.children))):t.push(n)}),t},convertToRows=e=>{let t=1;const n=(g,$)=>{if($&&(g.level=$.level+1,t{n(k,g),y+=k.colSpan}),g.colSpan=y}else g.colSpan=1};e.forEach(g=>{g.level=1,n(g,void 0)});const r=[];for(let g=0;g{g.children?(g.rowSpan=1,g.children.forEach($=>$.isSubColumn=!0)):g.rowSpan=t-g.level+1,r[g.level-1].push(g)}),r};function useUtils$1(e){const t=inject(TABLE_INJECTION_KEY),n=computed(()=>convertToRows(e.store.states.originColumns.value));return{isGroup:computed(()=>{const g=n.value.length>1;return g&&t&&(t.state.isGroup.value=!0),g}),toggleAllSelection:g=>{g.stopPropagation(),t==null||t.store.commit("toggleAllSelection")},columnRows:n}}var TableHeader=defineComponent({name:"ElTableHeader",components:{ElCheckbox},props:{fixed:{type:String,default:""},store:{required:!0,type:Object},border:Boolean,defaultSort:{type:Object,default:()=>({prop:"",order:""})}},setup(e,{emit:t}){const n=getCurrentInstance(),r=inject(TABLE_INJECTION_KEY),i=useNamespace("table"),g=ref({}),{onColumnsChange:$,onScrollableChange:y}=useLayoutObserver(r);onMounted(async()=>{await nextTick(),await nextTick();const{prop:_e,order:Ie}=e.defaultSort;r==null||r.store.commit("sort",{prop:_e,order:Ie,init:!0})});const{handleHeaderClick:k,handleHeaderContextMenu:j,handleMouseDown:L,handleMouseMove:V,handleMouseOut:z,handleSortClick:oe,handleFilterClick:re}=useEvent(e,t),{getHeaderRowStyle:ie,getHeaderRowClass:ae,getHeaderCellStyle:le,getHeaderCellClass:de}=useStyle$2(e),{isGroup:pe,toggleAllSelection:he,columnRows:ue}=useUtils$1(e);return n.state={onColumnsChange:$,onScrollableChange:y},n.filterPanels=g,{ns:i,filterPanels:g,onColumnsChange:$,onScrollableChange:y,columnRows:ue,getHeaderRowClass:ae,getHeaderRowStyle:ie,getHeaderCellClass:de,getHeaderCellStyle:le,handleHeaderClick:k,handleHeaderContextMenu:j,handleMouseDown:L,handleMouseMove:V,handleMouseOut:z,handleSortClick:oe,handleFilterClick:re,isGroup:pe,toggleAllSelection:he}},render(){const{ns:e,isGroup:t,columnRows:n,getHeaderCellStyle:r,getHeaderCellClass:i,getHeaderRowClass:g,getHeaderRowStyle:$,handleHeaderClick:y,handleHeaderContextMenu:k,handleMouseDown:j,handleMouseMove:L,handleSortClick:V,handleMouseOut:z,store:oe,$parent:re}=this;let ie=1;return h$1("thead",{class:{[e.is("group")]:t}},n.map((ae,le)=>h$1("tr",{class:g(le),key:le,style:$(le)},ae.map((de,pe)=>(de.rowSpan>ie&&(ie=de.rowSpan),h$1("th",{class:i(le,pe,ae,de),colspan:de.colSpan,key:`${de.id}-thead`,rowspan:de.rowSpan,style:r(le,pe,ae,de),onClick:he=>y(he,de),onContextmenu:he=>k(he,de),onMousedown:he=>j(he,de),onMousemove:he=>L(he,de),onMouseout:z},[h$1("div",{class:["cell",de.filteredValue&&de.filteredValue.length>0?"highlight":""]},[de.renderHeader?de.renderHeader({column:de,$index:pe,store:oe,_self:re}):de.label,de.sortable&&h$1("span",{onClick:he=>V(he,de),class:"caret-wrapper"},[h$1("i",{onClick:he=>V(he,de,"ascending"),class:"sort-caret ascending"}),h$1("i",{onClick:he=>V(he,de,"descending"),class:"sort-caret descending"})]),de.filterable&&h$1(FilterPanel,{store:oe,placement:de.filterPlacement||"bottom-start",column:de,upDataColumn:(he,ue)=>{de[he]=ue}})])]))))))}});function useEvents(e){const t=inject(TABLE_INJECTION_KEY),n=ref(""),r=ref(h$1("div")),i=(z,oe,re)=>{var ie;const ae=t,le=getCell(z);let de;const pe=(ie=ae==null?void 0:ae.vnode.el)==null?void 0:ie.dataset.prefix;le&&(de=getColumnByCell({columns:e.store.states.columns.value},le,pe),de&&(ae==null||ae.emit(`cell-${re}`,oe,de,le,z))),ae==null||ae.emit(`row-${re}`,oe,de,z)},g=(z,oe)=>{i(z,oe,"dblclick")},$=(z,oe)=>{e.store.commit("setCurrentRow",oe),i(z,oe,"click")},y=(z,oe)=>{i(z,oe,"contextmenu")},k=debounce$1(z=>{e.store.commit("setHoverRow",z)},30),j=debounce$1(()=>{e.store.commit("setHoverRow",null)},30);return{handleDoubleClick:g,handleClick:$,handleContextMenu:y,handleMouseEnter:k,handleMouseLeave:j,handleCellMouseEnter:(z,oe,re)=>{var ie;const ae=t,le=getCell(z),de=(ie=ae==null?void 0:ae.vnode.el)==null?void 0:ie.dataset.prefix;if(le){const Ie=getColumnByCell({columns:e.store.states.columns.value},le,de),Ce=ae.hoverState={cell:le,column:Ie,row:oe};ae==null||ae.emit("cell-mouse-enter",Ce.row,Ce.column,Ce.cell,z)}if(!re)return;const pe=z.target.querySelector(".cell");if(!(hasClass(pe,`${de}-tooltip`)&&pe.childNodes.length))return;const he=document.createRange();he.setStart(pe,0),he.setEnd(pe,pe.childNodes.length);const ue=Math.round(he.getBoundingClientRect().width),_e=(Number.parseInt(getStyle(pe,"paddingLeft"),10)||0)+(Number.parseInt(getStyle(pe,"paddingRight"),10)||0);(ue+_e>pe.offsetWidth||pe.scrollWidth>pe.offsetWidth)&&createTablePopper(t==null?void 0:t.refs.tableWrapper,le,le.innerText||le.textContent,re)},handleCellMouseLeave:z=>{if(!getCell(z))return;const re=t==null?void 0:t.hoverState;t==null||t.emit("cell-mouse-leave",re==null?void 0:re.row,re==null?void 0:re.column,re==null?void 0:re.cell,z)},tooltipContent:n,tooltipTrigger:r}}function useStyles$1(e){const t=inject(TABLE_INJECTION_KEY),n=useNamespace("table");return{getRowStyle:(j,L)=>{const V=t==null?void 0:t.props.rowStyle;return typeof V=="function"?V.call(null,{row:j,rowIndex:L}):V||null},getRowClass:(j,L)=>{const V=[n.e("row")];(t==null?void 0:t.props.highlightCurrentRow)&&j===e.store.states.currentRow.value&&V.push("current-row"),e.stripe&&L%2===1&&V.push(n.em("row","striped"));const z=t==null?void 0:t.props.rowClassName;return typeof z=="string"?V.push(z):typeof z=="function"&&V.push(z.call(null,{row:j,rowIndex:L})),V},getCellStyle:(j,L,V,z)=>{const oe=t==null?void 0:t.props.cellStyle;let re=oe!=null?oe:{};typeof oe=="function"&&(re=oe.call(null,{rowIndex:j,columnIndex:L,row:V,column:z}));const ie=getFixedColumnOffset(L,e==null?void 0:e.fixed,e.store);return ensurePosition(ie,"left"),ensurePosition(ie,"right"),Object.assign({},re,ie)},getCellClass:(j,L,V,z,oe)=>{const re=getFixedColumnsClass(n.b(),L,e==null?void 0:e.fixed,e.store,void 0,oe),ie=[z.id,z.align,z.className,...re],ae=t==null?void 0:t.props.cellClassName;return typeof ae=="string"?ie.push(ae):typeof ae=="function"&&ie.push(ae.call(null,{rowIndex:j,columnIndex:L,row:V,column:z})),ie.push(n.e("cell")),ie.filter(le=>Boolean(le)).join(" ")},getSpan:(j,L,V,z)=>{let oe=1,re=1;const ie=t==null?void 0:t.props.spanMethod;if(typeof ie=="function"){const ae=ie({row:j,column:L,rowIndex:V,columnIndex:z});Array.isArray(ae)?(oe=ae[0],re=ae[1]):typeof ae=="object"&&(oe=ae.rowspan,re=ae.colspan)}return{rowspan:oe,colspan:re}},getColspanRealWidth:(j,L,V)=>{if(L<1)return j[V].realWidth;const z=j.map(({realWidth:oe,width:re})=>oe||re).slice(V,V+L);return Number(z.reduce((oe,re)=>Number(oe)+Number(re),-1))}}}function useRender$1(e){const t=inject(TABLE_INJECTION_KEY),n=useNamespace("table"),{handleDoubleClick:r,handleClick:i,handleContextMenu:g,handleMouseEnter:$,handleMouseLeave:y,handleCellMouseEnter:k,handleCellMouseLeave:j,tooltipContent:L,tooltipTrigger:V}=useEvents(e),{getRowStyle:z,getRowClass:oe,getCellStyle:re,getCellClass:ie,getSpan:ae,getColspanRealWidth:le}=useStyles$1(e),de=computed(()=>e.store.states.columns.value.findIndex(({type:Ie})=>Ie==="default")),pe=(Ie,Ce)=>{const Oe=t.props.rowKey;return Oe?getRowIdentity(Ie,Oe):Ce},he=(Ie,Ce,Oe,$e=!1)=>{const{tooltipEffect:qe,tooltipOptions:ze,store:Ue}=e,{indent:kt,columns:At}=Ue.states,Pt=oe(Ie,Ce);let jt=!0;return Oe&&(Pt.push(n.em("row",`level-${Oe.level}`)),jt=Oe.display),h$1("tr",{style:[jt?null:{display:"none"},z(Ie,Ce)],class:Pt,key:pe(Ie,Ce),onDblclick:hn=>r(hn,Ie),onClick:hn=>i(hn,Ie),onContextmenu:hn=>g(hn,Ie),onMouseenter:()=>$(Ce),onMouseleave:y},At.value.map((hn,Dt)=>{const{rowspan:wn,colspan:_n}=ae(Ie,hn,Ce,Dt);if(!wn||!_n)return null;const vn={...hn};vn.realWidth=le(At.value,_n,Dt);const Cn={store:e.store,_self:e.context||t,column:vn,row:Ie,$index:Ce,cellIndex:Dt,expanded:$e};Dt===de.value&&Oe&&(Cn.treeNode={indent:Oe.level*kt.value,level:Oe.level},typeof Oe.expanded=="boolean"&&(Cn.treeNode.expanded=Oe.expanded,"loading"in Oe&&(Cn.treeNode.loading=Oe.loading),"noLazyChildren"in Oe&&(Cn.treeNode.noLazyChildren=Oe.noLazyChildren)));const xn=`${Ce},${Dt}`,En=vn.columnKey||vn.rawColumnKey||"",Sn=ue(Dt,hn,Cn),Bn=hn.showOverflowTooltip&&merge$1({effect:qe},ze,hn.showOverflowTooltip);return h$1("td",{style:re(Ce,Dt,Ie,hn),class:ie(Ce,Dt,Ie,hn,_n-1),key:`${En}${xn}`,rowspan:wn,colspan:_n,onMouseenter:An=>k(An,Ie,Bn),onMouseleave:j},[Sn])}))},ue=(Ie,Ce,Oe)=>Ce.renderCell(Oe);return{wrappedRowRender:(Ie,Ce)=>{const Oe=e.store,{isRowExpanded:$e,assertRowKey:qe}=Oe,{treeData:ze,lazyTreeNodeMap:Ue,childrenColumnName:kt,rowKey:At}=Oe.states,Pt=Oe.states.columns.value;if(Pt.some(({type:bn})=>bn==="expand")){const bn=$e(Ie),hn=he(Ie,Ce,void 0,bn),Dt=t.renderExpanded;return bn?Dt?[[hn,h$1("tr",{key:`expanded-row__${hn.key}`},[h$1("td",{colspan:Pt.length,class:`${n.e("cell")} ${n.e("expanded-cell")}`},[Dt({row:Ie,$index:Ce,store:Oe,expanded:bn})])])]]:(console.error("[Element Error]renderExpanded is required."),hn):[[hn]]}else if(Object.keys(ze.value).length){qe();const bn=getRowIdentity(Ie,At.value);let hn=ze.value[bn],Dt=null;hn&&(Dt={expanded:hn.expanded,level:hn.level,display:!0},typeof hn.lazy=="boolean"&&(typeof hn.loaded=="boolean"&&hn.loaded&&(Dt.noLazyChildren=!(hn.children&&hn.children.length)),Dt.loading=hn.loading));const wn=[he(Ie,Ce,Dt)];if(hn){let _n=0;const vn=(xn,En)=>{!(xn&&xn.length&&En)||xn.forEach(Sn=>{const Bn={display:En.display&&En.expanded,level:En.level+1,expanded:!1,noLazyChildren:!1,loading:!1},An=getRowIdentity(Sn,At.value);if(An==null)throw new Error("For nested data item, row-key is required.");if(hn={...ze.value[An]},hn&&(Bn.expanded=hn.expanded,hn.level=hn.level||Bn.level,hn.display=!!(hn.expanded&&Bn.display),typeof hn.lazy=="boolean"&&(typeof hn.loaded=="boolean"&&hn.loaded&&(Bn.noLazyChildren=!(hn.children&&hn.children.length)),Bn.loading=hn.loading)),_n++,wn.push(he(Sn,Ce+_n,Bn)),hn){const Pn=Ue.value[An]||Sn[kt.value];vn(Pn,hn)}})};hn.display=!0;const Cn=Ue.value[bn]||Ie[kt.value];vn(Cn,hn)}return wn}else return he(Ie,Ce,void 0)},tooltipContent:L,tooltipTrigger:V}}const defaultProps$2={store:{required:!0,type:Object},stripe:Boolean,tooltipEffect:String,tooltipOptions:{type:Object},context:{default:()=>({}),type:Object},rowClassName:[String,Function],rowStyle:[Object,Function],fixed:{type:String,default:""},highlight:Boolean};var TableBody=defineComponent({name:"ElTableBody",props:defaultProps$2,setup(e){const t=getCurrentInstance(),n=inject(TABLE_INJECTION_KEY),r=useNamespace("table"),{wrappedRowRender:i,tooltipContent:g,tooltipTrigger:$}=useRender$1(e),{onColumnsChange:y,onScrollableChange:k}=useLayoutObserver(n);return watch(e.store.states.hoverRow,(j,L)=>{if(!e.store.states.isComplex.value||!isClient)return;let V=window.requestAnimationFrame;V||(V=z=>window.setTimeout(z,16)),V(()=>{const z=t==null?void 0:t.vnode.el,oe=Array.from((z==null?void 0:z.children)||[]).filter(ae=>ae==null?void 0:ae.classList.contains(`${r.e("row")}`)),re=oe[L],ie=oe[j];re&&removeClass(re,"hover-row"),ie&&addClass(ie,"hover-row")})}),onUnmounted(()=>{var j;(j=removePopper)==null||j()}),{ns:r,onColumnsChange:y,onScrollableChange:k,wrappedRowRender:i,tooltipContent:g,tooltipTrigger:$}},render(){const{wrappedRowRender:e,store:t}=this,n=t.states.data.value||[];return h$1("tbody",{},[n.reduce((r,i)=>r.concat(e(i,r.length)),[])])}});function hColgroup(e){const t=e.tableLayout==="auto";let n=e.columns||[];t&&n.every(i=>i.width===void 0)&&(n=[]);const r=i=>{const g={key:`${e.tableLayout}_${i.id}`,style:{},name:void 0};return t?g.style={width:`${i.width}px`}:g.name=i.id,g};return h$1("colgroup",{},n.map(i=>h$1("col",r(i))))}hColgroup.props=["columns","tableLayout"];function useMapState(){const e=inject(TABLE_INJECTION_KEY),t=e==null?void 0:e.store,n=computed(()=>t.states.fixedLeafColumnsLength.value),r=computed(()=>t.states.rightFixedColumns.value.length),i=computed(()=>t.states.columns.value.length),g=computed(()=>t.states.fixedColumns.value.length),$=computed(()=>t.states.rightFixedColumns.value.length);return{leftFixedLeafCount:n,rightFixedLeafCount:r,columnsCount:i,leftFixedCount:g,rightFixedCount:$,columns:t.states.columns}}function useStyle$1(e){const{columns:t}=useMapState(),n=useNamespace("table");return{getCellClasses:(g,$)=>{const y=g[$],k=[n.e("cell"),y.id,y.align,y.labelClassName,...getFixedColumnsClass(n.b(),$,y.fixed,e.store)];return y.className&&k.push(y.className),y.children||k.push(n.is("leaf")),k},getCellStyles:(g,$)=>{const y=getFixedColumnOffset($,g.fixed,e.store);return ensurePosition(y,"left"),ensurePosition(y,"right"),y},columns:t}}var TableFooter=defineComponent({name:"ElTableFooter",props:{fixed:{type:String,default:""},store:{required:!0,type:Object},summaryMethod:Function,sumText:String,border:Boolean,defaultSort:{type:Object,default:()=>({prop:"",order:""})}},setup(e){const{getCellClasses:t,getCellStyles:n,columns:r}=useStyle$1(e);return{ns:useNamespace("table"),getCellClasses:t,getCellStyles:n,columns:r}},render(){const{columns:e,getCellStyles:t,getCellClasses:n,summaryMethod:r,sumText:i,ns:g}=this,$=this.store.states.data.value;let y=[];return r?y=r({columns:e,data:$}):e.forEach((k,j)=>{if(j===0){y[j]=i;return}const L=$.map(re=>Number(re[k.property])),V=[];let z=!0;L.forEach(re=>{if(!Number.isNaN(+re)){z=!1;const ie=`${re}`.split(".")[1];V.push(ie?ie.length:0)}});const oe=Math.max.apply(null,V);z?y[j]="":y[j]=L.reduce((re,ie)=>{const ae=Number(ie);return Number.isNaN(+ae)?re:Number.parseFloat((re+ie).toFixed(Math.min(oe,20)))},0)}),h$1("table",{class:g.e("footer"),cellspacing:"0",cellpadding:"0",border:"0"},[hColgroup({columns:e}),h$1("tbody",[h$1("tr",{},[...e.map((k,j)=>h$1("td",{key:j,colspan:k.colSpan,rowspan:k.rowSpan,class:n(e,j),style:t(k,j)},[h$1("div",{class:["cell",k.labelClassName]},[y[j]])]))])])])}});function useUtils(e){return{setCurrentRow:L=>{e.commit("setCurrentRow",L)},getSelectionRows:()=>e.getSelectionRows(),toggleRowSelection:(L,V)=>{e.toggleRowSelection(L,V,!1),e.updateAllSelected()},clearSelection:()=>{e.clearSelection()},clearFilter:L=>{e.clearFilter(L)},toggleAllSelection:()=>{e.commit("toggleAllSelection")},toggleRowExpansion:(L,V)=>{e.toggleRowExpansionAdapter(L,V)},clearSort:()=>{e.clearSort()},sort:(L,V)=>{e.commit("sort",{prop:L,order:V})}}}function useStyle(e,t,n,r){const i=ref(!1),g=ref(null),$=ref(!1),y=bn=>{$.value=bn},k=ref({width:null,height:null,headerHeight:null}),j=ref(!1),L={display:"inline-block",verticalAlign:"middle"},V=ref(),z=ref(0),oe=ref(0),re=ref(0),ie=ref(0);watchEffect(()=>{t.setHeight(e.height)}),watchEffect(()=>{t.setMaxHeight(e.maxHeight)}),watch(()=>[e.currentRowKey,n.states.rowKey],([bn,hn])=>{!unref(hn)||!unref(bn)||n.setCurrentRowKey(`${bn}`)},{immediate:!0}),watch(()=>e.data,bn=>{r.store.commit("setData",bn)},{immediate:!0,deep:!0}),watchEffect(()=>{e.expandRowKeys&&n.setExpandRowKeysAdapter(e.expandRowKeys)});const ae=()=>{r.store.commit("setHoverRow",null),r.hoverState&&(r.hoverState=null)},le=(bn,hn)=>{const{pixelX:Dt,pixelY:wn}=hn;Math.abs(Dt)>=Math.abs(wn)&&(r.refs.bodyWrapper.scrollLeft+=hn.pixelX/5)},de=computed(()=>e.height||e.maxHeight||n.states.fixedColumns.value.length>0||n.states.rightFixedColumns.value.length>0),pe=computed(()=>({width:t.bodyWidth.value?`${t.bodyWidth.value}px`:""})),he=()=>{de.value&&t.updateElsHeight(),t.updateColumnsWidth(),requestAnimationFrame(Ce)};onMounted(async()=>{await nextTick(),n.updateColumns(),Oe(),requestAnimationFrame(he);const bn=r.vnode.el,hn=r.refs.headerWrapper;e.flexible&&bn&&bn.parentElement&&(bn.parentElement.style.minWidth="0"),k.value={width:V.value=bn.offsetWidth,height:bn.offsetHeight,headerHeight:e.showHeader&&hn?hn.offsetHeight:null},n.states.columns.value.forEach(Dt=>{Dt.filteredValue&&Dt.filteredValue.length&&r.store.commit("filterChange",{column:Dt,values:Dt.filteredValue,silent:!0})}),r.$ready=!0});const ue=(bn,hn)=>{if(!bn)return;const Dt=Array.from(bn.classList).filter(wn=>!wn.startsWith("is-scrolling-"));Dt.push(t.scrollX.value?hn:"is-scrolling-none"),bn.className=Dt.join(" ")},_e=bn=>{const{tableWrapper:hn}=r.refs;ue(hn,bn)},Ie=bn=>{const{tableWrapper:hn}=r.refs;return!!(hn&&hn.classList.contains(bn))},Ce=function(){if(!r.refs.scrollBarRef)return;if(!t.scrollX.value){const xn="is-scrolling-none";Ie(xn)||_e(xn);return}const bn=r.refs.scrollBarRef.wrapRef;if(!bn)return;const{scrollLeft:hn,offsetWidth:Dt,scrollWidth:wn}=bn,{headerWrapper:_n,footerWrapper:vn}=r.refs;_n&&(_n.scrollLeft=hn),vn&&(vn.scrollLeft=hn);const Cn=wn-Dt-1;hn>=Cn?_e("is-scrolling-right"):_e(hn===0?"is-scrolling-left":"is-scrolling-middle")},Oe=()=>{!r.refs.scrollBarRef||(r.refs.scrollBarRef.wrapRef&&useEventListener(r.refs.scrollBarRef.wrapRef,"scroll",Ce,{passive:!0}),e.fit?useResizeObserver(r.vnode.el,$e):useEventListener(window,"resize",$e),useResizeObserver(r.refs.bodyWrapper,()=>{var bn,hn;$e(),(hn=(bn=r.refs)==null?void 0:bn.scrollBarRef)==null||hn.update()}))},$e=()=>{var bn,hn,Dt;const wn=r.vnode.el;if(!r.$ready||!wn)return;let _n=!1;const{width:vn,height:Cn,headerHeight:xn}=k.value,En=V.value=wn.offsetWidth;vn!==En&&(_n=!0);const Sn=wn.offsetHeight;(e.height||de.value)&&Cn!==Sn&&(_n=!0);const Bn=e.tableLayout==="fixed"?r.refs.headerWrapper:(bn=r.refs.tableHeaderRef)==null?void 0:bn.$el;e.showHeader&&(Bn==null?void 0:Bn.offsetHeight)!==xn&&(_n=!0),z.value=((hn=r.refs.tableWrapper)==null?void 0:hn.scrollHeight)||0,re.value=(Bn==null?void 0:Bn.scrollHeight)||0,ie.value=((Dt=r.refs.footerWrapper)==null?void 0:Dt.offsetHeight)||0,oe.value=z.value-re.value-ie.value,_n&&(k.value={width:En,height:Sn,headerHeight:e.showHeader&&(Bn==null?void 0:Bn.offsetHeight)||0},he())},qe=useSize(),ze=computed(()=>{const{bodyWidth:bn,scrollY:hn,gutterWidth:Dt}=t;return bn.value?`${bn.value-(hn.value?Dt:0)}px`:""}),Ue=computed(()=>e.maxHeight?"fixed":e.tableLayout),kt=computed(()=>{if(e.data&&e.data.length)return null;let bn="100%";e.height&&oe.value&&(bn=`${oe.value}px`);const hn=V.value;return{width:hn?`${hn}px`:"",height:bn}}),At=computed(()=>e.height?{height:Number.isNaN(Number(e.height))?e.height:`${e.height}px`}:e.maxHeight?{maxHeight:Number.isNaN(Number(e.maxHeight))?e.maxHeight:`${e.maxHeight}px`}:{}),Pt=computed(()=>{if(e.height)return{height:"100%"};if(e.maxHeight){if(Number.isNaN(Number(e.maxHeight)))return{maxHeight:`calc(${e.maxHeight} - ${re.value+ie.value}px)`};{const bn=e.maxHeight;if(z.value>=Number(bn))return{maxHeight:`${z.value-re.value-ie.value}px`}}}return{}});return{isHidden:i,renderExpanded:g,setDragVisible:y,isGroup:j,handleMouseLeave:ae,handleHeaderFooterMousewheel:le,tableSize:qe,emptyBlockStyle:kt,handleFixedMousewheel:(bn,hn)=>{const Dt=r.refs.bodyWrapper;if(Math.abs(hn.spinY)>0){const wn=Dt.scrollTop;hn.pixelY<0&&wn!==0&&bn.preventDefault(),hn.pixelY>0&&Dt.scrollHeight-Dt.clientHeight>wn&&bn.preventDefault(),Dt.scrollTop+=Math.ceil(hn.pixelY/5)}else Dt.scrollLeft+=Math.ceil(hn.pixelX/5)},resizeProxyVisible:$,bodyWidth:ze,resizeState:k,doLayout:he,tableBodyStyles:pe,tableLayout:Ue,scrollbarViewStyle:L,tableInnerStyle:At,scrollbarStyle:Pt}}var defaultProps$1={data:{type:Array,default:()=>[]},size:String,width:[String,Number],height:[String,Number],maxHeight:[String,Number],fit:{type:Boolean,default:!0},stripe:Boolean,border:Boolean,rowKey:[String,Function],showHeader:{type:Boolean,default:!0},showSummary:Boolean,sumText:String,summaryMethod:Function,rowClassName:[String,Function],rowStyle:[Object,Function],cellClassName:[String,Function],cellStyle:[Object,Function],headerRowClassName:[String,Function],headerRowStyle:[Object,Function],headerCellClassName:[String,Function],headerCellStyle:[Object,Function],highlightCurrentRow:Boolean,currentRowKey:[String,Number],emptyText:String,expandRowKeys:Array,defaultExpandAll:Boolean,defaultSort:Object,tooltipEffect:String,tooltipOptions:Object,spanMethod:Function,selectOnIndeterminate:{type:Boolean,default:!0},indent:{type:Number,default:16},treeProps:{type:Object,default:()=>({hasChildren:"hasChildren",children:"children"})},lazy:Boolean,load:Function,style:{type:Object,default:()=>({})},className:{type:String,default:""},tableLayout:{type:String,default:"fixed"},scrollbarAlwaysOn:{type:Boolean,default:!1},flexible:Boolean};const useScrollbar$1=()=>{const e=ref(),t=(g,$)=>{const y=e.value;y&&y.scrollTo(g,$)},n=(g,$)=>{const y=e.value;y&&isNumber$1($)&&["Top","Left"].includes(g)&&y[`setScroll${g}`]($)};return{scrollBarRef:e,scrollTo:t,setScrollTop:g=>n("Top",g),setScrollLeft:g=>n("Left",g)}};let tableIdSeed=1;const _sfc_main$v=defineComponent({name:"ElTable",directives:{Mousewheel},components:{TableHeader,TableBody,TableFooter,ElScrollbar,hColgroup},props:defaultProps$1,emits:["select","select-all","selection-change","cell-mouse-enter","cell-mouse-leave","cell-contextmenu","cell-click","cell-dblclick","row-click","row-contextmenu","row-dblclick","header-click","header-contextmenu","sort-change","filter-change","current-change","header-dragend","expand-change"],setup(e){const{t}=useLocale(),n=useNamespace("table"),r=getCurrentInstance();provide(TABLE_INJECTION_KEY,r);const i=createStore(r,e);r.store=i;const g=new TableLayout({store:r.store,table:r,fit:e.fit,showHeader:e.showHeader});r.layout=g;const $=computed(()=>(i.states.data.value||[]).length===0),{setCurrentRow:y,getSelectionRows:k,toggleRowSelection:j,clearSelection:L,clearFilter:V,toggleAllSelection:z,toggleRowExpansion:oe,clearSort:re,sort:ie}=useUtils(i),{isHidden:ae,renderExpanded:le,setDragVisible:de,isGroup:pe,handleMouseLeave:he,handleHeaderFooterMousewheel:ue,tableSize:_e,emptyBlockStyle:Ie,handleFixedMousewheel:Ce,resizeProxyVisible:Oe,bodyWidth:$e,resizeState:qe,doLayout:ze,tableBodyStyles:Ue,tableLayout:kt,scrollbarViewStyle:At,tableInnerStyle:Pt,scrollbarStyle:jt}=useStyle(e,g,i,r),{scrollBarRef:bn,scrollTo:hn,setScrollLeft:Dt,setScrollTop:wn}=useScrollbar$1(),_n=debounce$1(ze,50),vn=`${n.namespace.value}-table_${tableIdSeed++}`;r.tableId=vn,r.state={isGroup:pe,resizeState:qe,doLayout:ze,debouncedUpdateLayout:_n};const Cn=computed(()=>e.sumText||t("el.table.sumText")),xn=computed(()=>e.emptyText||t("el.table.emptyText"));return{ns:n,layout:g,store:i,handleHeaderFooterMousewheel:ue,handleMouseLeave:he,tableId:vn,tableSize:_e,isHidden:ae,isEmpty:$,renderExpanded:le,resizeProxyVisible:Oe,resizeState:qe,isGroup:pe,bodyWidth:$e,tableBodyStyles:Ue,emptyBlockStyle:Ie,debouncedUpdateLayout:_n,handleFixedMousewheel:Ce,setCurrentRow:y,getSelectionRows:k,toggleRowSelection:j,clearSelection:L,clearFilter:V,toggleAllSelection:z,toggleRowExpansion:oe,clearSort:re,doLayout:ze,sort:ie,t,setDragVisible:de,context:r,computedSumText:Cn,computedEmptyText:xn,tableLayout:kt,scrollbarViewStyle:At,tableInnerStyle:Pt,scrollbarStyle:jt,scrollBarRef:bn,scrollTo:hn,setScrollLeft:Dt,setScrollTop:wn}}}),_hoisted_1$e=["data-prefix"],_hoisted_2$a={ref:"hiddenColumns",class:"hidden-columns"};function _sfc_render$8(e,t,n,r,i,g){const $=resolveComponent("hColgroup"),y=resolveComponent("table-header"),k=resolveComponent("table-body"),j=resolveComponent("el-scrollbar"),L=resolveComponent("table-footer"),V=resolveDirective("mousewheel");return openBlock(),createElementBlock("div",{ref:"tableWrapper",class:normalizeClass([{[e.ns.m("fit")]:e.fit,[e.ns.m("striped")]:e.stripe,[e.ns.m("border")]:e.border||e.isGroup,[e.ns.m("hidden")]:e.isHidden,[e.ns.m("group")]:e.isGroup,[e.ns.m("fluid-height")]:e.maxHeight,[e.ns.m("scrollable-x")]:e.layout.scrollX.value,[e.ns.m("scrollable-y")]:e.layout.scrollY.value,[e.ns.m("enable-row-hover")]:!e.store.states.isComplex.value,[e.ns.m("enable-row-transition")]:(e.store.states.data.value||[]).length!==0&&(e.store.states.data.value||[]).length<100,"has-footer":e.showSummary},e.ns.m(e.tableSize),e.className,e.ns.b(),e.ns.m(`layout-${e.tableLayout}`)]),style:normalizeStyle(e.style),"data-prefix":e.ns.namespace.value,onMouseleave:t[0]||(t[0]=z=>e.handleMouseLeave())},[createBaseVNode("div",{class:normalizeClass(e.ns.e("inner-wrapper")),style:normalizeStyle(e.tableInnerStyle)},[createBaseVNode("div",_hoisted_2$a,[renderSlot(e.$slots,"default")],512),e.showHeader&&e.tableLayout==="fixed"?withDirectives((openBlock(),createElementBlock("div",{key:0,ref:"headerWrapper",class:normalizeClass(e.ns.e("header-wrapper"))},[createBaseVNode("table",{ref:"tableHeader",class:normalizeClass(e.ns.e("header")),style:normalizeStyle(e.tableBodyStyles),border:"0",cellpadding:"0",cellspacing:"0"},[createVNode($,{columns:e.store.states.columns.value,"table-layout":e.tableLayout},null,8,["columns","table-layout"]),createVNode(y,{ref:"tableHeaderRef",border:e.border,"default-sort":e.defaultSort,store:e.store,onSetDragVisible:e.setDragVisible},null,8,["border","default-sort","store","onSetDragVisible"])],6)],2)),[[V,e.handleHeaderFooterMousewheel]]):createCommentVNode("v-if",!0),createBaseVNode("div",{ref:"bodyWrapper",class:normalizeClass(e.ns.e("body-wrapper"))},[createVNode(j,{ref:"scrollBarRef","view-style":e.scrollbarViewStyle,"wrap-style":e.scrollbarStyle,always:e.scrollbarAlwaysOn},{default:withCtx(()=>[createBaseVNode("table",{ref:"tableBody",class:normalizeClass(e.ns.e("body")),cellspacing:"0",cellpadding:"0",border:"0",style:normalizeStyle({width:e.bodyWidth,tableLayout:e.tableLayout})},[createVNode($,{columns:e.store.states.columns.value,"table-layout":e.tableLayout},null,8,["columns","table-layout"]),e.showHeader&&e.tableLayout==="auto"?(openBlock(),createBlock(y,{key:0,ref:"tableHeaderRef",border:e.border,"default-sort":e.defaultSort,store:e.store,onSetDragVisible:e.setDragVisible},null,8,["border","default-sort","store","onSetDragVisible"])):createCommentVNode("v-if",!0),createVNode(k,{context:e.context,highlight:e.highlightCurrentRow,"row-class-name":e.rowClassName,"tooltip-effect":e.tooltipEffect,"tooltip-options":e.tooltipOptions,"row-style":e.rowStyle,store:e.store,stripe:e.stripe},null,8,["context","highlight","row-class-name","tooltip-effect","tooltip-options","row-style","store","stripe"])],6),e.isEmpty?(openBlock(),createElementBlock("div",{key:0,ref:"emptyBlock",style:normalizeStyle(e.emptyBlockStyle),class:normalizeClass(e.ns.e("empty-block"))},[createBaseVNode("span",{class:normalizeClass(e.ns.e("empty-text"))},[renderSlot(e.$slots,"empty",{},()=>[createTextVNode(toDisplayString$1(e.computedEmptyText),1)])],2)],6)):createCommentVNode("v-if",!0),e.$slots.append?(openBlock(),createElementBlock("div",{key:1,ref:"appendWrapper",class:normalizeClass(e.ns.e("append-wrapper"))},[renderSlot(e.$slots,"append")],2)):createCommentVNode("v-if",!0)]),_:3},8,["view-style","wrap-style","always"])],2),e.showSummary?withDirectives((openBlock(),createElementBlock("div",{key:1,ref:"footerWrapper",class:normalizeClass(e.ns.e("footer-wrapper"))},[createVNode(L,{border:e.border,"default-sort":e.defaultSort,store:e.store,style:normalizeStyle(e.tableBodyStyles),"sum-text":e.computedSumText,"summary-method":e.summaryMethod},null,8,["border","default-sort","store","style","sum-text","summary-method"])],2)),[[vShow,!e.isEmpty],[V,e.handleHeaderFooterMousewheel]]):createCommentVNode("v-if",!0),e.border||e.isGroup?(openBlock(),createElementBlock("div",{key:2,class:normalizeClass(e.ns.e("border-left-patch"))},null,2)):createCommentVNode("v-if",!0)],6),withDirectives(createBaseVNode("div",{ref:"resizeProxy",class:normalizeClass(e.ns.e("column-resize-proxy"))},null,2),[[vShow,e.resizeProxyVisible]])],46,_hoisted_1$e)}var Table=_export_sfc$1(_sfc_main$v,[["render",_sfc_render$8],["__file","/home/runner/work/element-plus/element-plus/packages/components/table/src/table.vue"]]);const defaultClassNames={selection:"table-column--selection",expand:"table__expand-column"},cellStarts={default:{order:""},selection:{width:48,minWidth:48,realWidth:48,order:""},expand:{width:48,minWidth:48,realWidth:48,order:""},index:{width:48,minWidth:48,realWidth:48,order:""}},getDefaultClassName=e=>defaultClassNames[e]||"",cellForced={selection:{renderHeader({store:e}){function t(){return e.states.data.value&&e.states.data.value.length===0}return h$1(ElCheckbox,{disabled:t(),size:e.states.tableSize.value,indeterminate:e.states.selection.value.length>0&&!e.states.isAllSelected.value,"onUpdate:modelValue":e.toggleAllSelection,modelValue:e.states.isAllSelected.value})},renderCell({row:e,column:t,store:n,$index:r}){return h$1(ElCheckbox,{disabled:t.selectable?!t.selectable.call(null,e,r):!1,size:n.states.tableSize.value,onChange:()=>{n.commit("rowSelectedChanged",e)},onClick:i=>i.stopPropagation(),modelValue:n.isSelected(e)})},sortable:!1,resizable:!1},index:{renderHeader({column:e}){return e.label||"#"},renderCell({column:e,$index:t}){let n=t+1;const r=e.index;return typeof r=="number"?n=t+r:typeof r=="function"&&(n=r(t)),h$1("div",{},[n])},sortable:!1},expand:{renderHeader({column:e}){return e.label||""},renderCell({row:e,store:t,expanded:n}){const{ns:r}=t,i=[r.e("expand-icon")];return n&&i.push(r.em("expand-icon","expanded")),h$1("div",{class:i,onClick:function($){$.stopPropagation(),t.toggleRowExpansion(e)}},{default:()=>[h$1(ElIcon,null,{default:()=>[h$1(arrow_right_default)]})]})},sortable:!1,resizable:!1}};function defaultRenderCell({row:e,column:t,$index:n}){var r;const i=t.property,g=i&&getProp(e,i).value;return t&&t.formatter?t.formatter(e,t,g,n):((r=g==null?void 0:g.toString)==null?void 0:r.call(g))||""}function treeCellPrefix({row:e,treeNode:t,store:n},r=!1){const{ns:i}=n;if(!t)return r?[h$1("span",{class:i.e("placeholder")})]:null;const g=[],$=function(y){y.stopPropagation(),!t.loading&&n.loadOrToggle(e)};if(t.indent&&g.push(h$1("span",{class:i.e("indent"),style:{"padding-left":`${t.indent}px`}})),typeof t.expanded=="boolean"&&!t.noLazyChildren){const y=[i.e("expand-icon"),t.expanded?i.em("expand-icon","expanded"):""];let k=arrow_right_default;t.loading&&(k=loading_default),g.push(h$1("div",{class:y,onClick:$},{default:()=>[h$1(ElIcon,{class:{[i.is("loading")]:t.loading}},{default:()=>[h$1(k)]})]}))}else g.push(h$1("span",{class:i.e("placeholder")}));return g}function getAllAliases(e,t){return e.reduce((n,r)=>(n[r]=r,n),t)}function useWatcher(e,t){const n=getCurrentInstance();return{registerComplexWatchers:()=>{const g=["fixed"],$={realWidth:"width",realMinWidth:"minWidth"},y=getAllAliases(g,$);Object.keys(y).forEach(k=>{const j=$[k];hasOwn$2(t,j)&&watch(()=>t[j],L=>{let V=L;j==="width"&&k==="realWidth"&&(V=parseWidth(L)),j==="minWidth"&&k==="realMinWidth"&&(V=parseMinWidth(L)),n.columnConfig.value[j]=V,n.columnConfig.value[k]=V;const z=j==="fixed";e.value.store.scheduleLayout(z)})})},registerNormalWatchers:()=>{const g=["label","filters","filterMultiple","sortable","index","formatter","className","labelClassName","showOverflowTooltip"],$={property:"prop",align:"realAlign",headerAlign:"realHeaderAlign"},y=getAllAliases(g,$);Object.keys(y).forEach(k=>{const j=$[k];hasOwn$2(t,j)&&watch(()=>t[j],L=>{n.columnConfig.value[k]=L})})}}}function useRender(e,t,n){const r=getCurrentInstance(),i=ref(""),g=ref(!1),$=ref(),y=ref(),k=useNamespace("table");watchEffect(()=>{$.value=e.align?`is-${e.align}`:null,$.value}),watchEffect(()=>{y.value=e.headerAlign?`is-${e.headerAlign}`:$.value,y.value});const j=computed(()=>{let pe=r.vnode.vParent||r.parent;for(;pe&&!pe.tableId&&!pe.columnId;)pe=pe.vnode.vParent||pe.parent;return pe}),L=computed(()=>{const{store:pe}=r.parent;if(!pe)return!1;const{treeData:he}=pe.states,ue=he.value;return ue&&Object.keys(ue).length>0}),V=ref(parseWidth(e.width)),z=ref(parseMinWidth(e.minWidth)),oe=pe=>(V.value&&(pe.width=V.value),z.value&&(pe.minWidth=z.value),!V.value&&z.value&&(pe.width=void 0),pe.minWidth||(pe.minWidth=80),pe.realWidth=Number(pe.width===void 0?pe.minWidth:pe.width),pe),re=pe=>{const he=pe.type,ue=cellForced[he]||{};Object.keys(ue).forEach(Ie=>{const Ce=ue[Ie];Ie!=="className"&&Ce!==void 0&&(pe[Ie]=Ce)});const _e=getDefaultClassName(he);if(_e){const Ie=`${unref(k.namespace)}-${_e}`;pe.className=pe.className?`${pe.className} ${Ie}`:Ie}return pe},ie=pe=>{Array.isArray(pe)?pe.forEach(ue=>he(ue)):he(pe);function he(ue){var _e;((_e=ue==null?void 0:ue.type)==null?void 0:_e.name)==="ElTableColumn"&&(ue.vParent=r)}};return{columnId:i,realAlign:$,isSubColumn:g,realHeaderAlign:y,columnOrTableParent:j,setColumnWidth:oe,setColumnForcedProps:re,setColumnRenders:pe=>{e.renderHeader||pe.type!=="selection"&&(pe.renderHeader=ue=>{r.columnConfig.value.label;const _e=t.header;return _e?_e(ue):pe.label});let he=pe.renderCell;return pe.type==="expand"?(pe.renderCell=ue=>h$1("div",{class:"cell"},[he(ue)]),n.value.renderExpanded=ue=>t.default?t.default(ue):t.default):(he=he||defaultRenderCell,pe.renderCell=ue=>{let _e=null;if(t.default){const $e=t.default(ue);_e=$e.some(qe=>qe.type!==Comment)?$e:he(ue)}else _e=he(ue);const Ie=L.value&&ue.cellIndex===0&&ue.column.type!=="selection",Ce=treeCellPrefix(ue,Ie),Oe={class:"cell",style:{}};return pe.showOverflowTooltip&&(Oe.class=`${Oe.class} ${unref(k.namespace)}-tooltip`,Oe.style={width:`${(ue.column.realWidth||Number(ue.column.width))-1}px`}),ie(_e),h$1("div",Oe,[Ce,_e])}),pe},getPropsData:(...pe)=>pe.reduce((he,ue)=>(Array.isArray(ue)&&ue.forEach(_e=>{he[_e]=e[_e]}),he),{}),getColumnElIndex:(pe,he)=>Array.prototype.indexOf.call(pe,he)}}var defaultProps={type:{type:String,default:"default"},label:String,className:String,labelClassName:String,property:String,prop:String,width:{type:[String,Number],default:""},minWidth:{type:[String,Number],default:""},renderHeader:Function,sortable:{type:[Boolean,String],default:!1},sortMethod:Function,sortBy:[String,Function,Array],resizable:{type:Boolean,default:!0},columnKey:String,align:String,headerAlign:String,showOverflowTooltip:[Boolean,Object],fixed:[Boolean,String],formatter:Function,selectable:Function,reserveSelection:Boolean,filterMethod:Function,filteredValue:Array,filters:Array,filterPlacement:String,filterMultiple:{type:Boolean,default:!0},index:[Number,Function],sortOrders:{type:Array,default:()=>["ascending","descending",null],validator:e=>e.every(t=>["ascending","descending",null].includes(t))}};let columnIdSeed=1;var ElTableColumn$1=defineComponent({name:"ElTableColumn",components:{ElCheckbox},props:defaultProps,setup(e,{slots:t}){const n=getCurrentInstance(),r=ref({}),i=computed(()=>{let de=n.parent;for(;de&&!de.tableId;)de=de.parent;return de}),{registerNormalWatchers:g,registerComplexWatchers:$}=useWatcher(i,e),{columnId:y,isSubColumn:k,realHeaderAlign:j,columnOrTableParent:L,setColumnWidth:V,setColumnForcedProps:z,setColumnRenders:oe,getPropsData:re,getColumnElIndex:ie,realAlign:ae}=useRender(e,t,i),le=L.value;y.value=`${le.tableId||le.columnId}_column_${columnIdSeed++}`,onBeforeMount(()=>{k.value=i.value!==le;const de=e.type||"default",pe=e.sortable===""?!0:e.sortable,he={...cellStarts[de],id:y.value,type:de,property:e.prop||e.property,align:ae,headerAlign:j,showOverflowTooltip:e.showOverflowTooltip,filterable:e.filters||e.filterMethod,filteredValue:[],filterPlacement:"",isColumnGroup:!1,isSubColumn:!1,filterOpened:!1,sortable:pe,index:e.index,rawColumnKey:n.vnode.key};let Oe=re(["columnKey","label","className","labelClassName","type","renderHeader","formatter","fixed","resizable"],["sortMethod","sortBy","sortOrders"],["selectable","reserveSelection"],["filterMethod","filters","filterMultiple","filterOpened","filteredValue","filterPlacement"]);Oe=mergeOptions(he,Oe),Oe=compose(oe,V,z)(Oe),r.value=Oe,g(),$()}),onMounted(()=>{var de;const pe=L.value,he=k.value?pe.vnode.el.children:(de=pe.refs.hiddenColumns)==null?void 0:de.children,ue=()=>ie(he||[],n.vnode.el);r.value.getColumnIndex=ue,ue()>-1&&i.value.store.commit("insertColumn",r.value,k.value?pe.columnConfig.value:null)}),onBeforeUnmount(()=>{i.value.store.commit("removeColumn",r.value,k.value?le.columnConfig.value:null)}),n.columnId=y.value,n.columnConfig=r},render(){var e,t,n;try{const r=(t=(e=this.$slots).default)==null?void 0:t.call(e,{row:{},column:{},$index:-1}),i=[];if(Array.isArray(r))for(const $ of r)((n=$.type)==null?void 0:n.name)==="ElTableColumn"||$.shapeFlag&2?i.push($):$.type===Fragment&&Array.isArray($.children)&&$.children.forEach(y=>{(y==null?void 0:y.patchFlag)!==1024&&!isString$3(y==null?void 0:y.children)&&i.push(y)});return h$1("div",i)}catch{return h$1("div",[])}}});const ElTable=withInstall(Table,{TableColumn:ElTableColumn$1}),ElTableColumn=withNoopInstall(ElTableColumn$1);var SortOrder=(e=>(e.ASC="asc",e.DESC="desc",e))(SortOrder||{}),Alignment=(e=>(e.CENTER="center",e.RIGHT="right",e))(Alignment||{}),FixedDir=(e=>(e.LEFT="left",e.RIGHT="right",e))(FixedDir||{});const oppositeOrderMap={asc:"desc",desc:"asc"},placeholderSign=Symbol("placeholder"),calcColumnStyle=(e,t,n)=>{var r;const i={flexGrow:0,flexShrink:0,...n?{}:{flexGrow:e.flexGrow||0,flexShrink:e.flexShrink||1}};n||(i.flexShrink=1);const g={...(r=e.style)!=null?r:{},...i,flexBasis:"auto",width:e.width};return t||(e.maxWidth&&(g.maxWidth=e.maxWidth),e.minWidth&&(g.minWidth=e.minWidth)),g};function useColumns(e,t,n){const r=computed(()=>unref(t).filter(ie=>!ie.hidden)),i=computed(()=>unref(r).filter(ie=>ie.fixed==="left"||ie.fixed===!0)),g=computed(()=>unref(r).filter(ie=>ie.fixed==="right")),$=computed(()=>unref(r).filter(ie=>!ie.fixed)),y=computed(()=>{const ie=[];return unref(i).forEach(ae=>{ie.push({...ae,placeholderSign})}),unref($).forEach(ae=>{ie.push(ae)}),unref(g).forEach(ae=>{ie.push({...ae,placeholderSign})}),ie}),k=computed(()=>unref(i).length||unref(g).length),j=computed(()=>unref(t).reduce((ae,le)=>(ae[le.key]=calcColumnStyle(le,unref(n),e.fixed),ae),{})),L=computed(()=>unref(r).reduce((ie,ae)=>ie+ae.width,0)),V=ie=>unref(t).find(ae=>ae.key===ie),z=ie=>unref(j)[ie],oe=(ie,ae)=>{ie.width=ae};function re(ie){var ae;const{key:le}=ie.currentTarget.dataset;if(!le)return;const{sortState:de,sortBy:pe}=e;let he=SortOrder.ASC;isObject$4(de)?he=oppositeOrderMap[de[le]]:he=oppositeOrderMap[pe.order],(ae=e.onColumnSort)==null||ae.call(e,{column:V(le),key:le,order:he})}return{columns:t,columnsStyles:j,columnsTotalWidth:L,fixedColumnsOnLeft:i,fixedColumnsOnRight:g,hasFixedColumns:k,mainColumns:y,normalColumns:$,visibleColumns:r,getColumn:V,getColumnStyle:z,updateColumnWidth:oe,onColumnSorted:re}}const useScrollbar=(e,{mainTableRef:t,leftTableRef:n,rightTableRef:r,onMaybeEndReached:i})=>{const g=ref({scrollLeft:0,scrollTop:0});function $(oe){var re,ie,ae;const{scrollTop:le}=oe;(re=t.value)==null||re.scrollTo(oe),(ie=n.value)==null||ie.scrollToTop(le),(ae=r.value)==null||ae.scrollToTop(le)}function y(oe){g.value=oe,$(oe)}function k(oe){g.value.scrollTop=oe,$(unref(g))}function j(oe){var re,ie;g.value.scrollLeft=oe,(ie=(re=t.value)==null?void 0:re.scrollTo)==null||ie.call(re,unref(g))}function L(oe){var re;y(oe),(re=e.onScroll)==null||re.call(e,oe)}function V({scrollTop:oe}){const{scrollTop:re}=unref(g);oe!==re&&k(oe)}function z(oe,re="auto"){var ie;(ie=t.value)==null||ie.scrollToRow(oe,re)}return watch(()=>unref(g).scrollTop,(oe,re)=>{oe>re&&i()}),{scrollPos:g,scrollTo:y,scrollToLeft:j,scrollToTop:k,scrollToRow:z,onScroll:L,onVerticalScroll:V}},useRow=(e,{mainTableRef:t,leftTableRef:n,rightTableRef:r,onMaybeEndReached:i})=>{const g=getCurrentInstance(),{emit:$}=g,y=shallowRef(!1),k=shallowRef(null),j=ref(e.defaultExpandedRowKeys||[]),L=ref(-1),V=shallowRef(null),z=ref({}),oe=ref({}),re=shallowRef({}),ie=shallowRef({}),ae=shallowRef({}),le=computed(()=>isNumber$1(e.estimatedRowHeight));function de(Oe){var $e;($e=e.onRowsRendered)==null||$e.call(e,Oe),Oe.rowCacheEnd>unref(L)&&(L.value=Oe.rowCacheEnd)}function pe({hovered:Oe,rowKey:$e}){k.value=Oe?$e:null}function he({expanded:Oe,rowData:$e,rowIndex:qe,rowKey:ze}){var Ue,kt;const At=[...unref(j)],Pt=At.indexOf(ze);Oe?Pt===-1&&At.push(ze):Pt>-1&&At.splice(Pt,1),j.value=At,$("update:expandedRowKeys",At),(Ue=e.onRowExpand)==null||Ue.call(e,{expanded:Oe,rowData:$e,rowIndex:qe,rowKey:ze}),(kt=e.onExpandedRowsChange)==null||kt.call(e,At)}const ue=debounce$1(()=>{var Oe,$e,qe,ze;y.value=!0,z.value={...unref(z),...unref(oe)},_e(unref(V),!1),oe.value={},V.value=null,(Oe=t.value)==null||Oe.forceUpdate(),($e=n.value)==null||$e.forceUpdate(),(qe=r.value)==null||qe.forceUpdate(),(ze=g.proxy)==null||ze.$forceUpdate(),y.value=!1},0);function _e(Oe,$e=!1){!unref(le)||[t,n,r].forEach(qe=>{const ze=unref(qe);ze&&ze.resetAfterRowIndex(Oe,$e)})}function Ie(Oe,$e,qe){const ze=unref(V);(ze===null||ze>qe)&&(V.value=qe),oe.value[Oe]=$e}function Ce({rowKey:Oe,height:$e,rowIndex:qe},ze){ze?ze===FixedDir.RIGHT?ae.value[Oe]=$e:re.value[Oe]=$e:ie.value[Oe]=$e;const Ue=Math.max(...[re,ae,ie].map(kt=>kt.value[Oe]||0));unref(z)[Oe]!==Ue&&(Ie(Oe,Ue,qe),ue())}return watch(L,()=>i()),{hoveringRowKey:k,expandedRowKeys:j,lastRenderedRowIndex:L,isDynamic:le,isResetting:y,rowHeights:z,resetAfterIndex:_e,onRowExpanded:he,onRowHovered:pe,onRowsRendered:de,onRowHeightChange:Ce}},useData=(e,{expandedRowKeys:t,lastRenderedRowIndex:n,resetAfterIndex:r})=>{const i=ref({}),g=computed(()=>{const y={},{data:k,rowKey:j}=e,L=unref(t);if(!L||!L.length)return k;const V=[],z=new Set;L.forEach(re=>z.add(re));let oe=k.slice();for(oe.forEach(re=>y[re[j]]=0);oe.length>0;){const re=oe.shift();V.push(re),z.has(re[j])&&Array.isArray(re.children)&&re.children.length>0&&(oe=[...re.children,...oe],re.children.forEach(ie=>y[ie[j]]=y[re[j]]+1))}return i.value=y,V}),$=computed(()=>{const{data:y,expandColumnKey:k}=e;return k?unref(g):y});return watch($,(y,k)=>{y!==k&&(n.value=-1,r(0,!0))}),{data:$,depthMap:i}},sumReducer=(e,t)=>e+t,sum=e=>isArray$4(e)?e.reduce(sumReducer,0):e,tryCall=(e,t,n={})=>isFunction$4(e)?e(t):e!=null?e:n,enforceUnit=e=>(["width","maxWidth","minWidth","height"].forEach(t=>{e[t]=addUnit(e[t])}),e),componentToSlot=e=>isVNode(e)?t=>h$1(e,t):e,useStyles=(e,{columnsTotalWidth:t,data:n,fixedColumnsOnLeft:r,fixedColumnsOnRight:i})=>{const g=computed(()=>{const{fixed:pe,width:he,vScrollbarSize:ue}=e,_e=he-ue;return pe?Math.max(Math.round(unref(t)),_e):_e}),$=computed(()=>unref(g)+(e.fixed?e.vScrollbarSize:0)),y=computed(()=>{const{height:pe=0,maxHeight:he=0,footerHeight:ue,hScrollbarSize:_e}=e;if(he>0){const Ie=unref(re),Ce=unref(k),$e=unref(oe)+Ie+Ce+_e;return Math.min($e,he-ue)}return pe-ue}),k=computed(()=>{const{rowHeight:pe,estimatedRowHeight:he}=e,ue=unref(n);return isNumber$1(he)?ue.length*he:ue.length*pe}),j=computed(()=>{const{maxHeight:pe}=e,he=unref(y);if(isNumber$1(pe)&&pe>0)return he;const ue=unref(k)+unref(oe)+unref(re);return Math.min(he,ue)}),L=pe=>pe.width,V=computed(()=>sum(unref(r).map(L))),z=computed(()=>sum(unref(i).map(L))),oe=computed(()=>sum(e.headerHeight)),re=computed(()=>{var pe;return(((pe=e.fixedData)==null?void 0:pe.length)||0)*e.rowHeight}),ie=computed(()=>unref(y)-unref(oe)-unref(re)),ae=computed(()=>{const{style:pe={},height:he,width:ue}=e;return enforceUnit({...pe,height:he,width:ue})}),le=computed(()=>enforceUnit({height:e.footerHeight})),de=computed(()=>({top:addUnit(unref(oe)),bottom:addUnit(e.footerHeight),width:addUnit(e.width)}));return{bodyWidth:g,fixedTableHeight:j,mainTableHeight:y,leftTableWidth:V,rightTableWidth:z,headerWidth:$,rowsHeight:k,windowHeight:ie,footerHeight:le,emptyStyle:de,rootStyle:ae,headerHeight:oe}},useAutoResize=e=>{const t=ref(),n=ref(0),r=ref(0);let i;return onMounted(()=>{i=useResizeObserver(t,([g])=>{const{width:$,height:y}=g.contentRect,{paddingLeft:k,paddingRight:j,paddingTop:L,paddingBottom:V}=getComputedStyle(g.target),z=Number.parseInt(k)||0,oe=Number.parseInt(j)||0,re=Number.parseInt(L)||0,ie=Number.parseInt(V)||0;n.value=$-z-oe,r.value=y-re-ie}).stop}),onBeforeUnmount(()=>{i==null||i()}),watch([n,r],([g,$])=>{var y;(y=e.onResize)==null||y.call(e,{width:g,height:$})}),{sizer:t,width:n,height:r}};function useTable(e){const t=ref(),n=ref(),r=ref(),{columns:i,columnsStyles:g,columnsTotalWidth:$,fixedColumnsOnLeft:y,fixedColumnsOnRight:k,hasFixedColumns:j,mainColumns:L,onColumnSorted:V}=useColumns(e,toRef(e,"columns"),toRef(e,"fixed")),{scrollTo:z,scrollToLeft:oe,scrollToTop:re,scrollToRow:ie,onScroll:ae,onVerticalScroll:le,scrollPos:de}=useScrollbar(e,{mainTableRef:t,leftTableRef:n,rightTableRef:r,onMaybeEndReached:Fn}),{expandedRowKeys:pe,hoveringRowKey:he,lastRenderedRowIndex:ue,isDynamic:_e,isResetting:Ie,rowHeights:Ce,resetAfterIndex:Oe,onRowExpanded:$e,onRowHeightChange:qe,onRowHovered:ze,onRowsRendered:Ue}=useRow(e,{mainTableRef:t,leftTableRef:n,rightTableRef:r,onMaybeEndReached:Fn}),{data:kt,depthMap:At}=useData(e,{expandedRowKeys:pe,lastRenderedRowIndex:ue,resetAfterIndex:Oe}),{bodyWidth:Pt,fixedTableHeight:jt,mainTableHeight:bn,leftTableWidth:hn,rightTableWidth:Dt,headerWidth:wn,rowsHeight:_n,windowHeight:vn,footerHeight:Cn,emptyStyle:xn,rootStyle:En,headerHeight:Sn}=useStyles(e,{columnsTotalWidth:$,data:kt,fixedColumnsOnLeft:y,fixedColumnsOnRight:k}),Bn=shallowRef(!1),An=ref(),Pn=computed(()=>{const jn=unref(kt).length===0;return isArray$4(e.fixedData)?e.fixedData.length===0&&jn:jn});function Mn(jn){const{estimatedRowHeight:zn,rowHeight:Jn,rowKey:io}=e;return zn?unref(Ce)[unref(kt)[jn][io]]||zn:Jn}function Fn(){const{onEndReached:jn}=e;if(!jn)return;const{scrollTop:zn}=unref(de),Jn=unref(_n),io=unref(vn),eo=Jn-(zn+io)+e.hScrollbarSize;unref(ue)>=0&&Jn===zn+unref(bn)-unref(Sn)&&jn(eo)}return watch(()=>e.expandedRowKeys,jn=>pe.value=jn,{deep:!0}),{columns:i,containerRef:An,mainTableRef:t,leftTableRef:n,rightTableRef:r,isDynamic:_e,isResetting:Ie,isScrolling:Bn,hoveringRowKey:he,hasFixedColumns:j,columnsStyles:g,columnsTotalWidth:$,data:kt,expandedRowKeys:pe,depthMap:At,fixedColumnsOnLeft:y,fixedColumnsOnRight:k,mainColumns:L,bodyWidth:Pt,emptyStyle:xn,rootStyle:En,headerWidth:wn,footerHeight:Cn,mainTableHeight:bn,fixedTableHeight:jt,leftTableWidth:hn,rightTableWidth:Dt,showEmpty:Pn,getRowHeight:Mn,onColumnSorted:V,onRowHovered:ze,onRowExpanded:$e,onRowsRendered:Ue,onRowHeightChange:qe,scrollTo:z,scrollToLeft:oe,scrollToTop:re,scrollToRow:ie,onScroll:ae,onVerticalScroll:le}}const TableV2InjectionKey=Symbol("tableV2"),classType=String,columns={type:definePropType(Array),required:!0},fixedDataType={type:definePropType(Array)},dataType={...fixedDataType,required:!0},expandColumnKey=String,expandKeys={type:definePropType(Array),default:()=>mutable([])},requiredNumber={type:Number,required:!0},rowKey={type:definePropType([String,Number,Symbol]),default:"id"},styleType={type:definePropType(Object)},tableV2RowProps=buildProps({class:String,columns,columnsStyles:{type:definePropType(Object),required:!0},depth:Number,expandColumnKey,estimatedRowHeight:{...virtualizedGridProps.estimatedRowHeight,default:void 0},isScrolling:Boolean,onRowExpand:{type:definePropType(Function)},onRowHover:{type:definePropType(Function)},onRowHeightChange:{type:definePropType(Function)},rowData:{type:definePropType(Object),required:!0},rowEventHandlers:{type:definePropType(Object)},rowIndex:{type:Number,required:!0},rowKey,style:{type:definePropType(Object)}}),requiredNumberType={type:Number,required:!0},tableV2HeaderProps=buildProps({class:String,columns,fixedHeaderData:{type:definePropType(Array)},headerData:{type:definePropType(Array),required:!0},headerHeight:{type:definePropType([Number,Array]),default:50},rowWidth:requiredNumberType,rowHeight:{type:Number,default:50},height:requiredNumberType,width:requiredNumberType}),tableV2GridProps=buildProps({columns,data:dataType,fixedData:fixedDataType,estimatedRowHeight:tableV2RowProps.estimatedRowHeight,width:requiredNumber,height:requiredNumber,headerWidth:requiredNumber,headerHeight:tableV2HeaderProps.headerHeight,bodyWidth:requiredNumber,rowHeight:requiredNumber,cache:virtualizedListProps.cache,useIsScrolling:Boolean,scrollbarAlwaysOn:virtualizedGridProps.scrollbarAlwaysOn,scrollbarStartGap:virtualizedGridProps.scrollbarStartGap,scrollbarEndGap:virtualizedGridProps.scrollbarEndGap,class:classType,style:styleType,containerStyle:styleType,getRowHeight:{type:definePropType(Function),required:!0},rowKey:tableV2RowProps.rowKey,onRowsRendered:{type:definePropType(Function)},onScroll:{type:definePropType(Function)}}),tableV2Props=buildProps({cache:tableV2GridProps.cache,estimatedRowHeight:tableV2RowProps.estimatedRowHeight,rowKey,headerClass:{type:definePropType([String,Function])},headerProps:{type:definePropType([Object,Function])},headerCellProps:{type:definePropType([Object,Function])},headerHeight:tableV2HeaderProps.headerHeight,footerHeight:{type:Number,default:0},rowClass:{type:definePropType([String,Function])},rowProps:{type:definePropType([Object,Function])},rowHeight:{type:Number,default:50},cellProps:{type:definePropType([Object,Function])},columns,data:dataType,dataGetter:{type:definePropType(Function)},fixedData:fixedDataType,expandColumnKey:tableV2RowProps.expandColumnKey,expandedRowKeys:expandKeys,defaultExpandedRowKeys:expandKeys,class:classType,fixed:Boolean,style:{type:definePropType(Object)},width:requiredNumber,height:requiredNumber,maxHeight:Number,useIsScrolling:Boolean,indentSize:{type:Number,default:12},iconSize:{type:Number,default:12},hScrollbarSize:virtualizedGridProps.hScrollbarSize,vScrollbarSize:virtualizedGridProps.vScrollbarSize,scrollbarAlwaysOn:virtualizedScrollbarProps.alwaysOn,sortBy:{type:definePropType(Object),default:()=>({})},sortState:{type:definePropType(Object),default:void 0},onColumnSort:{type:definePropType(Function)},onExpandedRowsChange:{type:definePropType(Function)},onEndReached:{type:definePropType(Function)},onRowExpand:tableV2RowProps.onRowExpand,onScroll:tableV2GridProps.onScroll,onRowsRendered:tableV2GridProps.onRowsRendered,rowEventHandlers:tableV2RowProps.rowEventHandlers}),TableV2Cell=(e,{slots:t})=>{var n;const{cellData:r,style:i}=e,g=((n=r==null?void 0:r.toString)==null?void 0:n.call(r))||"";return createVNode("div",{class:e.class,title:g,style:i},[t.default?t.default(e):g])};TableV2Cell.displayName="ElTableV2Cell";TableV2Cell.inheritAttrs=!1;const HeaderCell=(e,{slots:t})=>{var n,r;return t.default?t.default(e):createVNode("div",{class:e.class,title:(n=e.column)==null?void 0:n.title},[(r=e.column)==null?void 0:r.title])};HeaderCell.displayName="ElTableV2HeaderCell";HeaderCell.inheritAttrs=!1;const tableV2HeaderRowProps=buildProps({class:String,columns,columnsStyles:{type:definePropType(Object),required:!0},headerIndex:Number,style:{type:definePropType(Object)}}),TableV2HeaderRow=defineComponent({name:"ElTableV2HeaderRow",props:tableV2HeaderRowProps,setup(e,{slots:t}){return()=>{const{columns:n,columnsStyles:r,headerIndex:i,style:g}=e;let $=n.map((y,k)=>t.cell({columns:n,column:y,columnIndex:k,headerIndex:i,style:r[y.key]}));return t.header&&($=t.header({cells:$.map(y=>isArray$4(y)&&y.length===1?y[0]:y),columns:n,headerIndex:i})),createVNode("div",{class:e.class,style:g},[$])}}}),COMPONENT_NAME$7="ElTableV2Header",TableV2Header=defineComponent({name:COMPONENT_NAME$7,props:tableV2HeaderProps,setup(e,{slots:t,expose:n}){const r=useNamespace("table-v2"),i=ref(),g=computed(()=>enforceUnit({width:e.width,height:e.height})),$=computed(()=>enforceUnit({width:e.rowWidth,height:e.height})),y=computed(()=>castArray$1(unref(e.headerHeight))),k=V=>{const z=unref(i);nextTick(()=>{z!=null&&z.scroll&&z.scroll({left:V})})},j=()=>{const V=r.e("fixed-header-row"),{columns:z,fixedHeaderData:oe,rowHeight:re}=e;return oe==null?void 0:oe.map((ie,ae)=>{var le;const de=enforceUnit({height:re,width:"100%"});return(le=t.fixed)==null?void 0:le.call(t,{class:V,columns:z,rowData:ie,rowIndex:-(ae+1),style:de})})},L=()=>{const V=r.e("dynamic-header-row"),{columns:z}=e;return unref(y).map((oe,re)=>{var ie;const ae=enforceUnit({width:"100%",height:oe});return(ie=t.dynamic)==null?void 0:ie.call(t,{class:V,columns:z,headerIndex:re,style:ae})})};return n({scrollToLeft:k}),()=>{if(!(e.height<=0))return createVNode("div",{ref:i,class:e.class,style:unref(g)},[createVNode("div",{style:unref($),class:r.e("header")},[L(),j()])])}}}),useTableRow=e=>{const{isScrolling:t}=inject(TableV2InjectionKey),n=ref(!1),r=ref(),i=computed(()=>isNumber$1(e.estimatedRowHeight)&&e.rowIndex>=0),g=(k=!1)=>{const j=unref(r);if(!j)return;const{columns:L,onRowHeightChange:V,rowKey:z,rowIndex:oe,style:re}=e,{height:ie}=j.getBoundingClientRect();n.value=!0,nextTick(()=>{if(k||ie!==Number.parseInt(re.height)){const ae=L[0],le=(ae==null?void 0:ae.placeholderSign)===placeholderSign;V==null||V({rowKey:z,height:ie,rowIndex:oe},ae&&!le&&ae.fixed)}})},$=computed(()=>{const{rowData:k,rowIndex:j,rowKey:L,onRowHover:V}=e,z=e.rowEventHandlers||{},oe={};return Object.entries(z).forEach(([re,ie])=>{isFunction$4(ie)&&(oe[re]=ae=>{ie({event:ae,rowData:k,rowIndex:j,rowKey:L})})}),V&&[{name:"onMouseleave",hovered:!1},{name:"onMouseenter",hovered:!0}].forEach(({name:re,hovered:ie})=>{const ae=oe[re];oe[re]=le=>{V({event:le,hovered:ie,rowData:k,rowIndex:j,rowKey:L}),ae==null||ae(le)}}),oe}),y=k=>{const{onRowExpand:j,rowData:L,rowIndex:V,rowKey:z}=e;j==null||j({expanded:k,rowData:L,rowIndex:V,rowKey:z})};return onMounted(()=>{unref(i)&&g(!0)}),{isScrolling:t,measurable:i,measured:n,rowRef:r,eventHandlers:$,onExpand:y}},COMPONENT_NAME$6="ElTableV2TableRow",TableV2Row=defineComponent({name:COMPONENT_NAME$6,props:tableV2RowProps,setup(e,{expose:t,slots:n,attrs:r}){const{eventHandlers:i,isScrolling:g,measurable:$,measured:y,rowRef:k,onExpand:j}=useTableRow(e);return t({onExpand:j}),()=>{const{columns:L,columnsStyles:V,expandColumnKey:z,depth:oe,rowData:re,rowIndex:ie,style:ae}=e;let le=L.map((de,pe)=>{const he=isArray$4(re.children)&&re.children.length>0&&de.key===z;return n.cell({column:de,columns:L,columnIndex:pe,depth:oe,style:V[de.key],rowData:re,rowIndex:ie,isScrolling:unref(g),expandIconProps:he?{rowData:re,rowIndex:ie,onExpand:j}:void 0})});if(n.row&&(le=n.row({cells:le.map(de=>isArray$4(de)&&de.length===1?de[0]:de),style:ae,columns:L,depth:oe,rowData:re,rowIndex:ie,isScrolling:unref(g)})),unref($)){const{height:de,...pe}=ae||{},he=unref(y);return createVNode("div",mergeProps({ref:k,class:e.class,style:he?ae:pe},r,unref(i)),[le])}return createVNode("div",mergeProps(r,{ref:k,class:e.class,style:ae},unref(i)),[le])}}}),SortIcon=e=>{const{sortOrder:t}=e;return createVNode(ElIcon,{size:14,class:e.class},{default:()=>[t===SortOrder.ASC?createVNode(sort_up_default,null,null):createVNode(sort_down_default,null,null)]})},ExpandIcon=e=>{const{expanded:t,expandable:n,onExpand:r,style:i,size:g}=e,$={onClick:n?()=>r(!t):void 0,class:e.class};return createVNode(ElIcon,mergeProps($,{size:g,style:i}),{default:()=>[createVNode(arrow_right_default,null,null)]})},COMPONENT_NAME$5="ElTableV2Grid",useTableGrid=e=>{const t=ref(),n=ref(),r=computed(()=>{const{data:ie,rowHeight:ae,estimatedRowHeight:le}=e;if(!le)return ie.length*ae}),i=computed(()=>{const{fixedData:ie,rowHeight:ae}=e;return((ie==null?void 0:ie.length)||0)*ae}),g=computed(()=>sum(e.headerHeight)),$=computed(()=>{const{height:ie}=e;return Math.max(0,ie-unref(g)-unref(i))}),y=computed(()=>unref(g)+unref(i)>0),k=({data:ie,rowIndex:ae})=>ie[ae][e.rowKey];function j({rowCacheStart:ie,rowCacheEnd:ae,rowVisibleStart:le,rowVisibleEnd:de}){var pe;(pe=e.onRowsRendered)==null||pe.call(e,{rowCacheStart:ie,rowCacheEnd:ae,rowVisibleStart:le,rowVisibleEnd:de})}function L(ie,ae){var le;(le=n.value)==null||le.resetAfterRowIndex(ie,ae)}function V(ie,ae){const le=unref(t),de=unref(n);!le||!de||(isObject$4(ie)?(le.scrollToLeft(ie.scrollLeft),de.scrollTo(ie)):(le.scrollToLeft(ie),de.scrollTo({scrollLeft:ie,scrollTop:ae})))}function z(ie){var ae;(ae=unref(n))==null||ae.scrollTo({scrollTop:ie})}function oe(ie,ae){var le;(le=unref(n))==null||le.scrollToItem(ie,1,ae)}function re(){var ie,ae;(ie=unref(n))==null||ie.$forceUpdate(),(ae=unref(t))==null||ae.$forceUpdate()}return{bodyRef:n,forceUpdate:re,fixedRowHeight:i,gridHeight:$,hasHeader:y,headerHeight:g,headerRef:t,totalHeight:r,itemKey:k,onItemRendered:j,resetAfterRowIndex:L,scrollTo:V,scrollToTop:z,scrollToRow:oe}},TableGrid=defineComponent({name:COMPONENT_NAME$5,props:tableV2GridProps,setup(e,{slots:t,expose:n}){const{ns:r}=inject(TableV2InjectionKey),{bodyRef:i,fixedRowHeight:g,gridHeight:$,hasHeader:y,headerRef:k,headerHeight:j,totalHeight:L,forceUpdate:V,itemKey:z,onItemRendered:oe,resetAfterRowIndex:re,scrollTo:ie,scrollToTop:ae,scrollToRow:le}=useTableGrid(e);n({forceUpdate:V,totalHeight:L,scrollTo:ie,scrollToTop:ae,scrollToRow:le,resetAfterRowIndex:re});const de=()=>e.bodyWidth;return()=>{const{cache:pe,columns:he,data:ue,fixedData:_e,useIsScrolling:Ie,scrollbarAlwaysOn:Ce,scrollbarEndGap:Oe,scrollbarStartGap:$e,style:qe,rowHeight:ze,bodyWidth:Ue,estimatedRowHeight:kt,headerWidth:At,height:Pt,width:jt,getRowHeight:bn,onScroll:hn}=e,Dt=isNumber$1(kt),wn=Dt?DynamicSizeGrid:FixedSizeGrid,_n=unref(j);return createVNode("div",{role:"table",class:[r.e("table"),e.class],style:qe},[createVNode(wn,{ref:i,data:ue,useIsScrolling:Ie,itemKey:z,columnCache:0,columnWidth:Dt?de:Ue,totalColumn:1,totalRow:ue.length,rowCache:pe,rowHeight:Dt?bn:ze,width:jt,height:unref($),class:r.e("body"),scrollbarStartGap:$e,scrollbarEndGap:Oe,scrollbarAlwaysOn:Ce,onScroll:hn,onItemRendered:oe,perfMode:!1},{default:vn=>{var Cn;const xn=ue[vn.rowIndex];return(Cn=t.row)==null?void 0:Cn.call(t,{...vn,columns:he,rowData:xn})}}),unref(y)&&createVNode(TableV2Header,{ref:k,class:r.e("header-wrapper"),columns:he,headerData:ue,headerHeight:e.headerHeight,fixedHeaderData:_e,rowWidth:At,rowHeight:ze,width:jt,height:Math.min(_n+unref(g),Pt)},{dynamic:t.header,fixed:t.row})])}}});function _isSlot$5(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!isVNode(e)}const MainTable=(e,{slots:t})=>{const{mainTableRef:n,...r}=e;return createVNode(TableGrid,mergeProps({ref:n},r),_isSlot$5(t)?t:{default:()=>[t]})};function _isSlot$4(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!isVNode(e)}const LeftTable$1=(e,{slots:t})=>{if(!e.columns.length)return;const{leftTableRef:n,...r}=e;return createVNode(TableGrid,mergeProps({ref:n},r),_isSlot$4(t)?t:{default:()=>[t]})};function _isSlot$3(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!isVNode(e)}const LeftTable=(e,{slots:t})=>{if(!e.columns.length)return;const{rightTableRef:n,...r}=e;return createVNode(TableGrid,mergeProps({ref:n},r),_isSlot$3(t)?t:{default:()=>[t]})};function _isSlot$2(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!isVNode(e)}const RowRenderer=(e,{slots:t})=>{const{columns:n,columnsStyles:r,depthMap:i,expandColumnKey:g,expandedRowKeys:$,estimatedRowHeight:y,hasFixedColumns:k,hoveringRowKey:j,rowData:L,rowIndex:V,style:z,isScrolling:oe,rowProps:re,rowClass:ie,rowKey:ae,rowEventHandlers:le,ns:de,onRowHovered:pe,onRowExpanded:he}=e,ue=tryCall(ie,{columns:n,rowData:L,rowIndex:V},""),_e=tryCall(re,{columns:n,rowData:L,rowIndex:V}),Ie=L[ae],Ce=i[Ie]||0,Oe=Boolean(g),$e=V<0,qe=[de.e("row"),ue,{[de.e(`row-depth-${Ce}`)]:Oe&&V>=0,[de.is("expanded")]:Oe&&$.includes(Ie),[de.is("hovered")]:!oe&&Ie===j,[de.is("fixed")]:!Ce&&$e,[de.is("customized")]:Boolean(t.row)}],ze=k?pe:void 0,Ue={..._e,columns:n,columnsStyles:r,class:qe,depth:Ce,expandColumnKey:g,estimatedRowHeight:$e?void 0:y,isScrolling:oe,rowIndex:V,rowData:L,rowKey:Ie,rowEventHandlers:le,style:z};return createVNode(TableV2Row,mergeProps(Ue,{onRowHover:ze,onRowExpand:he}),_isSlot$2(t)?t:{default:()=>[t]})},CellRenderer=({columns:e,column:t,columnIndex:n,depth:r,expandIconProps:i,isScrolling:g,rowData:$,rowIndex:y,style:k,expandedRowKeys:j,ns:L,cellProps:V,expandColumnKey:z,indentSize:oe,iconSize:re,rowKey:ie},{slots:ae})=>{const le=enforceUnit(k);if(t.placeholderSign===placeholderSign)return createVNode("div",{class:L.em("row-cell","placeholder"),style:le},null);const{cellRenderer:de,dataKey:pe,dataGetter:he}=t,_e=componentToSlot(de)||ae.default||(Pt=>createVNode(TableV2Cell,Pt,null)),Ie=isFunction$4(he)?he({columns:e,column:t,columnIndex:n,rowData:$,rowIndex:y}):get$1($,pe!=null?pe:""),Ce=tryCall(V,{cellData:Ie,columns:e,column:t,columnIndex:n,rowIndex:y,rowData:$}),Oe={class:L.e("cell-text"),columns:e,column:t,columnIndex:n,cellData:Ie,isScrolling:g,rowData:$,rowIndex:y},$e=_e(Oe),qe=[L.e("row-cell"),t.align===Alignment.CENTER&&L.is("align-center"),t.align===Alignment.RIGHT&&L.is("align-right")],ze=y>=0&&t.key===z,Ue=y>=0&&j.includes($[ie]);let kt;const At=`margin-inline-start: ${r*oe}px;`;return ze&&(isObject$4(i)?kt=createVNode(ExpandIcon,mergeProps(i,{class:[L.e("expand-icon"),L.is("expanded",Ue)],size:re,expanded:Ue,style:At,expandable:!0}),null):kt=createVNode("div",{style:[At,`width: ${re}px; height: ${re}px;`].join(" ")},null)),createVNode("div",mergeProps({class:qe,style:le},Ce),[kt,$e])};CellRenderer.inheritAttrs=!1;function _isSlot$1(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!isVNode(e)}const HeaderRenderer=({columns:e,columnsStyles:t,headerIndex:n,style:r,headerClass:i,headerProps:g,ns:$},{slots:y})=>{const k={columns:e,headerIndex:n},j=[$.e("header-row"),tryCall(i,k,""),{[$.is("customized")]:Boolean(y.header)}],L={...tryCall(g,k),columnsStyles:t,class:j,columns:e,headerIndex:n,style:r};return createVNode(TableV2HeaderRow,L,_isSlot$1(y)?y:{default:()=>[y]})},HeaderCellRenderer=(e,{slots:t})=>{const{column:n,ns:r,style:i,onColumnSorted:g}=e,$=enforceUnit(i);if(n.placeholderSign===placeholderSign)return createVNode("div",{class:r.em("header-row-cell","placeholder"),style:$},null);const{headerCellRenderer:y,headerClass:k,sortable:j}=n,L={...e,class:r.e("header-cell-text")},z=(componentToSlot(y)||t.default||(he=>createVNode(HeaderCell,he,null)))(L),{sortBy:oe,sortState:re,headerCellProps:ie}=e;let ae,le;if(re){const he=re[n.key];ae=Boolean(oppositeOrderMap[he]),le=ae?he:SortOrder.ASC}else ae=n.key===oe.key,le=ae?oe.order:SortOrder.ASC;const de=[r.e("header-cell"),tryCall(k,e,""),n.align===Alignment.CENTER&&r.is("align-center"),n.align===Alignment.RIGHT&&r.is("align-right"),j&&r.is("sortable")],pe={...tryCall(ie,e),onClick:n.sortable?g:void 0,class:de,style:$,["data-key"]:n.key};return createVNode("div",pe,[z,j&&createVNode(SortIcon,{class:[r.e("sort-icon"),ae&&r.is("sorting")],sortOrder:le},null)])},Footer$1=(e,{slots:t})=>{var n;return createVNode("div",{class:e.class,style:e.style},[(n=t.default)==null?void 0:n.call(t)])};Footer$1.displayName="ElTableV2Footer";const Footer=(e,{slots:t})=>createVNode("div",{class:e.class,style:e.style},[t.default?t.default():createVNode(ElEmpty,null,null)]);Footer.displayName="ElTableV2Empty";const Overlay=(e,{slots:t})=>{var n;return createVNode("div",{class:e.class,style:e.style},[(n=t.default)==null?void 0:n.call(t)])};Overlay.displayName="ElTableV2Overlay";function _isSlot(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!isVNode(e)}const COMPONENT_NAME$4="ElTableV2",TableV2=defineComponent({name:COMPONENT_NAME$4,props:tableV2Props,setup(e,{slots:t,expose:n}){const r=useNamespace("table-v2"),{columnsStyles:i,fixedColumnsOnLeft:g,fixedColumnsOnRight:$,mainColumns:y,mainTableHeight:k,fixedTableHeight:j,leftTableWidth:L,rightTableWidth:V,data:z,depthMap:oe,expandedRowKeys:re,hasFixedColumns:ie,hoveringRowKey:ae,mainTableRef:le,leftTableRef:de,rightTableRef:pe,isDynamic:he,isResetting:ue,isScrolling:_e,bodyWidth:Ie,emptyStyle:Ce,rootStyle:Oe,headerWidth:$e,footerHeight:qe,showEmpty:ze,scrollTo:Ue,scrollToLeft:kt,scrollToTop:At,scrollToRow:Pt,getRowHeight:jt,onColumnSorted:bn,onRowHeightChange:hn,onRowHovered:Dt,onRowExpanded:wn,onRowsRendered:_n,onScroll:vn,onVerticalScroll:Cn}=useTable(e);return n({scrollTo:Ue,scrollToLeft:kt,scrollToTop:At,scrollToRow:Pt}),provide(TableV2InjectionKey,{ns:r,isResetting:ue,hoveringRowKey:ae,isScrolling:_e}),()=>{const{cache:xn,cellProps:En,estimatedRowHeight:Sn,expandColumnKey:Bn,fixedData:An,headerHeight:Pn,headerClass:Mn,headerProps:Fn,headerCellProps:jn,sortBy:zn,sortState:Jn,rowHeight:io,rowClass:eo,rowEventHandlers:Un,rowKey:Yn,rowProps:to,scrollbarAlwaysOn:Hn,indentSize:On,iconSize:Wn,useIsScrolling:oo,vScrollbarSize:ro,width:Qn}=e,lo=unref(z),ho={cache:xn,class:r.e("main"),columns:unref(y),data:lo,fixedData:An,estimatedRowHeight:Sn,bodyWidth:unref(Ie),headerHeight:Pn,headerWidth:unref($e),height:unref(k),mainTableRef:le,rowKey:Yn,rowHeight:io,scrollbarAlwaysOn:Hn,scrollbarStartGap:2,scrollbarEndGap:ro,useIsScrolling:oo,width:Qn,getRowHeight:jt,onRowsRendered:_n,onScroll:vn},Tn=unref(L),Ln=unref(j),Rn={cache:xn,class:r.e("left"),columns:unref(g),data:lo,estimatedRowHeight:Sn,leftTableRef:de,rowHeight:io,bodyWidth:Tn,headerWidth:Tn,headerHeight:Pn,height:Ln,rowKey:Yn,scrollbarAlwaysOn:Hn,scrollbarStartGap:2,scrollbarEndGap:ro,useIsScrolling:oo,width:Tn,getRowHeight:jt,onScroll:Cn},In=unref(V)+ro,Gn={cache:xn,class:r.e("right"),columns:unref($),data:lo,estimatedRowHeight:Sn,rightTableRef:pe,rowHeight:io,bodyWidth:In,headerWidth:In,headerHeight:Pn,height:Ln,rowKey:Yn,scrollbarAlwaysOn:Hn,scrollbarStartGap:2,scrollbarEndGap:ro,width:In,style:`--${unref(r.namespace)}-table-scrollbar-size: ${ro}px`,useIsScrolling:oo,getRowHeight:jt,onScroll:Cn},Xn=unref(i),ao={ns:r,depthMap:unref(oe),columnsStyles:Xn,expandColumnKey:Bn,expandedRowKeys:unref(re),estimatedRowHeight:Sn,hasFixedColumns:unref(ie),hoveringRowKey:unref(ae),rowProps:to,rowClass:eo,rowKey:Yn,rowEventHandlers:Un,onRowHovered:Dt,onRowExpanded:wn,onRowHeightChange:hn},bo={cellProps:En,expandColumnKey:Bn,indentSize:On,iconSize:Wn,rowKey:Yn,expandedRowKeys:unref(re),ns:r},uo={ns:r,headerClass:Mn,headerProps:Fn,columnsStyles:Xn},go={ns:r,sortBy:zn,sortState:Jn,headerCellProps:jn,onColumnSorted:bn},mo={row:po=>createVNode(RowRenderer,mergeProps(po,ao),{row:t.row,cell:$o=>{let wo;return t.cell?createVNode(CellRenderer,mergeProps($o,bo,{style:Xn[$o.column.key]}),_isSlot(wo=t.cell($o))?wo:{default:()=>[wo]}):createVNode(CellRenderer,mergeProps($o,bo,{style:Xn[$o.column.key]}),null)}}),header:po=>createVNode(HeaderRenderer,mergeProps(po,uo),{header:t.header,cell:$o=>{let wo;return t["header-cell"]?createVNode(HeaderCellRenderer,mergeProps($o,go,{style:Xn[$o.column.key]}),_isSlot(wo=t["header-cell"]($o))?wo:{default:()=>[wo]}):createVNode(HeaderCellRenderer,mergeProps($o,go,{style:Xn[$o.column.key]}),null)}})},vo=[e.class,r.b(),r.e("root"),{[r.is("dynamic")]:unref(he)}],Zn={class:r.e("footer"),style:unref(qe)};return createVNode("div",{class:vo,style:unref(Oe)},[createVNode(MainTable,ho,_isSlot(mo)?mo:{default:()=>[mo]}),createVNode(LeftTable$1,Rn,_isSlot(mo)?mo:{default:()=>[mo]}),createVNode(LeftTable,Gn,_isSlot(mo)?mo:{default:()=>[mo]}),t.footer&&createVNode(Footer$1,Zn,{default:t.footer}),unref(ze)&&createVNode(Footer,{class:r.e("empty"),style:unref(Ce)},{default:t.empty}),t.overlay&&createVNode(Overlay,{class:r.e("overlay")},{default:t.overlay})])}}}),autoResizerProps=buildProps({disableWidth:Boolean,disableHeight:Boolean,onResize:{type:definePropType(Function)}}),AutoResizer=defineComponent({name:"ElAutoResizer",props:autoResizerProps,setup(e,{slots:t}){const n=useNamespace("auto-resizer"),{height:r,width:i,sizer:g}=useAutoResize(e),$={width:"100%",height:"100%"};return()=>{var y;return createVNode("div",{ref:g,class:n.b(),style:$},[(y=t.default)==null?void 0:y.call(t,{height:r.value,width:i.value})])}}}),ElTableV2=withInstall(TableV2),ElAutoResizer=withInstall(AutoResizer),tabBarProps=buildProps({tabs:{type:definePropType(Array),default:()=>mutable([])}}),COMPONENT_NAME$3="ElTabBar",__default__$j=defineComponent({name:COMPONENT_NAME$3}),_sfc_main$u=defineComponent({...__default__$j,props:tabBarProps,setup(e,{expose:t}){const n=e,r=getCurrentInstance(),i=inject(tabsRootContextKey);i||throwError(COMPONENT_NAME$3,"");const g=useNamespace("tabs"),$=ref(),y=ref(),k=()=>{let L=0,V=0;const z=["top","bottom"].includes(i.props.tabPosition)?"width":"height",oe=z==="width"?"x":"y",re=oe==="x"?"left":"top";return n.tabs.every(ie=>{var ae,le;const de=(le=(ae=r.parent)==null?void 0:ae.refs)==null?void 0:le[`tab-${ie.uid}`];if(!de)return!1;if(!ie.active)return!0;L=de[`offset${capitalize(re)}`],V=de[`client${capitalize(z)}`];const pe=window.getComputedStyle(de);return z==="width"&&(n.tabs.length>1&&(V-=Number.parseFloat(pe.paddingLeft)+Number.parseFloat(pe.paddingRight)),L+=Number.parseFloat(pe.paddingLeft)),!1}),{[z]:`${V}px`,transform:`translate${capitalize(oe)}(${L}px)`}},j=()=>y.value=k();return watch(()=>n.tabs,async()=>{await nextTick(),j()},{immediate:!0}),useResizeObserver($,()=>j()),t({ref:$,update:j}),(L,V)=>(openBlock(),createElementBlock("div",{ref_key:"barRef",ref:$,class:normalizeClass([unref(g).e("active-bar"),unref(g).is(unref(i).props.tabPosition)]),style:normalizeStyle(y.value)},null,6))}});var TabBar=_export_sfc$1(_sfc_main$u,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tabs/src/tab-bar.vue"]]);const tabNavProps=buildProps({panes:{type:definePropType(Array),default:()=>mutable([])},currentName:{type:[String,Number],default:""},editable:Boolean,type:{type:String,values:["card","border-card",""],default:""},stretch:Boolean}),tabNavEmits={tabClick:(e,t,n)=>n instanceof Event,tabRemove:(e,t)=>t instanceof Event},COMPONENT_NAME$2="ElTabNav",TabNav=defineComponent({name:COMPONENT_NAME$2,props:tabNavProps,emits:tabNavEmits,setup(e,{expose:t,emit:n}){const r=getCurrentInstance(),i=inject(tabsRootContextKey);i||throwError(COMPONENT_NAME$2,"");const g=useNamespace("tabs"),$=useDocumentVisibility(),y=useWindowFocus(),k=ref(),j=ref(),L=ref(),V=ref(!1),z=ref(0),oe=ref(!1),re=ref(!0),ie=computed(()=>["top","bottom"].includes(i.props.tabPosition)?"width":"height"),ae=computed(()=>({transform:`translate${ie.value==="width"?"X":"Y"}(-${z.value}px)`})),le=()=>{if(!k.value)return;const Ce=k.value[`offset${capitalize(ie.value)}`],Oe=z.value;if(!Oe)return;const $e=Oe>Ce?Oe-Ce:0;z.value=$e},de=()=>{if(!k.value||!j.value)return;const Ce=j.value[`offset${capitalize(ie.value)}`],Oe=k.value[`offset${capitalize(ie.value)}`],$e=z.value;if(Ce-$e<=Oe)return;const qe=Ce-$e>Oe*2?$e+Oe:Ce-Oe;z.value=qe},pe=async()=>{const Ce=j.value;if(!V.value||!L.value||!k.value||!Ce)return;await nextTick();const Oe=L.value.querySelector(".is-active");if(!Oe)return;const $e=k.value,qe=["top","bottom"].includes(i.props.tabPosition),ze=Oe.getBoundingClientRect(),Ue=$e.getBoundingClientRect(),kt=qe?Ce.offsetWidth-Ue.width:Ce.offsetHeight-Ue.height,At=z.value;let Pt=At;qe?(ze.leftUe.right&&(Pt=At+ze.right-Ue.right)):(ze.topUe.bottom&&(Pt=At+(ze.bottom-Ue.bottom))),Pt=Math.max(Pt,0),z.value=Math.min(Pt,kt)},he=()=>{if(!j.value||!k.value)return;const Ce=j.value[`offset${capitalize(ie.value)}`],Oe=k.value[`offset${capitalize(ie.value)}`],$e=z.value;if(Oe0&&(z.value=0)},ue=Ce=>{const Oe=Ce.code,{up:$e,down:qe,left:ze,right:Ue}=EVENT_CODE;if(![$e,qe,ze,Ue].includes(Oe))return;const kt=Array.from(Ce.currentTarget.querySelectorAll("[role=tab]:not(.is-disabled)")),At=kt.indexOf(Ce.target);let Pt;Oe===ze||Oe===$e?At===0?Pt=kt.length-1:Pt=At-1:At{re.value&&(oe.value=!0)},Ie=()=>oe.value=!1;return watch($,Ce=>{Ce==="hidden"?re.value=!1:Ce==="visible"&&setTimeout(()=>re.value=!0,50)}),watch(y,Ce=>{Ce?setTimeout(()=>re.value=!0,50):re.value=!1}),useResizeObserver(L,he),onMounted(()=>setTimeout(()=>pe(),0)),onUpdated(()=>he()),t({scrollToActiveTab:pe,removeFocus:Ie}),watch(()=>e.panes,()=>r.update(),{flush:"post"}),()=>{const Ce=V.value?[createVNode("span",{class:[g.e("nav-prev"),g.is("disabled",!V.value.prev)],onClick:le},[createVNode(ElIcon,null,{default:()=>[createVNode(arrow_left_default,null,null)]})]),createVNode("span",{class:[g.e("nav-next"),g.is("disabled",!V.value.next)],onClick:de},[createVNode(ElIcon,null,{default:()=>[createVNode(arrow_right_default,null,null)]})])]:null,Oe=e.panes.map(($e,qe)=>{var ze,Ue,kt,At;const Pt=$e.uid,jt=$e.props.disabled,bn=(Ue=(ze=$e.props.name)!=null?ze:$e.index)!=null?Ue:`${qe}`,hn=!jt&&($e.isClosable||e.editable);$e.index=`${qe}`;const Dt=hn?createVNode(ElIcon,{class:"is-icon-close",onClick:vn=>n("tabRemove",$e,vn)},{default:()=>[createVNode(close_default,null,null)]}):null,wn=((At=(kt=$e.slots).label)==null?void 0:At.call(kt))||$e.props.label,_n=!jt&&$e.active?0:-1;return createVNode("div",{ref:`tab-${Pt}`,class:[g.e("item"),g.is(i.props.tabPosition),g.is("active",$e.active),g.is("disabled",jt),g.is("closable",hn),g.is("focus",oe.value)],id:`tab-${bn}`,key:`tab-${Pt}`,"aria-controls":`pane-${bn}`,role:"tab","aria-selected":$e.active,tabindex:_n,onFocus:()=>_e(),onBlur:()=>Ie(),onClick:vn=>{Ie(),n("tabClick",$e,bn,vn)},onKeydown:vn=>{hn&&(vn.code===EVENT_CODE.delete||vn.code===EVENT_CODE.backspace)&&n("tabRemove",$e,vn)}},[wn,Dt])});return createVNode("div",{ref:L,class:[g.e("nav-wrap"),g.is("scrollable",!!V.value),g.is(i.props.tabPosition)]},[Ce,createVNode("div",{class:g.e("nav-scroll"),ref:k},[createVNode("div",{class:[g.e("nav"),g.is(i.props.tabPosition),g.is("stretch",e.stretch&&["top","bottom"].includes(i.props.tabPosition))],ref:j,style:ae.value,role:"tablist",onKeydown:ue},[e.type?null:createVNode(TabBar,{tabs:[...e.panes]},null),Oe])])])}}}),tabsProps=buildProps({type:{type:String,values:["card","border-card",""],default:""},activeName:{type:[String,Number]},closable:Boolean,addable:Boolean,modelValue:{type:[String,Number]},editable:Boolean,tabPosition:{type:String,values:["top","right","bottom","left"],default:"top"},beforeLeave:{type:definePropType(Function),default:()=>!0},stretch:Boolean}),isPaneName=e=>isString$3(e)||isNumber$1(e),tabsEmits={[UPDATE_MODEL_EVENT]:e=>isPaneName(e),tabClick:(e,t)=>t instanceof Event,tabChange:e=>isPaneName(e),edit:(e,t)=>["remove","add"].includes(t),tabRemove:e=>isPaneName(e),tabAdd:()=>!0};var Tabs=defineComponent({name:"ElTabs",props:tabsProps,emits:tabsEmits,setup(e,{emit:t,slots:n,expose:r}){var i,g;const $=useNamespace("tabs"),{children:y,addChild:k,removeChild:j}=useOrderedChildren(getCurrentInstance(),"ElTabPane"),L=ref(),V=ref((g=(i=e.modelValue)!=null?i:e.activeName)!=null?g:"0"),z=le=>{V.value=le,t(UPDATE_MODEL_EVENT,le),t("tabChange",le)},oe=async le=>{var de,pe,he;if(!(V.value===le||isUndefined(le)))try{await((de=e.beforeLeave)==null?void 0:de.call(e,le,V.value))!==!1&&(z(le),(he=(pe=L.value)==null?void 0:pe.removeFocus)==null||he.call(pe))}catch{}},re=(le,de,pe)=>{le.props.disabled||(oe(de),t("tabClick",le,pe))},ie=(le,de)=>{le.props.disabled||isUndefined(le.props.name)||(de.stopPropagation(),t("edit",le.props.name,"remove"),t("tabRemove",le.props.name))},ae=()=>{t("edit",void 0,"add"),t("tabAdd")};return useDeprecated({from:'"activeName"',replacement:'"model-value" or "v-model"',scope:"ElTabs",version:"2.3.0",ref:"https://element-plus.org/en-US/component/tabs.html#attributes",type:"Attribute"},computed(()=>!!e.activeName)),watch(()=>e.activeName,le=>oe(le)),watch(()=>e.modelValue,le=>oe(le)),watch(V,async()=>{var le;await nextTick(),(le=L.value)==null||le.scrollToActiveTab()}),provide(tabsRootContextKey,{props:e,currentName:V,registerPane:k,unregisterPane:j}),r({currentName:V}),()=>{const le=e.editable||e.addable?createVNode("span",{class:$.e("new-tab"),tabindex:"0",onClick:ae,onKeydown:he=>{he.code===EVENT_CODE.enter&&ae()}},[createVNode(ElIcon,{class:$.is("icon-plus")},{default:()=>[createVNode(plus_default,null,null)]})]):null,de=createVNode("div",{class:[$.e("header"),$.is(e.tabPosition)]},[le,createVNode(TabNav,{ref:L,currentName:V.value,editable:e.editable,type:e.type,panes:y.value,stretch:e.stretch,onTabClick:re,onTabRemove:ie},null)]),pe=createVNode("div",{class:$.e("content")},[renderSlot(n,"default")]);return createVNode("div",{class:[$.b(),$.m(e.tabPosition),{[$.m("card")]:e.type==="card",[$.m("border-card")]:e.type==="border-card"}]},[...e.tabPosition!=="bottom"?[de,pe]:[pe,de]])}}});const tabPaneProps=buildProps({label:{type:String,default:""},name:{type:[String,Number]},closable:Boolean,disabled:Boolean,lazy:Boolean}),_hoisted_1$d=["id","aria-hidden","aria-labelledby"],COMPONENT_NAME$1="ElTabPane",__default__$i=defineComponent({name:COMPONENT_NAME$1}),_sfc_main$t=defineComponent({...__default__$i,props:tabPaneProps,setup(e){const t=e,n=getCurrentInstance(),r=useSlots(),i=inject(tabsRootContextKey);i||throwError(COMPONENT_NAME$1,"usage: ");const g=useNamespace("tab-pane"),$=ref(),y=computed(()=>t.closable||i.props.closable),k=computedEager(()=>{var oe;return i.currentName.value===((oe=t.name)!=null?oe:$.value)}),j=ref(k.value),L=computed(()=>{var oe;return(oe=t.name)!=null?oe:$.value}),V=computedEager(()=>!t.lazy||j.value||k.value);watch(k,oe=>{oe&&(j.value=!0)});const z=reactive({uid:n.uid,slots:r,props:t,paneName:L,active:k,index:$,isClosable:y});return onMounted(()=>{i.registerPane(z)}),onUnmounted(()=>{i.unregisterPane(z.uid)}),(oe,re)=>unref(V)?withDirectives((openBlock(),createElementBlock("div",{key:0,id:`pane-${unref(L)}`,class:normalizeClass(unref(g).b()),role:"tabpanel","aria-hidden":!unref(k),"aria-labelledby":`tab-${unref(L)}`},[renderSlot(oe.$slots,"default")],10,_hoisted_1$d)),[[vShow,unref(k)]]):createCommentVNode("v-if",!0)}});var TabPane=_export_sfc$1(_sfc_main$t,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tabs/src/tab-pane.vue"]]);const ElTabs=withInstall(Tabs,{TabPane}),ElTabPane=withNoopInstall(TabPane),timeSelectProps=buildProps({format:{type:String,default:"HH:mm"},modelValue:String,disabled:Boolean,editable:{type:Boolean,default:!0},effect:{type:String,default:"light"},clearable:{type:Boolean,default:!0},size:useSizeProp,placeholder:String,start:{type:String,default:"09:00"},end:{type:String,default:"18:00"},step:{type:String,default:"00:30"},minTime:String,maxTime:String,name:String,prefixIcon:{type:definePropType([String,Object]),default:()=>clock_default},clearIcon:{type:definePropType([String,Object]),default:()=>circle_close_default}}),parseTime=e=>{const t=(e||"").split(":");if(t.length>=2){let n=Number.parseInt(t[0],10);const r=Number.parseInt(t[1],10),i=e.toUpperCase();return i.includes("AM")&&n===12?n=0:i.includes("PM")&&n!==12&&(n+=12),{hours:n,minutes:r}}return null},compareTime=(e,t)=>{const n=parseTime(e);if(!n)return-1;const r=parseTime(t);if(!r)return-1;const i=n.minutes+n.hours*60,g=r.minutes+r.hours*60;return i===g?0:i>g?1:-1},padTime=e=>`${e}`.padStart(2,"0"),formatTime=e=>`${padTime(e.hours)}:${padTime(e.minutes)}`,nextTime=(e,t)=>{const n=parseTime(e);if(!n)return"";const r=parseTime(t);if(!r)return"";const i={hours:n.hours,minutes:n.minutes};return i.minutes+=r.minutes,i.hours+=r.hours,i.hours+=Math.floor(i.minutes/60),i.minutes=i.minutes%60,formatTime(i)},__default__$h=defineComponent({name:"ElTimeSelect"}),_sfc_main$s=defineComponent({...__default__$h,props:timeSelectProps,emits:["change","blur","focus","update:modelValue"],setup(e,{expose:t}){const n=e;dayjs.extend(customParseFormat);const{Option:r}=ElSelect,i=useNamespace("input"),g=ref(),$=useDisabled(),y=computed(()=>n.modelValue),k=computed(()=>{const ae=parseTime(n.start);return ae?formatTime(ae):null}),j=computed(()=>{const ae=parseTime(n.end);return ae?formatTime(ae):null}),L=computed(()=>{const ae=parseTime(n.step);return ae?formatTime(ae):null}),V=computed(()=>{const ae=parseTime(n.minTime||"");return ae?formatTime(ae):null}),z=computed(()=>{const ae=parseTime(n.maxTime||"");return ae?formatTime(ae):null}),oe=computed(()=>{const ae=[];if(n.start&&n.end&&n.step){let le=k.value,de;for(;le&&j.value&&compareTime(le,j.value)<=0;)de=dayjs(le,"HH:mm").format(n.format),ae.push({value:de,disabled:compareTime(le,V.value||"-1:-1")<=0||compareTime(le,z.value||"100:100")>=0}),le=nextTime(le,L.value)}return ae});return t({blur:()=>{var ae,le;(le=(ae=g.value)==null?void 0:ae.blur)==null||le.call(ae)},focus:()=>{var ae,le;(le=(ae=g.value)==null?void 0:ae.focus)==null||le.call(ae)}}),(ae,le)=>(openBlock(),createBlock(unref(ElSelect),{ref_key:"select",ref:g,"model-value":unref(y),disabled:unref($),clearable:ae.clearable,"clear-icon":ae.clearIcon,size:ae.size,effect:ae.effect,placeholder:ae.placeholder,"default-first-option":"",filterable:ae.editable,"onUpdate:modelValue":le[0]||(le[0]=de=>ae.$emit("update:modelValue",de)),onChange:le[1]||(le[1]=de=>ae.$emit("change",de)),onBlur:le[2]||(le[2]=de=>ae.$emit("blur",de)),onFocus:le[3]||(le[3]=de=>ae.$emit("focus",de))},{prefix:withCtx(()=>[ae.prefixIcon?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(i).e("prefix-icon"))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(ae.prefixIcon)))]),_:1},8,["class"])):createCommentVNode("v-if",!0)]),default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(oe),de=>(openBlock(),createBlock(unref(r),{key:de.value,label:de.value,value:de.value,disabled:de.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["model-value","disabled","clearable","clear-icon","size","effect","placeholder","filterable"]))}});var TimeSelect=_export_sfc$1(_sfc_main$s,[["__file","/home/runner/work/element-plus/element-plus/packages/components/time-select/src/time-select.vue"]]);TimeSelect.install=e=>{e.component(TimeSelect.name,TimeSelect)};const _TimeSelect=TimeSelect,ElTimeSelect=_TimeSelect,Timeline=defineComponent({name:"ElTimeline",setup(e,{slots:t}){const n=useNamespace("timeline");return provide("timeline",t),()=>h$1("ul",{class:[n.b()]},[renderSlot(t,"default")])}}),timelineItemProps=buildProps({timestamp:{type:String,default:""},hideTimestamp:{type:Boolean,default:!1},center:{type:Boolean,default:!1},placement:{type:String,values:["top","bottom"],default:"bottom"},type:{type:String,values:["primary","success","warning","danger","info"],default:""},color:{type:String,default:""},size:{type:String,values:["normal","large"],default:"normal"},icon:{type:iconPropType},hollow:{type:Boolean,default:!1}}),__default__$g=defineComponent({name:"ElTimelineItem"}),_sfc_main$r=defineComponent({...__default__$g,props:timelineItemProps,setup(e){const t=useNamespace("timeline-item");return(n,r)=>(openBlock(),createElementBlock("li",{class:normalizeClass([unref(t).b(),{[unref(t).e("center")]:n.center}])},[createBaseVNode("div",{class:normalizeClass(unref(t).e("tail"))},null,2),n.$slots.dot?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("div",{key:0,class:normalizeClass([unref(t).e("node"),unref(t).em("node",n.size||""),unref(t).em("node",n.type||""),unref(t).is("hollow",n.hollow)]),style:normalizeStyle({backgroundColor:n.color})},[n.icon?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(t).e("icon"))},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(n.icon)))]),_:1},8,["class"])):createCommentVNode("v-if",!0)],6)),n.$slots.dot?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref(t).e("dot"))},[renderSlot(n.$slots,"dot")],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(t).e("wrapper"))},[!n.hideTimestamp&&n.placement==="top"?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass([unref(t).e("timestamp"),unref(t).is("top")])},toDisplayString$1(n.timestamp),3)):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(t).e("content"))},[renderSlot(n.$slots,"default")],2),!n.hideTimestamp&&n.placement==="bottom"?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass([unref(t).e("timestamp"),unref(t).is("bottom")])},toDisplayString$1(n.timestamp),3)):createCommentVNode("v-if",!0)],2)],2))}});var TimelineItem=_export_sfc$1(_sfc_main$r,[["__file","/home/runner/work/element-plus/element-plus/packages/components/timeline/src/timeline-item.vue"]]);const ElTimeline=withInstall(Timeline,{TimelineItem}),ElTimelineItem=withNoopInstall(TimelineItem),tooltipV2CommonProps=buildProps({nowrap:Boolean});var TooltipV2Sides=(e=>(e.top="top",e.bottom="bottom",e.left="left",e.right="right",e))(TooltipV2Sides||{});const tooltipV2Sides=Object.values(TooltipV2Sides),tooltipV2ArrowProps=buildProps({width:{type:Number,default:10},height:{type:Number,default:10},style:{type:definePropType(Object),default:null}}),tooltipV2ArrowSpecialProps=buildProps({side:{type:definePropType(String),values:tooltipV2Sides,required:!0}}),tooltipV2Strategies=["absolute","fixed"],tooltipV2Placements=["top-start","top-end","top","bottom-start","bottom-end","bottom","left-start","left-end","left","right-start","right-end","right"],tooltipV2ContentProps=buildProps({ariaLabel:String,arrowPadding:{type:definePropType(Number),default:5},effect:{type:String,default:""},contentClass:String,placement:{type:definePropType(String),values:tooltipV2Placements,default:"bottom"},reference:{type:definePropType(Object),default:null},offset:{type:Number,default:8},strategy:{type:definePropType(String),values:tooltipV2Strategies,default:"absolute"},showArrow:{type:Boolean,default:!1}}),tooltipV2RootProps=buildProps({delayDuration:{type:Number,default:300},defaultOpen:Boolean,open:{type:Boolean,default:void 0},onOpenChange:{type:definePropType(Function)},"onUpdate:open":{type:definePropType(Function)}}),EventHandler={type:definePropType(Function)},tooltipV2TriggerProps=buildProps({onBlur:EventHandler,onClick:EventHandler,onFocus:EventHandler,onMouseDown:EventHandler,onMouseEnter:EventHandler,onMouseLeave:EventHandler}),tooltipV2Props=buildProps({...tooltipV2RootProps,...tooltipV2ArrowProps,...tooltipV2TriggerProps,...tooltipV2ContentProps,alwaysOn:Boolean,fullTransition:Boolean,transitionProps:{type:definePropType(Object),default:null},teleported:Boolean,to:{type:definePropType(String),default:"body"}}),__default__$f=defineComponent({name:"ElTooltipV2Root"}),_sfc_main$q=defineComponent({...__default__$f,props:tooltipV2RootProps,setup(e,{expose:t}){const n=e,r=ref(n.defaultOpen),i=ref(null),g=computed({get:()=>isPropAbsent(n.open)?r.value:n.open,set:ae=>{var le;r.value=ae,(le=n["onUpdate:open"])==null||le.call(n,ae)}}),$=computed(()=>isNumber$1(n.delayDuration)&&n.delayDuration>0),{start:y,stop:k}=useTimeoutFn(()=>{g.value=!0},computed(()=>n.delayDuration),{immediate:!1}),j=useNamespace("tooltip-v2"),L=useId(),V=()=>{k(),g.value=!0},z=()=>{unref($)?y():V()},oe=V,re=()=>{k(),g.value=!1};return watch(g,ae=>{var le;ae&&(document.dispatchEvent(new CustomEvent(TOOLTIP_V2_OPEN)),oe()),(le=n.onOpenChange)==null||le.call(n,ae)}),onMounted(()=>{document.addEventListener(TOOLTIP_V2_OPEN,re)}),onBeforeUnmount(()=>{k(),document.removeEventListener(TOOLTIP_V2_OPEN,re)}),provide(tooltipV2RootKey,{contentId:L,triggerRef:i,ns:j,onClose:re,onDelayOpen:z,onOpen:oe}),t({onOpen:oe,onClose:re}),(ae,le)=>renderSlot(ae.$slots,"default",{open:unref(g)})}});var TooltipV2Root=_export_sfc$1(_sfc_main$q,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tooltip-v2/src/root.vue"]]);const __default__$e=defineComponent({name:"ElTooltipV2Arrow"}),_sfc_main$p=defineComponent({...__default__$e,props:{...tooltipV2ArrowProps,...tooltipV2ArrowSpecialProps},setup(e){const t=e,{ns:n}=inject(tooltipV2RootKey),{arrowRef:r}=inject(tooltipV2ContentKey),i=computed(()=>{const{style:g,width:$,height:y}=t,k=n.namespace.value;return{[`--${k}-tooltip-v2-arrow-width`]:`${$}px`,[`--${k}-tooltip-v2-arrow-height`]:`${y}px`,[`--${k}-tooltip-v2-arrow-border-width`]:`${$/2}px`,[`--${k}-tooltip-v2-arrow-cover-width`]:$/2-1,...g||{}}});return(g,$)=>(openBlock(),createElementBlock("span",{ref_key:"arrowRef",ref:r,style:normalizeStyle(unref(i)),class:normalizeClass(unref(n).e("arrow"))},null,6))}});var TooltipV2Arrow=_export_sfc$1(_sfc_main$p,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tooltip-v2/src/arrow.vue"]]);const visualHiddenProps=buildProps({style:{type:definePropType([String,Object,Array]),default:()=>({})}}),__default__$d=defineComponent({name:"ElVisuallyHidden"}),_sfc_main$o=defineComponent({...__default__$d,props:visualHiddenProps,setup(e){const t=e,n=computed(()=>[t.style,{position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}]);return(r,i)=>(openBlock(),createElementBlock("span",mergeProps(r.$attrs,{style:unref(n)}),[renderSlot(r.$slots,"default")],16))}});var ElVisuallyHidden=_export_sfc$1(_sfc_main$o,[["__file","/home/runner/work/element-plus/element-plus/packages/components/visual-hidden/src/visual-hidden.vue"]]);const _hoisted_1$c=["data-side"],__default__$c=defineComponent({name:"ElTooltipV2Content"}),_sfc_main$n=defineComponent({...__default__$c,props:{...tooltipV2ContentProps,...tooltipV2CommonProps},setup(e){const t=e,{triggerRef:n,contentId:r}=inject(tooltipV2RootKey),i=ref(t.placement),g=ref(t.strategy),$=ref(null),{referenceRef:y,contentRef:k,middlewareData:j,x:L,y:V,update:z}=useFloating({placement:i,strategy:g,middleware:computed(()=>{const pe=[offset(t.offset)];return t.showArrow&&pe.push(arrowMiddleware({arrowRef:$})),pe})}),oe=useZIndex().nextZIndex(),re=useNamespace("tooltip-v2"),ie=computed(()=>i.value.split("-")[0]),ae=computed(()=>({position:unref(g),top:`${unref(V)||0}px`,left:`${unref(L)||0}px`,zIndex:oe})),le=computed(()=>{if(!t.showArrow)return{};const{arrow:pe}=unref(j);return{[`--${re.namespace.value}-tooltip-v2-arrow-x`]:`${pe==null?void 0:pe.x}px`||"",[`--${re.namespace.value}-tooltip-v2-arrow-y`]:`${pe==null?void 0:pe.y}px`||""}}),de=computed(()=>[re.e("content"),re.is("dark",t.effect==="dark"),re.is(unref(g)),t.contentClass]);return watch($,()=>z()),watch(()=>t.placement,pe=>i.value=pe),onMounted(()=>{watch(()=>t.reference||n.value,pe=>{y.value=pe||void 0},{immediate:!0})}),provide(tooltipV2ContentKey,{arrowRef:$}),(pe,he)=>(openBlock(),createElementBlock("div",{ref_key:"contentRef",ref:k,style:normalizeStyle(unref(ae)),"data-tooltip-v2-root":""},[pe.nowrap?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("div",{key:0,"data-side":unref(ie),class:normalizeClass(unref(de))},[renderSlot(pe.$slots,"default",{contentStyle:unref(ae),contentClass:unref(de)}),createVNode(unref(ElVisuallyHidden),{id:unref(r),role:"tooltip"},{default:withCtx(()=>[pe.ariaLabel?(openBlock(),createElementBlock(Fragment,{key:0},[createTextVNode(toDisplayString$1(pe.ariaLabel),1)],64)):renderSlot(pe.$slots,"default",{key:1})]),_:3},8,["id"]),renderSlot(pe.$slots,"arrow",{style:normalizeStyle(unref(le)),side:unref(ie)})],10,_hoisted_1$c))],4))}});var TooltipV2Content=_export_sfc$1(_sfc_main$n,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tooltip-v2/src/content.vue"]]);const forwardRefProps=buildProps({setRef:{type:definePropType(Function),required:!0},onlyChild:Boolean});var ForwardRef=defineComponent({props:forwardRefProps,setup(e,{slots:t}){const n=ref(),r=composeRefs(n,i=>{i?e.setRef(i.nextElementSibling):e.setRef(null)});return()=>{var i;const[g]=((i=t.default)==null?void 0:i.call(t))||[],$=e.onlyChild?ensureOnlyChild(g.children):g.children;return createVNode(Fragment,{ref:r},[$])}}});const __default__$b=defineComponent({name:"ElTooltipV2Trigger"}),_sfc_main$m=defineComponent({...__default__$b,props:{...tooltipV2CommonProps,...tooltipV2TriggerProps},setup(e){const t=e,{onClose:n,onOpen:r,onDelayOpen:i,triggerRef:g,contentId:$}=inject(tooltipV2RootKey);let y=!1;const k=de=>{g.value=de},j=()=>{y=!1},L=composeEventHandlers(t.onMouseEnter,i),V=composeEventHandlers(t.onMouseLeave,n),z=composeEventHandlers(t.onMouseDown,()=>{n(),y=!0,document.addEventListener("mouseup",j,{once:!0})}),oe=composeEventHandlers(t.onFocus,()=>{y||r()}),re=composeEventHandlers(t.onBlur,n),ie=composeEventHandlers(t.onClick,de=>{de.detail===0&&n()}),ae={blur:re,click:ie,focus:oe,mousedown:z,mouseenter:L,mouseleave:V},le=(de,pe,he)=>{de&&Object.entries(pe).forEach(([ue,_e])=>{de[he](ue,_e)})};return watch(g,(de,pe)=>{le(de,ae,"addEventListener"),le(pe,ae,"removeEventListener"),de&&de.setAttribute("aria-describedby",$.value)}),onBeforeUnmount(()=>{le(g.value,ae,"removeEventListener"),document.removeEventListener("mouseup",j)}),(de,pe)=>de.nowrap?(openBlock(),createBlock(unref(ForwardRef),{key:0,"set-ref":k,"only-child":""},{default:withCtx(()=>[renderSlot(de.$slots,"default")]),_:3})):(openBlock(),createElementBlock("button",mergeProps({key:1,ref_key:"triggerRef",ref:g},de.$attrs),[renderSlot(de.$slots,"default")],16))}});var TooltipV2Trigger=_export_sfc$1(_sfc_main$m,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tooltip-v2/src/trigger.vue"]]);const __default__$a=defineComponent({name:"ElTooltipV2"}),_sfc_main$l=defineComponent({...__default__$a,props:tooltipV2Props,setup(e){const n=toRefs(e),r=reactive(pick$1(n,Object.keys(tooltipV2ArrowProps))),i=reactive(pick$1(n,Object.keys(tooltipV2ContentProps))),g=reactive(pick$1(n,Object.keys(tooltipV2RootProps))),$=reactive(pick$1(n,Object.keys(tooltipV2TriggerProps)));return(y,k)=>(openBlock(),createBlock(TooltipV2Root,normalizeProps(guardReactiveProps(g)),{default:withCtx(({open:j})=>[createVNode(TooltipV2Trigger,mergeProps($,{nowrap:""}),{default:withCtx(()=>[renderSlot(y.$slots,"trigger")]),_:3},16),(openBlock(),createBlock(Teleport,{to:y.to,disabled:!y.teleported},[y.fullTransition?(openBlock(),createBlock(Transition,normalizeProps(mergeProps({key:0},y.transitionProps)),{default:withCtx(()=>[y.alwaysOn||j?(openBlock(),createBlock(TooltipV2Content,normalizeProps(mergeProps({key:0},i)),{arrow:withCtx(({style:L,side:V})=>[y.showArrow?(openBlock(),createBlock(TooltipV2Arrow,mergeProps({key:0},r,{style:L,side:V}),null,16,["style","side"])):createCommentVNode("v-if",!0)]),default:withCtx(()=>[renderSlot(y.$slots,"default")]),_:3},16)):createCommentVNode("v-if",!0)]),_:2},1040)):(openBlock(),createElementBlock(Fragment,{key:1},[y.alwaysOn||j?(openBlock(),createBlock(TooltipV2Content,normalizeProps(mergeProps({key:0},i)),{arrow:withCtx(({style:L,side:V})=>[y.showArrow?(openBlock(),createBlock(TooltipV2Arrow,mergeProps({key:0},r,{style:L,side:V}),null,16,["style","side"])):createCommentVNode("v-if",!0)]),default:withCtx(()=>[renderSlot(y.$slots,"default")]),_:3},16)):createCommentVNode("v-if",!0)],64))],8,["to","disabled"]))]),_:3},16))}});var TooltipV2=_export_sfc$1(_sfc_main$l,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tooltip-v2/src/tooltip.vue"]]);const ElTooltipV2=withInstall(TooltipV2),LEFT_CHECK_CHANGE_EVENT="left-check-change",RIGHT_CHECK_CHANGE_EVENT="right-check-change",transferProps=buildProps({data:{type:definePropType(Array),default:()=>[]},titles:{type:definePropType(Array),default:()=>[]},buttonTexts:{type:definePropType(Array),default:()=>[]},filterPlaceholder:String,filterMethod:{type:definePropType(Function)},leftDefaultChecked:{type:definePropType(Array),default:()=>[]},rightDefaultChecked:{type:definePropType(Array),default:()=>[]},renderContent:{type:definePropType(Function)},modelValue:{type:definePropType(Array),default:()=>[]},format:{type:definePropType(Object),default:()=>({})},filterable:Boolean,props:{type:definePropType(Object),default:()=>mutable({label:"label",key:"key",disabled:"disabled"})},targetOrder:{type:String,values:["original","push","unshift"],default:"original"},validateEvent:{type:Boolean,default:!0}}),transferCheckedChangeFn=(e,t)=>[e,t].every(isArray$4)||isArray$4(e)&&isNil(t),transferEmits={[CHANGE_EVENT]:(e,t,n)=>[e,n].every(isArray$4)&&["left","right"].includes(t),[UPDATE_MODEL_EVENT]:e=>isArray$4(e),[LEFT_CHECK_CHANGE_EVENT]:transferCheckedChangeFn,[RIGHT_CHECK_CHANGE_EVENT]:transferCheckedChangeFn},CHECKED_CHANGE_EVENT="checked-change",transferPanelProps=buildProps({data:transferProps.data,optionRender:{type:definePropType(Function)},placeholder:String,title:String,filterable:Boolean,format:transferProps.format,filterMethod:transferProps.filterMethod,defaultChecked:transferProps.leftDefaultChecked,props:transferProps.props}),transferPanelEmits={[CHECKED_CHANGE_EVENT]:transferCheckedChangeFn},usePropsAlias=e=>{const t={label:"label",key:"key",disabled:"disabled"};return computed(()=>({...t,...e.props}))},useCheck$1=(e,t,n)=>{const r=usePropsAlias(e),i=computed(()=>e.data.filter(L=>isFunction$4(e.filterMethod)?e.filterMethod(t.query,L):String(L[r.value.label]||L[r.value.key]).toLowerCase().includes(t.query.toLowerCase()))),g=computed(()=>i.value.filter(L=>!L[r.value.disabled])),$=computed(()=>{const L=t.checked.length,V=e.data.length,{noChecked:z,hasChecked:oe}=e.format;return z&&oe?L>0?oe.replace(/\${checked}/g,L.toString()).replace(/\${total}/g,V.toString()):z.replace(/\${total}/g,V.toString()):`${L}/${V}`}),y=computed(()=>{const L=t.checked.length;return L>0&&L{const L=g.value.map(V=>V[r.value.key]);t.allChecked=L.length>0&&L.every(V=>t.checked.includes(V))},j=L=>{t.checked=L?g.value.map(V=>V[r.value.key]):[]};return watch(()=>t.checked,(L,V)=>{if(k(),t.checkChangeByUser){const z=L.concat(V).filter(oe=>!L.includes(oe)||!V.includes(oe));n(CHECKED_CHANGE_EVENT,L,z)}else n(CHECKED_CHANGE_EVENT,L),t.checkChangeByUser=!0}),watch(g,()=>{k()}),watch(()=>e.data,()=>{const L=[],V=i.value.map(z=>z[r.value.key]);t.checked.forEach(z=>{V.includes(z)&&L.push(z)}),t.checkChangeByUser=!1,t.checked=L}),watch(()=>e.defaultChecked,(L,V)=>{if(V&&L.length===V.length&&L.every(re=>V.includes(re)))return;const z=[],oe=g.value.map(re=>re[r.value.key]);L.forEach(re=>{oe.includes(re)&&z.push(re)}),t.checkChangeByUser=!1,t.checked=z},{immediate:!0}),{filteredData:i,checkableData:g,checkedSummary:$,isIndeterminate:y,updateAllChecked:k,handleAllCheckedChange:j}},useCheckedChange=(e,t)=>({onSourceCheckedChange:(i,g)=>{e.leftChecked=i,g&&t(LEFT_CHECK_CHANGE_EVENT,i,g)},onTargetCheckedChange:(i,g)=>{e.rightChecked=i,g&&t(RIGHT_CHECK_CHANGE_EVENT,i,g)}}),useComputedData=e=>{const t=usePropsAlias(e),n=computed(()=>e.data.reduce((g,$)=>(g[$[t.value.key]]=$)&&g,{})),r=computed(()=>e.data.filter(g=>!e.modelValue.includes(g[t.value.key]))),i=computed(()=>e.targetOrder==="original"?e.data.filter(g=>e.modelValue.includes(g[t.value.key])):e.modelValue.reduce((g,$)=>{const y=n.value[$];return y&&g.push(y),g},[]));return{sourceData:r,targetData:i}},useMove=(e,t,n)=>{const r=usePropsAlias(e),i=(y,k,j)=>{n(UPDATE_MODEL_EVENT,y),n(CHANGE_EVENT,y,k,j)};return{addToLeft:()=>{const y=e.modelValue.slice();t.rightChecked.forEach(k=>{const j=y.indexOf(k);j>-1&&y.splice(j,1)}),i(y,"left",t.rightChecked)},addToRight:()=>{let y=e.modelValue.slice();const k=e.data.filter(j=>{const L=j[r.value.key];return t.leftChecked.includes(L)&&!e.modelValue.includes(L)}).map(j=>j[r.value.key]);y=e.targetOrder==="unshift"?k.concat(y):y.concat(k),e.targetOrder==="original"&&(y=e.data.filter(j=>y.includes(j[r.value.key])).map(j=>j[r.value.key])),i(y,"right",t.leftChecked)}}},__default__$9=defineComponent({name:"ElTransferPanel"}),_sfc_main$k=defineComponent({...__default__$9,props:transferPanelProps,emits:transferPanelEmits,setup(e,{expose:t,emit:n}){const r=e,i=useSlots(),g=({option:pe})=>pe,{t:$}=useLocale(),y=useNamespace("transfer"),k=reactive({checked:[],allChecked:!1,query:"",checkChangeByUser:!0}),j=usePropsAlias(r),{filteredData:L,checkedSummary:V,isIndeterminate:z,handleAllCheckedChange:oe}=useCheck$1(r,k,n),re=computed(()=>!isEmpty(k.query)&&isEmpty(L.value)),ie=computed(()=>!isEmpty(i.default()[0].children)),{checked:ae,allChecked:le,query:de}=toRefs(k);return t({query:de}),(pe,he)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref(y).b("panel"))},[createBaseVNode("p",{class:normalizeClass(unref(y).be("panel","header"))},[createVNode(unref(ElCheckbox),{modelValue:unref(le),"onUpdate:modelValue":he[0]||(he[0]=ue=>isRef(le)?le.value=ue:null),indeterminate:unref(z),"validate-event":!1,onChange:unref(oe)},{default:withCtx(()=>[createTextVNode(toDisplayString$1(pe.title)+" ",1),createBaseVNode("span",null,toDisplayString$1(unref(V)),1)]),_:1},8,["modelValue","indeterminate","onChange"])],2),createBaseVNode("div",{class:normalizeClass([unref(y).be("panel","body"),unref(y).is("with-footer",unref(ie))])},[pe.filterable?(openBlock(),createBlock(unref(ElInput),{key:0,modelValue:unref(de),"onUpdate:modelValue":he[1]||(he[1]=ue=>isRef(de)?de.value=ue:null),class:normalizeClass(unref(y).be("panel","filter")),size:"default",placeholder:pe.placeholder,"prefix-icon":unref(search_default),clearable:"","validate-event":!1},null,8,["modelValue","class","placeholder","prefix-icon"])):createCommentVNode("v-if",!0),withDirectives(createVNode(unref(ElCheckboxGroup$1),{modelValue:unref(ae),"onUpdate:modelValue":he[2]||(he[2]=ue=>isRef(ae)?ae.value=ue:null),"validate-event":!1,class:normalizeClass([unref(y).is("filterable",pe.filterable),unref(y).be("panel","list")])},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(unref(L),ue=>(openBlock(),createBlock(unref(ElCheckbox),{key:ue[unref(j).key],class:normalizeClass(unref(y).be("panel","item")),label:ue[unref(j).key],disabled:ue[unref(j).disabled],"validate-event":!1},{default:withCtx(()=>{var _e;return[createVNode(g,{option:(_e=pe.optionRender)==null?void 0:_e.call(pe,ue)},null,8,["option"])]}),_:2},1032,["class","label","disabled"]))),128))]),_:1},8,["modelValue","class"]),[[vShow,!unref(re)&&!unref(isEmpty)(pe.data)]]),withDirectives(createBaseVNode("p",{class:normalizeClass(unref(y).be("panel","empty"))},toDisplayString$1(unref(re)?unref($)("el.transfer.noMatch"):unref($)("el.transfer.noData")),3),[[vShow,unref(re)||unref(isEmpty)(pe.data)]])],2),unref(ie)?(openBlock(),createElementBlock("p",{key:0,class:normalizeClass(unref(y).be("panel","footer"))},[renderSlot(pe.$slots,"default")],2)):createCommentVNode("v-if",!0)],2))}});var TransferPanel=_export_sfc$1(_sfc_main$k,[["__file","/home/runner/work/element-plus/element-plus/packages/components/transfer/src/transfer-panel.vue"]]);const _hoisted_1$b={key:0},_hoisted_2$9={key:0},__default__$8=defineComponent({name:"ElTransfer"}),_sfc_main$j=defineComponent({...__default__$8,props:transferProps,emits:transferEmits,setup(e,{expose:t,emit:n}){const r=e,i=useSlots(),{t:g}=useLocale(),$=useNamespace("transfer"),{formItem:y}=useFormItem(),k=reactive({leftChecked:[],rightChecked:[]}),j=usePropsAlias(r),{sourceData:L,targetData:V}=useComputedData(r),{onSourceCheckedChange:z,onTargetCheckedChange:oe}=useCheckedChange(k,n),{addToLeft:re,addToRight:ie}=useMove(r,k,n),ae=ref(),le=ref(),de=Ce=>{switch(Ce){case"left":ae.value.query="";break;case"right":le.value.query="";break}},pe=computed(()=>r.buttonTexts.length===2),he=computed(()=>r.titles[0]||g("el.transfer.titles.0")),ue=computed(()=>r.titles[1]||g("el.transfer.titles.1")),_e=computed(()=>r.filterPlaceholder||g("el.transfer.filterPlaceholder"));watch(()=>r.modelValue,()=>{var Ce;r.validateEvent&&((Ce=y==null?void 0:y.validate)==null||Ce.call(y,"change").catch(Oe=>void 0))});const Ie=computed(()=>Ce=>r.renderContent?r.renderContent(h$1,Ce):i.default?i.default({option:Ce}):h$1("span",Ce[j.value.label]||Ce[j.value.key]));return t({clearQuery:de,leftPanel:ae,rightPanel:le}),(Ce,Oe)=>(openBlock(),createElementBlock("div",{class:normalizeClass(unref($).b())},[createVNode(TransferPanel,{ref_key:"leftPanel",ref:ae,data:unref(L),"option-render":unref(Ie),placeholder:unref(_e),title:unref(he),filterable:Ce.filterable,format:Ce.format,"filter-method":Ce.filterMethod,"default-checked":Ce.leftDefaultChecked,props:r.props,onCheckedChange:unref(z)},{default:withCtx(()=>[renderSlot(Ce.$slots,"left-footer")]),_:3},8,["data","option-render","placeholder","title","filterable","format","filter-method","default-checked","props","onCheckedChange"]),createBaseVNode("div",{class:normalizeClass(unref($).e("buttons"))},[createVNode(unref(ElButton),{type:"primary",class:normalizeClass([unref($).e("button"),unref($).is("with-texts",unref(pe))]),disabled:unref(isEmpty)(k.rightChecked),onClick:unref(re)},{default:withCtx(()=>[createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_left_default))]),_:1}),unref(isUndefined)(Ce.buttonTexts[0])?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("span",_hoisted_1$b,toDisplayString$1(Ce.buttonTexts[0]),1))]),_:1},8,["class","disabled","onClick"]),createVNode(unref(ElButton),{type:"primary",class:normalizeClass([unref($).e("button"),unref($).is("with-texts",unref(pe))]),disabled:unref(isEmpty)(k.leftChecked),onClick:unref(ie)},{default:withCtx(()=>[unref(isUndefined)(Ce.buttonTexts[1])?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("span",_hoisted_2$9,toDisplayString$1(Ce.buttonTexts[1]),1)),createVNode(unref(ElIcon),null,{default:withCtx(()=>[createVNode(unref(arrow_right_default))]),_:1})]),_:1},8,["class","disabled","onClick"])],2),createVNode(TransferPanel,{ref_key:"rightPanel",ref:le,data:unref(V),"option-render":unref(Ie),placeholder:unref(_e),filterable:Ce.filterable,format:Ce.format,"filter-method":Ce.filterMethod,title:unref(ue),"default-checked":Ce.rightDefaultChecked,props:r.props,onCheckedChange:unref(oe)},{default:withCtx(()=>[renderSlot(Ce.$slots,"right-footer")]),_:3},8,["data","option-render","placeholder","filterable","format","filter-method","title","default-checked","props","onCheckedChange"])],2))}});var Transfer=_export_sfc$1(_sfc_main$j,[["__file","/home/runner/work/element-plus/element-plus/packages/components/transfer/src/transfer.vue"]]);const ElTransfer=withInstall(Transfer),NODE_KEY="$treeNodeId",markNodeData=function(e,t){!t||t[NODE_KEY]||Object.defineProperty(t,NODE_KEY,{value:e.id,enumerable:!1,configurable:!1,writable:!1})},getNodeKey=function(e,t){return e?t[e]:t[NODE_KEY]},handleCurrentChange=(e,t,n)=>{const r=e.value.currentNode;n();const i=e.value.currentNode;r!==i&&t("current-change",i?i.data:null,i)},getChildState=e=>{let t=!0,n=!0,r=!0;for(let i=0,g=e.length;i0&&t.lazy&&t.defaultExpandAll&&this.expand(),Array.isArray(this.data)||markNodeData(this,this.data),!this.data)return;const r=t.defaultExpandedKeys,i=t.key;i&&r&&r.includes(this.key)&&this.expand(null,t.autoExpandParent),i&&t.currentNodeKey!==void 0&&this.key===t.currentNodeKey&&(t.currentNode=this,t.currentNode.isCurrent=!0),t.lazy&&t._initDefaultCheckedNode(this),this.updateLeafState(),this.parent&&(this.level===1||this.parent.expanded===!0)&&(this.canFocus=!0)}setData(t){Array.isArray(t)||markNodeData(this,t),this.data=t,this.childNodes=[];let n;this.level===0&&Array.isArray(this.data)?n=this.data:n=getPropertyFromData(this,"children")||[];for(let r=0,i=n.length;r-1)return t.childNodes[n+1]}return null}get previousSibling(){const t=this.parent;if(t){const n=t.childNodes.indexOf(this);if(n>-1)return n>0?t.childNodes[n-1]:null}return null}contains(t,n=!0){return(this.childNodes||[]).some(r=>r===t||n&&r.contains(t))}remove(){const t=this.parent;t&&t.removeChild(this)}insertChild(t,n,r){if(!t)throw new Error("InsertChild error: child is required.");if(!(t instanceof Node$1)){if(!r){const i=this.getChildren(!0);i.includes(t.data)||(typeof n=="undefined"||n<0?i.push(t.data):i.splice(n,0,t.data))}Object.assign(t,{parent:this,store:this.store}),t=reactive(new Node$1(t)),t instanceof Node$1&&t.initialize()}t.level=this.level+1,typeof n=="undefined"||n<0?this.childNodes.push(t):this.childNodes.splice(n,0,t),this.updateLeafState()}insertBefore(t,n){let r;n&&(r=this.childNodes.indexOf(n)),this.insertChild(t,r)}insertAfter(t,n){let r;n&&(r=this.childNodes.indexOf(n),r!==-1&&(r+=1)),this.insertChild(t,r)}removeChild(t){const n=this.getChildren()||[],r=n.indexOf(t.data);r>-1&&n.splice(r,1);const i=this.childNodes.indexOf(t);i>-1&&(this.store&&this.store.deregisterNode(t),t.parent=null,this.childNodes.splice(i,1)),this.updateLeafState()}removeChildByData(t){let n=null;for(let r=0;r{if(n){let i=this.parent;for(;i.level>0;)i.expanded=!0,i=i.parent}this.expanded=!0,t&&t(),this.childNodes.forEach(i=>{i.canFocus=!0})};this.shouldLoadData()?this.loadData(i=>{Array.isArray(i)&&(this.checked?this.setChecked(!0,!0):this.store.checkStrictly||reInitChecked(this),r())}):r()}doCreateChildren(t,n={}){t.forEach(r=>{this.insertChild(Object.assign({data:r},n),void 0,!0)})}collapse(){this.expanded=!1,this.childNodes.forEach(t=>{t.canFocus=!1})}shouldLoadData(){return this.store.lazy===!0&&this.store.load&&!this.loaded}updateLeafState(){if(this.store.lazy===!0&&this.loaded!==!0&&typeof this.isLeafByUser!="undefined"){this.isLeaf=this.isLeafByUser;return}const t=this.childNodes;if(!this.store.lazy||this.store.lazy===!0&&this.loaded===!0){this.isLeaf=!t||t.length===0;return}this.isLeaf=!1}setChecked(t,n,r,i){if(this.indeterminate=t==="half",this.checked=t===!0,this.store.checkStrictly)return;if(!(this.shouldLoadData()&&!this.store.checkDescendants)){const{all:$,allWithoutDisable:y}=getChildState(this.childNodes);!this.isLeaf&&!$&&y&&(this.checked=!1,t=!1);const k=()=>{if(n){const j=this.childNodes;for(let z=0,oe=j.length;z{k(),reInitChecked(this)},{checked:t!==!1});return}else k()}const g=this.parent;!g||g.level===0||r||reInitChecked(g)}getChildren(t=!1){if(this.level===0)return this.data;const n=this.data;if(!n)return null;const r=this.store.props;let i="children";return r&&(i=r.children||"children"),n[i]===void 0&&(n[i]=null),t&&!n[i]&&(n[i]=[]),n[i]}updateChildren(){const t=this.getChildren()||[],n=this.childNodes.map(g=>g.data),r={},i=[];t.forEach((g,$)=>{const y=g[NODE_KEY];!!y&&n.findIndex(j=>j[NODE_KEY]===y)>=0?r[y]={index:$,data:g}:i.push({index:$,data:g})}),this.store.lazy||n.forEach(g=>{r[g[NODE_KEY]]||this.removeChildByData(g)}),i.forEach(({index:g,data:$})=>{this.insertChild({data:$},g)}),this.updateLeafState()}loadData(t,n={}){if(this.store.lazy===!0&&this.store.load&&!this.loaded&&(!this.loading||Object.keys(n).length)){this.loading=!0;const r=i=>{this.childNodes=[],this.doCreateChildren(i,n),this.loaded=!0,this.loading=!1,this.updateLeafState(),t&&t.call(this,i)};this.store.load(this,r)}else t&&t.call(this)}}class TreeStore{constructor(t){this.currentNode=null,this.currentNodeKey=null;for(const n in t)hasOwn$2(t,n)&&(this[n]=t[n]);this.nodesMap={}}initialize(){if(this.root=new Node$1({data:this.data,store:this}),this.root.initialize(),this.lazy&&this.load){const t=this.load;t(this.root,n=>{this.root.doCreateChildren(n),this._initDefaultCheckedNodes()})}else this._initDefaultCheckedNodes()}filter(t){const n=this.filterNodeMethod,r=this.lazy,i=function(g){const $=g.root?g.root.childNodes:g.childNodes;if($.forEach(y=>{y.visible=n.call(y,t,y.data,y),i(y)}),!g.visible&&$.length){let y=!0;y=!$.some(k=>k.visible),g.root?g.root.visible=y===!1:g.visible=y===!1}!t||g.visible&&!g.isLeaf&&!r&&g.expand()};i(this)}setData(t){t!==this.root.data?(this.root.setData(t),this._initDefaultCheckedNodes()):this.root.updateChildren()}getNode(t){if(t instanceof Node$1)return t;const n=isObject$4(t)?getNodeKey(this.key,t):t;return this.nodesMap[n]||null}insertBefore(t,n){const r=this.getNode(n);r.parent.insertBefore({data:t},r)}insertAfter(t,n){const r=this.getNode(n);r.parent.insertAfter({data:t},r)}remove(t){const n=this.getNode(t);n&&n.parent&&(n===this.currentNode&&(this.currentNode=null),n.parent.removeChild(n))}append(t,n){const r=n?this.getNode(n):this.root;r&&r.insertChild({data:t})}_initDefaultCheckedNodes(){const t=this.defaultCheckedKeys||[],n=this.nodesMap;t.forEach(r=>{const i=n[r];i&&i.setChecked(!0,!this.checkStrictly)})}_initDefaultCheckedNode(t){(this.defaultCheckedKeys||[]).includes(t.key)&&t.setChecked(!0,!this.checkStrictly)}setDefaultCheckedKey(t){t!==this.defaultCheckedKeys&&(this.defaultCheckedKeys=t,this._initDefaultCheckedNodes())}registerNode(t){const n=this.key;!t||!t.data||(n?t.key!==void 0&&(this.nodesMap[t.key]=t):this.nodesMap[t.id]=t)}deregisterNode(t){!this.key||!t||!t.data||(t.childNodes.forEach(r=>{this.deregisterNode(r)}),delete this.nodesMap[t.key])}getCheckedNodes(t=!1,n=!1){const r=[],i=function(g){(g.root?g.root.childNodes:g.childNodes).forEach(y=>{(y.checked||n&&y.indeterminate)&&(!t||t&&y.isLeaf)&&r.push(y.data),i(y)})};return i(this),r}getCheckedKeys(t=!1){return this.getCheckedNodes(t).map(n=>(n||{})[this.key])}getHalfCheckedNodes(){const t=[],n=function(r){(r.root?r.root.childNodes:r.childNodes).forEach(g=>{g.indeterminate&&t.push(g.data),n(g)})};return n(this),t}getHalfCheckedKeys(){return this.getHalfCheckedNodes().map(t=>(t||{})[this.key])}_getAllNodes(){const t=[],n=this.nodesMap;for(const r in n)hasOwn$2(n,r)&&t.push(n[r]);return t}updateChildren(t,n){const r=this.nodesMap[t];if(!r)return;const i=r.childNodes;for(let g=i.length-1;g>=0;g--){const $=i[g];this.remove($.data)}for(let g=0,$=n.length;g<$;g++){const y=n[g];this.append(y,r.data)}}_setCheckedKeys(t,n=!1,r){const i=this._getAllNodes().sort((y,k)=>k.level-y.level),g=Object.create(null),$=Object.keys(r);i.forEach(y=>y.setChecked(!1,!1));for(let y=0,k=i.length;y0;)g[z.data[t]]=!0,z=z.parent;if(j.isLeaf||this.checkStrictly){j.setChecked(!0,!1);continue}if(j.setChecked(!0,!0),n){j.setChecked(!1,!1);const oe=function(re){re.childNodes.forEach(ae=>{ae.isLeaf||ae.setChecked(!1,!1),oe(ae)})};oe(j)}}}setCheckedNodes(t,n=!1){const r=this.key,i={};t.forEach(g=>{i[(g||{})[r]]=!0}),this._setCheckedKeys(r,n,i)}setCheckedKeys(t,n=!1){this.defaultCheckedKeys=t;const r=this.key,i={};t.forEach(g=>{i[g]=!0}),this._setCheckedKeys(r,n,i)}setDefaultExpandedKeys(t){t=t||[],this.defaultExpandedKeys=t,t.forEach(n=>{const r=this.getNode(n);r&&r.expand(null,this.autoExpandParent)})}setChecked(t,n,r){const i=this.getNode(t);i&&i.setChecked(!!n,r)}getCurrentNode(){return this.currentNode}setCurrentNode(t){const n=this.currentNode;n&&(n.isCurrent=!1),this.currentNode=t,this.currentNode.isCurrent=!0}setUserCurrentNode(t,n=!0){const r=t[this.key],i=this.nodesMap[r];this.setCurrentNode(i),n&&this.currentNode.level>1&&this.currentNode.parent.expand(null,!0)}setCurrentNodeKey(t,n=!0){if(t==null){this.currentNode&&(this.currentNode.isCurrent=!1),this.currentNode=null;return}const r=this.getNode(t);r&&(this.setCurrentNode(r),n&&this.currentNode.level>1&&this.currentNode.parent.expand(null,!0))}}const _sfc_main$i=defineComponent({name:"ElTreeNodeContent",props:{node:{type:Object,required:!0},renderContent:Function},setup(e){const t=useNamespace("tree"),n=inject("NodeInstance"),r=inject("RootTree");return()=>{const i=e.node,{data:g,store:$}=i;return e.renderContent?e.renderContent(h$1,{_self:n,node:i,data:g,store:$}):r.ctx.slots.default?r.ctx.slots.default({node:i,data:g}):h$1("span",{class:t.be("node","label")},[i.label])}}});var NodeContent=_export_sfc$1(_sfc_main$i,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tree/src/tree-node-content.vue"]]);function useNodeExpandEventBroadcast(e){const t=inject("TreeNodeMap",null),n={treeNodeExpand:r=>{e.node!==r&&e.node.collapse()},children:[]};return t&&t.children.push(n),provide("TreeNodeMap",n),{broadcastExpanded:r=>{if(!!e.accordion)for(const i of n.children)i.treeNodeExpand(r)}}}const dragEventsKey=Symbol("dragEvents");function useDragNodeHandler({props:e,ctx:t,el$:n,dropIndicator$:r,store:i}){const g=useNamespace("tree"),$=ref({showDropIndicator:!1,draggingNode:null,dropNode:null,allowDrop:!0,dropType:null});return provide(dragEventsKey,{treeNodeDragStart:({event:L,treeNode:V})=>{if(typeof e.allowDrag=="function"&&!e.allowDrag(V.node))return L.preventDefault(),!1;L.dataTransfer.effectAllowed="move";try{L.dataTransfer.setData("text/plain","")}catch{}$.value.draggingNode=V,t.emit("node-drag-start",V.node,L)},treeNodeDragOver:({event:L,treeNode:V})=>{const z=V,oe=$.value.dropNode;oe&&oe!==z&&removeClass(oe.$el,g.is("drop-inner"));const re=$.value.draggingNode;if(!re||!z)return;let ie=!0,ae=!0,le=!0,de=!0;typeof e.allowDrop=="function"&&(ie=e.allowDrop(re.node,z.node,"prev"),de=ae=e.allowDrop(re.node,z.node,"inner"),le=e.allowDrop(re.node,z.node,"next")),L.dataTransfer.dropEffect=ae||ie||le?"move":"none",(ie||ae||le)&&oe!==z&&(oe&&t.emit("node-drag-leave",re.node,oe.node,L),t.emit("node-drag-enter",re.node,z.node,L)),(ie||ae||le)&&($.value.dropNode=z),z.node.nextSibling===re.node&&(le=!1),z.node.previousSibling===re.node&&(ie=!1),z.node.contains(re.node,!1)&&(ae=!1),(re.node===z.node||re.node.contains(z.node))&&(ie=!1,ae=!1,le=!1);const pe=z.$el.getBoundingClientRect(),he=n.value.getBoundingClientRect();let ue;const _e=ie?ae?.25:le?.45:1:-1,Ie=le?ae?.75:ie?.55:0:1;let Ce=-9999;const Oe=L.clientY-pe.top;Oepe.height*Ie?ue="after":ae?ue="inner":ue="none";const $e=z.$el.querySelector(`.${g.be("node","expand-icon")}`).getBoundingClientRect(),qe=r.value;ue==="before"?Ce=$e.top-he.top:ue==="after"&&(Ce=$e.bottom-he.top),qe.style.top=`${Ce}px`,qe.style.left=`${$e.right-he.left}px`,ue==="inner"?addClass(z.$el,g.is("drop-inner")):removeClass(z.$el,g.is("drop-inner")),$.value.showDropIndicator=ue==="before"||ue==="after",$.value.allowDrop=$.value.showDropIndicator||de,$.value.dropType=ue,t.emit("node-drag-over",re.node,z.node,L)},treeNodeDragEnd:L=>{const{draggingNode:V,dropType:z,dropNode:oe}=$.value;if(L.preventDefault(),L.dataTransfer.dropEffect="move",V&&oe){const re={data:V.node.data};z!=="none"&&V.node.remove(),z==="before"?oe.node.parent.insertBefore(re,oe.node):z==="after"?oe.node.parent.insertAfter(re,oe.node):z==="inner"&&oe.node.insertChild(re),z!=="none"&&i.value.registerNode(re),removeClass(oe.$el,g.is("drop-inner")),t.emit("node-drag-end",V.node,oe.node,z,L),z!=="none"&&t.emit("node-drop",V.node,oe.node,z,L)}V&&!oe&&t.emit("node-drag-end",V.node,null,z,L),$.value.showDropIndicator=!1,$.value.draggingNode=null,$.value.dropNode=null,$.value.allowDrop=!0}}),{dragState:$}}const _sfc_main$h=defineComponent({name:"ElTreeNode",components:{ElCollapseTransition:_CollapseTransition,ElCheckbox,NodeContent,ElIcon,Loading:loading_default},props:{node:{type:Node$1,default:()=>({})},props:{type:Object,default:()=>({})},accordion:Boolean,renderContent:Function,renderAfterExpand:Boolean,showCheckbox:{type:Boolean,default:!1}},emits:["node-expand"],setup(e,t){const n=useNamespace("tree"),{broadcastExpanded:r}=useNodeExpandEventBroadcast(e),i=inject("RootTree"),g=ref(!1),$=ref(!1),y=ref(null),k=ref(null),j=ref(null),L=inject(dragEventsKey),V=getCurrentInstance();provide("NodeInstance",V),e.node.expanded&&(g.value=!0,$.value=!0);const z=i.props.children||"children";watch(()=>{const Oe=e.node.data[z];return Oe&&[...Oe]},()=>{e.node.updateChildren()}),watch(()=>e.node.indeterminate,Oe=>{ie(e.node.checked,Oe)}),watch(()=>e.node.checked,Oe=>{ie(Oe,e.node.indeterminate)}),watch(()=>e.node.expanded,Oe=>{nextTick(()=>g.value=Oe),Oe&&($.value=!0)});const oe=Oe=>getNodeKey(i.props.nodeKey,Oe.data),re=Oe=>{const $e=e.props.class;if(!$e)return{};let qe;if(isFunction$4($e)){const{data:ze}=Oe;qe=$e(ze,Oe)}else qe=$e;return isString$3(qe)?{[qe]:!0}:qe},ie=(Oe,$e)=>{(y.value!==Oe||k.value!==$e)&&i.ctx.emit("check-change",e.node.data,Oe,$e),y.value=Oe,k.value=$e},ae=Oe=>{handleCurrentChange(i.store,i.ctx.emit,()=>i.store.value.setCurrentNode(e.node)),i.currentNode.value=e.node,i.props.expandOnClickNode&&de(),i.props.checkOnClickNode&&!e.node.disabled&&pe(null,{target:{checked:!e.node.checked}}),i.ctx.emit("node-click",e.node.data,e.node,V,Oe)},le=Oe=>{i.instance.vnode.props.onNodeContextmenu&&(Oe.stopPropagation(),Oe.preventDefault()),i.ctx.emit("node-contextmenu",Oe,e.node.data,e.node,V)},de=()=>{e.node.isLeaf||(g.value?(i.ctx.emit("node-collapse",e.node.data,e.node,V),e.node.collapse()):(e.node.expand(),t.emit("node-expand",e.node.data,e.node,V)))},pe=(Oe,$e)=>{e.node.setChecked($e.target.checked,!i.props.checkStrictly),nextTick(()=>{const qe=i.store.value;i.ctx.emit("check",e.node.data,{checkedNodes:qe.getCheckedNodes(),checkedKeys:qe.getCheckedKeys(),halfCheckedNodes:qe.getHalfCheckedNodes(),halfCheckedKeys:qe.getHalfCheckedKeys()})})};return{ns:n,node$:j,tree:i,expanded:g,childNodeRendered:$,oldChecked:y,oldIndeterminate:k,getNodeKey:oe,getNodeClass:re,handleSelectChange:ie,handleClick:ae,handleContextMenu:le,handleExpandIconClick:de,handleCheckChange:pe,handleChildNodeExpand:(Oe,$e,qe)=>{r($e),i.ctx.emit("node-expand",Oe,$e,qe)},handleDragStart:Oe=>{!i.props.draggable||L.treeNodeDragStart({event:Oe,treeNode:e})},handleDragOver:Oe=>{Oe.preventDefault(),i.props.draggable&&L.treeNodeDragOver({event:Oe,treeNode:{$el:j.value,node:e.node}})},handleDrop:Oe=>{Oe.preventDefault()},handleDragEnd:Oe=>{!i.props.draggable||L.treeNodeDragEnd(Oe)},CaretRight:caret_right_default}}}),_hoisted_1$a=["aria-expanded","aria-disabled","aria-checked","draggable","data-key"],_hoisted_2$8=["aria-expanded"];function _sfc_render$7(e,t,n,r,i,g){const $=resolveComponent("el-icon"),y=resolveComponent("el-checkbox"),k=resolveComponent("loading"),j=resolveComponent("node-content"),L=resolveComponent("el-tree-node"),V=resolveComponent("el-collapse-transition");return withDirectives((openBlock(),createElementBlock("div",{ref:"node$",class:normalizeClass([e.ns.b("node"),e.ns.is("expanded",e.expanded),e.ns.is("current",e.node.isCurrent),e.ns.is("hidden",!e.node.visible),e.ns.is("focusable",!e.node.disabled),e.ns.is("checked",!e.node.disabled&&e.node.checked),e.getNodeClass(e.node)]),role:"treeitem",tabindex:"-1","aria-expanded":e.expanded,"aria-disabled":e.node.disabled,"aria-checked":e.node.checked,draggable:e.tree.props.draggable,"data-key":e.getNodeKey(e.node),onClick:t[1]||(t[1]=withModifiers((...z)=>e.handleClick&&e.handleClick(...z),["stop"])),onContextmenu:t[2]||(t[2]=(...z)=>e.handleContextMenu&&e.handleContextMenu(...z)),onDragstart:t[3]||(t[3]=withModifiers((...z)=>e.handleDragStart&&e.handleDragStart(...z),["stop"])),onDragover:t[4]||(t[4]=withModifiers((...z)=>e.handleDragOver&&e.handleDragOver(...z),["stop"])),onDragend:t[5]||(t[5]=withModifiers((...z)=>e.handleDragEnd&&e.handleDragEnd(...z),["stop"])),onDrop:t[6]||(t[6]=withModifiers((...z)=>e.handleDrop&&e.handleDrop(...z),["stop"]))},[createBaseVNode("div",{class:normalizeClass(e.ns.be("node","content")),style:normalizeStyle({paddingLeft:(e.node.level-1)*e.tree.props.indent+"px"})},[e.tree.props.icon||e.CaretRight?(openBlock(),createBlock($,{key:0,class:normalizeClass([e.ns.be("node","expand-icon"),e.ns.is("leaf",e.node.isLeaf),{expanded:!e.node.isLeaf&&e.expanded}]),onClick:withModifiers(e.handleExpandIconClick,["stop"])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(e.tree.props.icon||e.CaretRight)))]),_:1},8,["class","onClick"])):createCommentVNode("v-if",!0),e.showCheckbox?(openBlock(),createBlock(y,{key:1,"model-value":e.node.checked,indeterminate:e.node.indeterminate,disabled:!!e.node.disabled,onClick:t[0]||(t[0]=withModifiers(()=>{},["stop"])),onChange:e.handleCheckChange},null,8,["model-value","indeterminate","disabled","onChange"])):createCommentVNode("v-if",!0),e.node.loading?(openBlock(),createBlock($,{key:2,class:normalizeClass([e.ns.be("node","loading-icon"),e.ns.is("loading")])},{default:withCtx(()=>[createVNode(k)]),_:1},8,["class"])):createCommentVNode("v-if",!0),createVNode(j,{node:e.node,"render-content":e.renderContent},null,8,["node","render-content"])],6),createVNode(V,null,{default:withCtx(()=>[!e.renderAfterExpand||e.childNodeRendered?withDirectives((openBlock(),createElementBlock("div",{key:0,class:normalizeClass(e.ns.be("node","children")),role:"group","aria-expanded":e.expanded},[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.node.childNodes,z=>(openBlock(),createBlock(L,{key:e.getNodeKey(z),"render-content":e.renderContent,"render-after-expand":e.renderAfterExpand,"show-checkbox":e.showCheckbox,node:z,accordion:e.accordion,props:e.props,onNodeExpand:e.handleChildNodeExpand},null,8,["render-content","render-after-expand","show-checkbox","node","accordion","props","onNodeExpand"]))),128))],10,_hoisted_2$8)),[[vShow,e.expanded]]):createCommentVNode("v-if",!0)]),_:1})],42,_hoisted_1$a)),[[vShow,e.node.visible]])}var ElTreeNode$1=_export_sfc$1(_sfc_main$h,[["render",_sfc_render$7],["__file","/home/runner/work/element-plus/element-plus/packages/components/tree/src/tree-node.vue"]]);function useKeydown({el$:e},t){const n=useNamespace("tree"),r=shallowRef([]),i=shallowRef([]);onMounted(()=>{$()}),onUpdated(()=>{r.value=Array.from(e.value.querySelectorAll("[role=treeitem]")),i.value=Array.from(e.value.querySelectorAll("input[type=checkbox]"))}),watch(i,y=>{y.forEach(k=>{k.setAttribute("tabindex","-1")})}),useEventListener(e,"keydown",y=>{const k=y.target;if(!k.className.includes(n.b("node")))return;const j=y.code;r.value=Array.from(e.value.querySelectorAll(`.${n.is("focusable")}[role=treeitem]`));const L=r.value.indexOf(k);let V;if([EVENT_CODE.up,EVENT_CODE.down].includes(j)){if(y.preventDefault(),j===EVENT_CODE.up){V=L===-1?0:L!==0?L-1:r.value.length-1;const oe=V;for(;!t.value.getNode(r.value[V].dataset.key).canFocus;){if(V--,V===oe){V=-1;break}V<0&&(V=r.value.length-1)}}else{V=L===-1?0:L=r.value.length&&(V=0)}}V!==-1&&r.value[V].focus()}[EVENT_CODE.left,EVENT_CODE.right].includes(j)&&(y.preventDefault(),k.click());const z=k.querySelector('[type="checkbox"]');[EVENT_CODE.enter,EVENT_CODE.space].includes(j)&&z&&(y.preventDefault(),z.click())});const $=()=>{var y;r.value=Array.from(e.value.querySelectorAll(`.${n.is("focusable")}[role=treeitem]`)),i.value=Array.from(e.value.querySelectorAll("input[type=checkbox]"));const k=e.value.querySelectorAll(`.${n.is("checked")}[role=treeitem]`);if(k.length){k[0].setAttribute("tabindex","0");return}(y=r.value[0])==null||y.setAttribute("tabindex","0")}}const _sfc_main$g=defineComponent({name:"ElTree",components:{ElTreeNode:ElTreeNode$1},props:{data:{type:Array,default:()=>[]},emptyText:{type:String},renderAfterExpand:{type:Boolean,default:!0},nodeKey:String,checkStrictly:Boolean,defaultExpandAll:Boolean,expandOnClickNode:{type:Boolean,default:!0},checkOnClickNode:Boolean,checkDescendants:{type:Boolean,default:!1},autoExpandParent:{type:Boolean,default:!0},defaultCheckedKeys:Array,defaultExpandedKeys:Array,currentNodeKey:[String,Number],renderContent:Function,showCheckbox:{type:Boolean,default:!1},draggable:{type:Boolean,default:!1},allowDrag:Function,allowDrop:Function,props:{type:Object,default:()=>({children:"children",label:"label",disabled:"disabled"})},lazy:{type:Boolean,default:!1},highlightCurrent:Boolean,load:Function,filterNodeMethod:Function,accordion:Boolean,indent:{type:Number,default:18},icon:{type:iconPropType}},emits:["check-change","current-change","node-click","node-contextmenu","node-collapse","node-expand","check","node-drag-start","node-drag-end","node-drop","node-drag-leave","node-drag-enter","node-drag-over"],setup(e,t){const{t:n}=useLocale(),r=useNamespace("tree"),i=ref(new TreeStore({key:e.nodeKey,data:e.data,lazy:e.lazy,props:e.props,load:e.load,currentNodeKey:e.currentNodeKey,checkStrictly:e.checkStrictly,checkDescendants:e.checkDescendants,defaultCheckedKeys:e.defaultCheckedKeys,defaultExpandedKeys:e.defaultExpandedKeys,autoExpandParent:e.autoExpandParent,defaultExpandAll:e.defaultExpandAll,filterNodeMethod:e.filterNodeMethod}));i.value.initialize();const g=ref(i.value.root),$=ref(null),y=ref(null),k=ref(null),{broadcastExpanded:j}=useNodeExpandEventBroadcast(e),{dragState:L}=useDragNodeHandler({props:e,ctx:t,el$:y,dropIndicator$:k,store:i});useKeydown({el$:y},i);const V=computed(()=>{const{childNodes:jt}=g.value;return!jt||jt.length===0||jt.every(({visible:bn})=>!bn)});watch(()=>e.currentNodeKey,jt=>{i.value.setCurrentNodeKey(jt)}),watch(()=>e.defaultCheckedKeys,jt=>{i.value.setDefaultCheckedKey(jt)}),watch(()=>e.defaultExpandedKeys,jt=>{i.value.setDefaultExpandedKeys(jt)}),watch(()=>e.data,jt=>{i.value.setData(jt)},{deep:!0}),watch(()=>e.checkStrictly,jt=>{i.value.checkStrictly=jt});const z=jt=>{if(!e.filterNodeMethod)throw new Error("[Tree] filterNodeMethod is required when filter");i.value.filter(jt)},oe=jt=>getNodeKey(e.nodeKey,jt.data),re=jt=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in getNodePath");const bn=i.value.getNode(jt);if(!bn)return[];const hn=[bn.data];let Dt=bn.parent;for(;Dt&&Dt!==g.value;)hn.push(Dt.data),Dt=Dt.parent;return hn.reverse()},ie=(jt,bn)=>i.value.getCheckedNodes(jt,bn),ae=jt=>i.value.getCheckedKeys(jt),le=()=>{const jt=i.value.getCurrentNode();return jt?jt.data:null},de=()=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in getCurrentKey");const jt=le();return jt?jt[e.nodeKey]:null},pe=(jt,bn)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in setCheckedNodes");i.value.setCheckedNodes(jt,bn)},he=(jt,bn)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in setCheckedKeys");i.value.setCheckedKeys(jt,bn)},ue=(jt,bn,hn)=>{i.value.setChecked(jt,bn,hn)},_e=()=>i.value.getHalfCheckedNodes(),Ie=()=>i.value.getHalfCheckedKeys(),Ce=(jt,bn=!0)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in setCurrentNode");handleCurrentChange(i,t.emit,()=>i.value.setUserCurrentNode(jt,bn))},Oe=(jt,bn=!0)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in setCurrentKey");handleCurrentChange(i,t.emit,()=>i.value.setCurrentNodeKey(jt,bn))},$e=jt=>i.value.getNode(jt),qe=jt=>{i.value.remove(jt)},ze=(jt,bn)=>{i.value.append(jt,bn)},Ue=(jt,bn)=>{i.value.insertBefore(jt,bn)},kt=(jt,bn)=>{i.value.insertAfter(jt,bn)},At=(jt,bn,hn)=>{j(bn),t.emit("node-expand",jt,bn,hn)},Pt=(jt,bn)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in updateKeyChild");i.value.updateChildren(jt,bn)};return provide("RootTree",{ctx:t,props:e,store:i,root:g,currentNode:$,instance:getCurrentInstance()}),provide(formItemContextKey,void 0),{ns:r,store:i,root:g,currentNode:$,dragState:L,el$:y,dropIndicator$:k,isEmpty:V,filter:z,getNodeKey:oe,getNodePath:re,getCheckedNodes:ie,getCheckedKeys:ae,getCurrentNode:le,getCurrentKey:de,setCheckedNodes:pe,setCheckedKeys:he,setChecked:ue,getHalfCheckedNodes:_e,getHalfCheckedKeys:Ie,setCurrentNode:Ce,setCurrentKey:Oe,t:n,getNode:$e,remove:qe,append:ze,insertBefore:Ue,insertAfter:kt,handleNodeExpand:At,updateKeyChildren:Pt}}});function _sfc_render$6(e,t,n,r,i,g){var $;const y=resolveComponent("el-tree-node");return openBlock(),createElementBlock("div",{ref:"el$",class:normalizeClass([e.ns.b(),e.ns.is("dragging",!!e.dragState.draggingNode),e.ns.is("drop-not-allow",!e.dragState.allowDrop),e.ns.is("drop-inner",e.dragState.dropType==="inner"),{[e.ns.m("highlight-current")]:e.highlightCurrent}]),role:"tree"},[(openBlock(!0),createElementBlock(Fragment,null,renderList(e.root.childNodes,k=>(openBlock(),createBlock(y,{key:e.getNodeKey(k),node:k,props:e.props,accordion:e.accordion,"render-after-expand":e.renderAfterExpand,"show-checkbox":e.showCheckbox,"render-content":e.renderContent,onNodeExpand:e.handleNodeExpand},null,8,["node","props","accordion","render-after-expand","show-checkbox","render-content","onNodeExpand"]))),128)),e.isEmpty?(openBlock(),createElementBlock("div",{key:0,class:normalizeClass(e.ns.e("empty-block"))},[createBaseVNode("span",{class:normalizeClass(e.ns.e("empty-text"))},toDisplayString$1(($=e.emptyText)!=null?$:e.t("el.tree.emptyText")),3)],2)):createCommentVNode("v-if",!0),withDirectives(createBaseVNode("div",{ref:"dropIndicator$",class:normalizeClass(e.ns.e("drop-indicator"))},null,2),[[vShow,e.dragState.showDropIndicator]])],2)}var Tree=_export_sfc$1(_sfc_main$g,[["render",_sfc_render$6],["__file","/home/runner/work/element-plus/element-plus/packages/components/tree/src/tree.vue"]]);Tree.install=e=>{e.component(Tree.name,Tree)};const _Tree=Tree,ElTree=_Tree,useSelect=(e,{attrs:t},{tree:n,key:r})=>{const i=useNamespace("tree-select"),g={...pick$1(toRefs(e),Object.keys(ElSelect.props)),...t,valueKey:r,popperClass:computed(()=>{const $=[i.e("popper")];return e.popperClass&&$.push(e.popperClass),$.join(" ")}),filterMethod:($="")=>{e.filterMethod&&e.filterMethod($),nextTick(()=>{var y;(y=n.value)==null||y.filter($)})},onVisibleChange:$=>{var y;(y=t.onVisibleChange)==null||y.call(t,$),e.filterable&&$&&g.filterMethod()}};return g},component=defineComponent({extends:ElOption,setup(e,t){const n=ElOption.setup(e,t);delete n.selectOptionClick;const r=getCurrentInstance().proxy;return nextTick(()=>{n.select.cachedOptions.get(r.value)||n.select.onOptionCreate(r)}),n},methods:{selectOptionClick(){this.$el.parentElement.click()}}});function isValidValue(e){return e||e===0}function isValidArray(e){return Array.isArray(e)&&e.length}function toValidArray(e){return Array.isArray(e)?e:isValidValue(e)?[e]:[]}function treeFind(e,t,n,r,i){for(let g=0;g{watch(()=>e.modelValue,()=>{e.showCheckbox&&nextTick(()=>{const V=g.value;V&&!isEqual$1(V.getCheckedKeys(),toValidArray(e.modelValue))&&V.setCheckedKeys(toValidArray(e.modelValue))})},{immediate:!0,deep:!0});const y=computed(()=>({value:$.value,...e.props})),k=(V,z)=>{var oe;const re=y.value[V];return isFunction$4(re)?re(z,(oe=g.value)==null?void 0:oe.getNode(k("value",z))):z[re]},j=toValidArray(e.modelValue).map(V=>treeFind(e.data||[],z=>k("value",z)===V,z=>k("children",z),(z,oe,re,ie)=>ie&&k("value",ie))).filter(V=>isValidValue(V)),L=computed(()=>{if(!e.renderAfterExpand&&!e.lazy)return[];const V=[];return treeEach(e.data.concat(e.cacheData),z=>{const oe=k("value",z);V.push({value:oe,currentLabel:k("label",z),isDisabled:k("disabled",z)})},z=>k("children",z)),V});return{...pick$1(toRefs(e),Object.keys(_Tree.props)),...t,nodeKey:$,expandOnClickNode:computed(()=>!e.checkStrictly&&e.expandOnClickNode),defaultExpandedKeys:computed(()=>e.defaultExpandedKeys?e.defaultExpandedKeys.concat(j):j),renderContent:(V,{node:z,data:oe,store:re})=>V(component,{value:k("value",oe),label:k("label",oe),disabled:k("disabled",oe)},e.renderContent?()=>e.renderContent(V,{node:z,data:oe,store:re}):n.default?()=>n.default({node:z,data:oe,store:re}):void 0),filterNodeMethod:(V,z,oe)=>{var re;return e.filterNodeMethod?e.filterNodeMethod(V,z,oe):V?(re=k("label",z))==null?void 0:re.includes(V):!0},onNodeClick:(V,z,oe)=>{var re,ie,ae;if((re=t.onNodeClick)==null||re.call(t,V,z,oe),!(e.showCheckbox&&e.checkOnClickNode))if(!e.showCheckbox&&(e.checkStrictly||z.isLeaf)){if(!k("disabled",V)){const le=(ie=i.value)==null?void 0:ie.options.get(k("value",V));(ae=i.value)==null||ae.handleOptionSelect(le,!0)}}else e.expandOnClickNode&&oe.proxy.handleExpandIconClick()},onCheck:(V,z)=>{var oe;(oe=t.onCheck)==null||oe.call(t,V,z);const re=k("value",V);if(e.checkStrictly)r(UPDATE_MODEL_EVENT,e.multiple?z.checkedKeys:z.checkedKeys.includes(re)?re:void 0);else if(e.multiple)r(UPDATE_MODEL_EVENT,g.value.getCheckedKeys(!0));else{const ie=treeFind([V],de=>!isValidArray(k("children",de))&&!k("disabled",de),de=>k("children",de)),ae=ie?k("value",ie):void 0,le=isValidValue(e.modelValue)&&!!treeFind([V],de=>k("value",de)===e.modelValue,de=>k("children",de));r(UPDATE_MODEL_EVENT,ae===e.modelValue||le?void 0:ae)}},cacheOptions:L}};var CacheOptions=defineComponent({props:{data:{type:Array,default:()=>[]}},setup(e){const t=inject(selectKey);return watch(()=>e.data,()=>{e.data.forEach(n=>{t.cachedOptions.has(n.value)||t.cachedOptions.set(n.value,n)}),t.setSelected()},{immediate:!0,deep:!0}),()=>{}}});const _sfc_main$f=defineComponent({name:"ElTreeSelect",inheritAttrs:!1,props:{...ElSelect.props,..._Tree.props,cacheData:{type:Array,default:()=>[]}},setup(e,t){const{slots:n,expose:r}=t,i=ref(),g=ref(),$=computed(()=>e.nodeKey||e.valueKey||"value"),y=useSelect(e,t,{select:i,tree:g,key:$}),{cacheOptions:k,...j}=useTree$1(e,t,{select:i,tree:g,key:$}),L=reactive({});return r(L),onMounted(()=>{Object.assign(L,{...pick$1(g.value,["filter","updateKeyChildren","getCheckedNodes","setCheckedNodes","getCheckedKeys","setCheckedKeys","setChecked","getHalfCheckedNodes","getHalfCheckedKeys","getCurrentKey","getCurrentNode","setCurrentKey","setCurrentNode","getNode","remove","append","insertBefore","insertAfter"]),...pick$1(i.value,["focus","blur"])})}),()=>h$1(ElSelect,reactive({...y,ref:V=>i.value=V}),{...n,default:()=>[h$1(CacheOptions,{data:k.value}),h$1(_Tree,reactive({...j,ref:V=>g.value=V}))]})}});var TreeSelect=_export_sfc$1(_sfc_main$f,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tree-select/src/tree-select.vue"]]);TreeSelect.install=e=>{e.component(TreeSelect.name,TreeSelect)};const _TreeSelect=TreeSelect,ElTreeSelect=_TreeSelect,ROOT_TREE_INJECTION_KEY=Symbol(),EMPTY_NODE={key:-1,level:-1,data:{}};var TreeOptionsEnum=(e=>(e.KEY="id",e.LABEL="label",e.CHILDREN="children",e.DISABLED="disabled",e))(TreeOptionsEnum||{}),SetOperationEnum=(e=>(e.ADD="add",e.DELETE="delete",e))(SetOperationEnum||{});const treeProps=buildProps({data:{type:definePropType(Array),default:()=>mutable([])},emptyText:{type:String},height:{type:Number,default:200},props:{type:definePropType(Object),default:()=>mutable({children:"children",label:"label",disabled:"disabled",value:"id"})},highlightCurrent:{type:Boolean,default:!1},showCheckbox:{type:Boolean,default:!1},defaultCheckedKeys:{type:definePropType(Array),default:()=>mutable([])},checkStrictly:{type:Boolean,default:!1},defaultExpandedKeys:{type:definePropType(Array),default:()=>mutable([])},indent:{type:Number,default:16},icon:{type:iconPropType},expandOnClickNode:{type:Boolean,default:!0},checkOnClickNode:{type:Boolean,default:!1},currentNodeKey:{type:definePropType([String,Number])},accordion:{type:Boolean,default:!1},filterMethod:{type:definePropType(Function)},perfMode:{type:Boolean,default:!0}}),treeNodeProps=buildProps({node:{type:definePropType(Object),default:()=>mutable(EMPTY_NODE)},expanded:{type:Boolean,default:!1},checked:{type:Boolean,default:!1},indeterminate:{type:Boolean,default:!1},showCheckbox:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},current:{type:Boolean,default:!1},hiddenExpandIcon:{type:Boolean,default:!1}}),treeNodeContentProps=buildProps({node:{type:definePropType(Object),required:!0}}),NODE_CLICK="node-click",NODE_EXPAND="node-expand",NODE_COLLAPSE="node-collapse",CURRENT_CHANGE="current-change",NODE_CHECK="check",NODE_CHECK_CHANGE="check-change",NODE_CONTEXTMENU="node-contextmenu",treeEmits={[NODE_CLICK]:(e,t,n)=>e&&t&&n,[NODE_EXPAND]:(e,t)=>e&&t,[NODE_COLLAPSE]:(e,t)=>e&&t,[CURRENT_CHANGE]:(e,t)=>e&&t,[NODE_CHECK]:(e,t)=>e&&t,[NODE_CHECK_CHANGE]:(e,t)=>e&&typeof t=="boolean",[NODE_CONTEXTMENU]:(e,t,n)=>e&&t&&n},treeNodeEmits={click:(e,t)=>!!(e&&t),toggle:e=>!!e,check:(e,t)=>e&&typeof t=="boolean"};function useCheck(e,t){const n=ref(new Set),r=ref(new Set),{emit:i}=getCurrentInstance();watch([()=>t.value,()=>e.defaultCheckedKeys],()=>nextTick(()=>{de(e.defaultCheckedKeys)}),{immediate:!0});const g=()=>{if(!t.value||!e.showCheckbox||e.checkStrictly)return;const{levelTreeNodeMap:pe,maxLevel:he}=t.value,ue=n.value,_e=new Set;for(let Ie=he-1;Ie>=1;--Ie){const Ce=pe.get(Ie);!Ce||Ce.forEach(Oe=>{const $e=Oe.children;if($e){let qe=!0,ze=!1;for(const Ue of $e){const kt=Ue.key;if(ue.has(kt))ze=!0;else if(_e.has(kt)){qe=!1,ze=!0;break}else qe=!1}qe?ue.add(Oe.key):ze?(_e.add(Oe.key),ue.delete(Oe.key)):(ue.delete(Oe.key),_e.delete(Oe.key))}})}r.value=_e},$=pe=>n.value.has(pe.key),y=pe=>r.value.has(pe.key),k=(pe,he,ue=!0)=>{const _e=n.value,Ie=(Ce,Oe)=>{_e[Oe?SetOperationEnum.ADD:SetOperationEnum.DELETE](Ce.key);const $e=Ce.children;!e.checkStrictly&&$e&&$e.forEach(qe=>{qe.disabled||Ie(qe,Oe)})};Ie(pe,he),g(),ue&&j(pe,he)},j=(pe,he)=>{const{checkedNodes:ue,checkedKeys:_e}=re(),{halfCheckedNodes:Ie,halfCheckedKeys:Ce}=ie();i(NODE_CHECK,pe.data,{checkedKeys:_e,checkedNodes:ue,halfCheckedKeys:Ce,halfCheckedNodes:Ie}),i(NODE_CHECK_CHANGE,pe.data,he)};function L(pe=!1){return re(pe).checkedKeys}function V(pe=!1){return re(pe).checkedNodes}function z(){return ie().halfCheckedKeys}function oe(){return ie().halfCheckedNodes}function re(pe=!1){const he=[],ue=[];if((t==null?void 0:t.value)&&e.showCheckbox){const{treeNodeMap:_e}=t.value;n.value.forEach(Ie=>{const Ce=_e.get(Ie);Ce&&(!pe||pe&&Ce.isLeaf)&&(ue.push(Ie),he.push(Ce.data))})}return{checkedKeys:ue,checkedNodes:he}}function ie(){const pe=[],he=[];if((t==null?void 0:t.value)&&e.showCheckbox){const{treeNodeMap:ue}=t.value;r.value.forEach(_e=>{const Ie=ue.get(_e);Ie&&(he.push(_e),pe.push(Ie.data))})}return{halfCheckedNodes:pe,halfCheckedKeys:he}}function ae(pe){n.value.clear(),r.value.clear(),de(pe)}function le(pe,he){if((t==null?void 0:t.value)&&e.showCheckbox){const ue=t.value.treeNodeMap.get(pe);ue&&k(ue,he,!1)}}function de(pe){if(t!=null&&t.value){const{treeNodeMap:he}=t.value;if(e.showCheckbox&&he&&pe)for(const ue of pe){const _e=he.get(ue);_e&&!$(_e)&&k(_e,!0,!1)}}}return{updateCheckedKeys:g,toggleCheckbox:k,isChecked:$,isIndeterminate:y,getCheckedKeys:L,getCheckedNodes:V,getHalfCheckedKeys:z,getHalfCheckedNodes:oe,setChecked:le,setCheckedKeys:ae}}function useFilter(e,t){const n=ref(new Set([])),r=ref(new Set([])),i=computed(()=>isFunction$4(e.filterMethod));function g(y){var k;if(!i.value)return;const j=new Set,L=r.value,V=n.value,z=[],oe=((k=t.value)==null?void 0:k.treeNodes)||[],re=e.filterMethod;V.clear();function ie(ae){ae.forEach(le=>{z.push(le),re!=null&&re(y,le.data)?z.forEach(pe=>{j.add(pe.key)}):le.isLeaf&&V.add(le.key);const de=le.children;if(de&&ie(de),!le.isLeaf){if(!j.has(le.key))V.add(le.key);else if(de){let pe=!0;for(const he of de)if(!V.has(he.key)){pe=!1;break}pe?L.add(le.key):L.delete(le.key)}}z.pop()})}return ie(oe),j}function $(y){return r.value.has(y.key)}return{hiddenExpandIconKeySet:r,hiddenNodeKeySet:n,doFilter:g,isForceHiddenExpandIcon:$}}function useTree(e,t){const n=ref(new Set(e.defaultExpandedKeys)),r=ref(),i=shallowRef();watch(()=>e.currentNodeKey,Bn=>{r.value=Bn},{immediate:!0}),watch(()=>e.data,Bn=>{En(Bn)},{immediate:!0});const{isIndeterminate:g,isChecked:$,toggleCheckbox:y,getCheckedKeys:k,getCheckedNodes:j,getHalfCheckedKeys:L,getHalfCheckedNodes:V,setChecked:z,setCheckedKeys:oe}=useCheck(e,i),{doFilter:re,hiddenNodeKeySet:ie,isForceHiddenExpandIcon:ae}=useFilter(e,i),le=computed(()=>{var Bn;return((Bn=e.props)==null?void 0:Bn.value)||TreeOptionsEnum.KEY}),de=computed(()=>{var Bn;return((Bn=e.props)==null?void 0:Bn.children)||TreeOptionsEnum.CHILDREN}),pe=computed(()=>{var Bn;return((Bn=e.props)==null?void 0:Bn.disabled)||TreeOptionsEnum.DISABLED}),he=computed(()=>{var Bn;return((Bn=e.props)==null?void 0:Bn.label)||TreeOptionsEnum.LABEL}),ue=computed(()=>{const Bn=n.value,An=ie.value,Pn=[],Mn=i.value&&i.value.treeNodes||[];function Fn(){const jn=[];for(let zn=Mn.length-1;zn>=0;--zn)jn.push(Mn[zn]);for(;jn.length;){const zn=jn.pop();if(!!zn&&(An.has(zn.key)||Pn.push(zn),Bn.has(zn.key))){const Jn=zn.children;if(Jn){const io=Jn.length;for(let eo=io-1;eo>=0;--eo)jn.push(Jn[eo])}}}}return Fn(),Pn}),_e=computed(()=>ue.value.length>0);function Ie(Bn){const An=new Map,Pn=new Map;let Mn=1;function Fn(zn,Jn=1,io=void 0){var eo;const Un=[];for(const Yn of zn){const to=$e(Yn),Hn={level:Jn,key:to,data:Yn};Hn.label=ze(Yn),Hn.parent=io;const On=Oe(Yn);Hn.disabled=qe(Yn),Hn.isLeaf=!On||On.length===0,On&&On.length&&(Hn.children=Fn(On,Jn+1,Hn)),Un.push(Hn),An.set(to,Hn),Pn.has(Jn)||Pn.set(Jn,[]),(eo=Pn.get(Jn))==null||eo.push(Hn)}return Jn>Mn&&(Mn=Jn),Un}const jn=Fn(Bn);return{treeNodeMap:An,levelTreeNodeMap:Pn,maxLevel:Mn,treeNodes:jn}}function Ce(Bn){const An=re(Bn);An&&(n.value=An)}function Oe(Bn){return Bn[de.value]}function $e(Bn){return Bn?Bn[le.value]:""}function qe(Bn){return Bn[pe.value]}function ze(Bn){return Bn[he.value]}function Ue(Bn){n.value.has(Bn.key)?hn(Bn):bn(Bn)}function kt(Bn){n.value=new Set(Bn)}function At(Bn,An){t(NODE_CLICK,Bn.data,Bn,An),Pt(Bn),e.expandOnClickNode&&Ue(Bn),e.showCheckbox&&e.checkOnClickNode&&!Bn.disabled&&y(Bn,!$(Bn),!0)}function Pt(Bn){_n(Bn)||(r.value=Bn.key,t(CURRENT_CHANGE,Bn.data,Bn))}function jt(Bn,An){y(Bn,An)}function bn(Bn){const An=n.value;if(i.value&&e.accordion){const{treeNodeMap:Pn}=i.value;An.forEach(Mn=>{const Fn=Pn.get(Mn);Bn&&Bn.level===(Fn==null?void 0:Fn.level)&&An.delete(Mn)})}An.add(Bn.key),t(NODE_EXPAND,Bn.data,Bn)}function hn(Bn){n.value.delete(Bn.key),t(NODE_COLLAPSE,Bn.data,Bn)}function Dt(Bn){return n.value.has(Bn.key)}function wn(Bn){return!!Bn.disabled}function _n(Bn){const An=r.value;return!!An&&An===Bn.key}function vn(){var Bn,An;if(!!r.value)return(An=(Bn=i.value)==null?void 0:Bn.treeNodeMap.get(r.value))==null?void 0:An.data}function Cn(){return r.value}function xn(Bn){r.value=Bn}function En(Bn){nextTick(()=>i.value=Ie(Bn))}function Sn(Bn){var An;const Pn=isObject$4(Bn)?$e(Bn):Bn;return(An=i.value)==null?void 0:An.treeNodeMap.get(Pn)}return{tree:i,flattenTree:ue,isNotEmpty:_e,getKey:$e,getChildren:Oe,toggleExpand:Ue,toggleCheckbox:y,isExpanded:Dt,isChecked:$,isIndeterminate:g,isDisabled:wn,isCurrent:_n,isForceHiddenExpandIcon:ae,handleNodeClick:At,handleNodeCheck:jt,getCurrentNode:vn,getCurrentKey:Cn,setCurrentKey:xn,getCheckedKeys:k,getCheckedNodes:j,getHalfCheckedKeys:L,getHalfCheckedNodes:V,setChecked:z,setCheckedKeys:oe,filter:Ce,setData:En,getNode:Sn,expandNode:bn,collapseNode:hn,setExpandedKeys:kt}}var ElNodeContent=defineComponent({name:"ElTreeNodeContent",props:treeNodeContentProps,setup(e){const t=inject(ROOT_TREE_INJECTION_KEY),n=useNamespace("tree");return()=>{const r=e.node,{data:i}=r;return t!=null&&t.ctx.slots.default?t.ctx.slots.default({node:r,data:i}):h$1("span",{class:n.be("node","label")},[r==null?void 0:r.label])}}});const _hoisted_1$9=["aria-expanded","aria-disabled","aria-checked","data-key","onClick"],__default__$7=defineComponent({name:"ElTreeNode"}),_sfc_main$e=defineComponent({...__default__$7,props:treeNodeProps,emits:treeNodeEmits,setup(e,{emit:t}){const n=e,r=inject(ROOT_TREE_INJECTION_KEY),i=useNamespace("tree"),g=computed(()=>{var V;return(V=r==null?void 0:r.props.indent)!=null?V:16}),$=computed(()=>{var V;return(V=r==null?void 0:r.props.icon)!=null?V:caret_right_default}),y=V=>{t("click",n.node,V)},k=()=>{t("toggle",n.node)},j=V=>{t("check",n.node,V)},L=V=>{var z,oe,re,ie;(re=(oe=(z=r==null?void 0:r.instance)==null?void 0:z.vnode)==null?void 0:oe.props)!=null&&re.onNodeContextmenu&&(V.stopPropagation(),V.preventDefault()),r==null||r.ctx.emit(NODE_CONTEXTMENU,V,(ie=n.node)==null?void 0:ie.data,n.node)};return(V,z)=>{var oe,re,ie;return openBlock(),createElementBlock("div",{ref:"node$",class:normalizeClass([unref(i).b("node"),unref(i).is("expanded",V.expanded),unref(i).is("current",V.current),unref(i).is("focusable",!V.disabled),unref(i).is("checked",!V.disabled&&V.checked)]),role:"treeitem",tabindex:"-1","aria-expanded":V.expanded,"aria-disabled":V.disabled,"aria-checked":V.checked,"data-key":(oe=V.node)==null?void 0:oe.key,onClick:withModifiers(y,["stop"]),onContextmenu:L},[createBaseVNode("div",{class:normalizeClass(unref(i).be("node","content")),style:normalizeStyle({paddingLeft:`${(V.node.level-1)*unref(g)}px`})},[unref($)?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass([unref(i).is("leaf",!!((re=V.node)!=null&&re.isLeaf)),unref(i).is("hidden",V.hiddenExpandIcon),{expanded:!((ie=V.node)!=null&&ie.isLeaf)&&V.expanded},unref(i).be("node","expand-icon")]),onClick:withModifiers(k,["stop"])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref($))))]),_:1},8,["class","onClick"])):createCommentVNode("v-if",!0),V.showCheckbox?(openBlock(),createBlock(unref(ElCheckbox),{key:1,"model-value":V.checked,indeterminate:V.indeterminate,disabled:V.disabled,onChange:j,onClick:z[0]||(z[0]=withModifiers(()=>{},["stop"]))},null,8,["model-value","indeterminate","disabled"])):createCommentVNode("v-if",!0),createVNode(unref(ElNodeContent),{node:V.node},null,8,["node"])],6)],42,_hoisted_1$9)}}});var ElTreeNode=_export_sfc$1(_sfc_main$e,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tree-v2/src/tree-node.vue"]]);const itemSize=26,__default__$6=defineComponent({name:"ElTreeV2"}),_sfc_main$d=defineComponent({...__default__$6,props:treeProps,emits:treeEmits,setup(e,{expose:t,emit:n}){const r=e,i=useSlots();provide(ROOT_TREE_INJECTION_KEY,{ctx:{emit:n,slots:i},props:r,instance:getCurrentInstance()}),provide(formItemContextKey,void 0);const{t:g}=useLocale(),$=useNamespace("tree"),{flattenTree:y,isNotEmpty:k,toggleExpand:j,isExpanded:L,isIndeterminate:V,isChecked:z,isDisabled:oe,isCurrent:re,isForceHiddenExpandIcon:ie,handleNodeClick:ae,handleNodeCheck:le,toggleCheckbox:de,getCurrentNode:pe,getCurrentKey:he,setCurrentKey:ue,getCheckedKeys:_e,getCheckedNodes:Ie,getHalfCheckedKeys:Ce,getHalfCheckedNodes:Oe,setChecked:$e,setCheckedKeys:qe,filter:ze,setData:Ue,getNode:kt,expandNode:At,collapseNode:Pt,setExpandedKeys:jt}=useTree(r,n);return t({toggleCheckbox:de,getCurrentNode:pe,getCurrentKey:he,setCurrentKey:ue,getCheckedKeys:_e,getCheckedNodes:Ie,getHalfCheckedKeys:Ce,getHalfCheckedNodes:Oe,setChecked:$e,setCheckedKeys:qe,filter:ze,setData:Ue,getNode:kt,expandNode:At,collapseNode:Pt,setExpandedKeys:jt}),(bn,hn)=>{var Dt;return openBlock(),createElementBlock("div",{class:normalizeClass([unref($).b(),{[unref($).m("highlight-current")]:bn.highlightCurrent}]),role:"tree"},[unref(k)?(openBlock(),createBlock(unref(FixedSizeList),{key:0,"class-name":unref($).b("virtual-list"),data:unref(y),total:unref(y).length,height:bn.height,"item-size":itemSize,"perf-mode":bn.perfMode},{default:withCtx(({data:wn,index:_n,style:vn})=>[(openBlock(),createBlock(ElTreeNode,{key:wn[_n].key,style:normalizeStyle(vn),node:wn[_n],expanded:unref(L)(wn[_n]),"show-checkbox":bn.showCheckbox,checked:unref(z)(wn[_n]),indeterminate:unref(V)(wn[_n]),disabled:unref(oe)(wn[_n]),current:unref(re)(wn[_n]),"hidden-expand-icon":unref(ie)(wn[_n]),onClick:unref(ae),onToggle:unref(j),onCheck:unref(le)},null,8,["style","node","expanded","show-checkbox","checked","indeterminate","disabled","current","hidden-expand-icon","onClick","onToggle","onCheck"]))]),_:1},8,["class-name","data","total","height","perf-mode"])):(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref($).e("empty-block"))},[createBaseVNode("span",{class:normalizeClass(unref($).e("empty-text"))},toDisplayString$1((Dt=bn.emptyText)!=null?Dt:unref(g)("el.tree.emptyText")),3)],2))],2)}}});var TreeV2=_export_sfc$1(_sfc_main$d,[["__file","/home/runner/work/element-plus/element-plus/packages/components/tree-v2/src/tree.vue"]]);const ElTreeV2=withInstall(TreeV2),SCOPE$2="ElUpload";class UploadAjaxError extends Error{constructor(t,n,r,i){super(t),this.name="UploadAjaxError",this.status=n,this.method=r,this.url=i}}function getError(e,t,n){let r;return n.response?r=`${n.response.error||n.response}`:n.responseText?r=`${n.responseText}`:r=`fail to ${t.method} ${e} ${n.status}`,new UploadAjaxError(r,n.status,t.method,e)}function getBody(e){const t=e.responseText||e.response;if(!t)return t;try{return JSON.parse(t)}catch{return t}}const ajaxUpload=e=>{typeof XMLHttpRequest=="undefined"&&throwError(SCOPE$2,"XMLHttpRequest is undefined");const t=new XMLHttpRequest,n=e.action;t.upload&&t.upload.addEventListener("progress",g=>{const $=g;$.percent=g.total>0?g.loaded/g.total*100:0,e.onProgress($)});const r=new FormData;if(e.data)for(const[g,$]of Object.entries(e.data))Array.isArray($)?r.append(g,...$):r.append(g,$);r.append(e.filename,e.file,e.file.name),t.addEventListener("error",()=>{e.onError(getError(n,e,t))}),t.addEventListener("load",()=>{if(t.status<200||t.status>=300)return e.onError(getError(n,e,t));e.onSuccess(getBody(t))}),t.open(e.method,n,!0),e.withCredentials&&"withCredentials"in t&&(t.withCredentials=!0);const i=e.headers||{};if(i instanceof Headers)i.forEach((g,$)=>t.setRequestHeader($,g));else for(const[g,$]of Object.entries(i))isNil($)||t.setRequestHeader(g,String($));return t.send(r),t},uploadListTypes=["text","picture","picture-card"];let fileId=1;const genFileId=()=>Date.now()+fileId++,uploadBaseProps=buildProps({action:{type:String,default:"#"},headers:{type:definePropType(Object)},method:{type:String,default:"post"},data:{type:Object,default:()=>mutable({})},multiple:{type:Boolean,default:!1},name:{type:String,default:"file"},drag:{type:Boolean,default:!1},withCredentials:Boolean,showFileList:{type:Boolean,default:!0},accept:{type:String,default:""},type:{type:String,default:"select"},fileList:{type:definePropType(Array),default:()=>mutable([])},autoUpload:{type:Boolean,default:!0},listType:{type:String,values:uploadListTypes,default:"text"},httpRequest:{type:definePropType(Function),default:ajaxUpload},disabled:Boolean,limit:Number}),uploadProps=buildProps({...uploadBaseProps,beforeUpload:{type:definePropType(Function),default:NOOP},beforeRemove:{type:definePropType(Function)},onRemove:{type:definePropType(Function),default:NOOP},onChange:{type:definePropType(Function),default:NOOP},onPreview:{type:definePropType(Function),default:NOOP},onSuccess:{type:definePropType(Function),default:NOOP},onProgress:{type:definePropType(Function),default:NOOP},onError:{type:definePropType(Function),default:NOOP},onExceed:{type:definePropType(Function),default:NOOP}}),uploadListProps=buildProps({files:{type:definePropType(Array),default:()=>mutable([])},disabled:{type:Boolean,default:!1},handlePreview:{type:definePropType(Function),default:NOOP},listType:{type:String,values:uploadListTypes,default:"text"}}),uploadListEmits={remove:e=>!!e},_hoisted_1$8=["onKeydown"],_hoisted_2$7=["src"],_hoisted_3$4=["onClick"],_hoisted_4$3=["onClick"],_hoisted_5$2=["onClick"],__default__$5=defineComponent({name:"ElUploadList"}),_sfc_main$c=defineComponent({...__default__$5,props:uploadListProps,emits:uploadListEmits,setup(e,{emit:t}){const{t:n}=useLocale(),r=useNamespace("upload"),i=useNamespace("icon"),g=useNamespace("list"),$=useDisabled(),y=ref(!1),k=j=>{t("remove",j)};return(j,L)=>(openBlock(),createBlock(TransitionGroup,{tag:"ul",class:normalizeClass([unref(r).b("list"),unref(r).bm("list",j.listType),unref(r).is("disabled",unref($))]),name:unref(g).b()},{default:withCtx(()=>[(openBlock(!0),createElementBlock(Fragment,null,renderList(j.files,V=>(openBlock(),createElementBlock("li",{key:V.uid||V.name,class:normalizeClass([unref(r).be("list","item"),unref(r).is(V.status),{focusing:y.value}]),tabindex:"0",onKeydown:withKeys(z=>!unref($)&&k(V),["delete"]),onFocus:L[0]||(L[0]=z=>y.value=!0),onBlur:L[1]||(L[1]=z=>y.value=!1),onClick:L[2]||(L[2]=z=>y.value=!1)},[renderSlot(j.$slots,"default",{file:V},()=>[j.listType==="picture"||V.status!=="uploading"&&j.listType==="picture-card"?(openBlock(),createElementBlock("img",{key:0,class:normalizeClass(unref(r).be("list","item-thumbnail")),src:V.url,alt:""},null,10,_hoisted_2$7)):createCommentVNode("v-if",!0),V.status==="uploading"||j.listType!=="picture-card"?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(unref(r).be("list","item-info"))},[createBaseVNode("a",{class:normalizeClass(unref(r).be("list","item-name")),onClick:withModifiers(z=>j.handlePreview(V),["prevent"])},[createVNode(unref(ElIcon),{class:normalizeClass(unref(i).m("document"))},{default:withCtx(()=>[createVNode(unref(document_default))]),_:1},8,["class"]),createBaseVNode("span",{class:normalizeClass(unref(r).be("list","item-file-name"))},toDisplayString$1(V.name),3)],10,_hoisted_3$4),V.status==="uploading"?(openBlock(),createBlock(unref(ElProgress),{key:0,type:j.listType==="picture-card"?"circle":"line","stroke-width":j.listType==="picture-card"?6:2,percentage:Number(V.percentage),style:normalizeStyle(j.listType==="picture-card"?"":"margin-top: 0.5rem")},null,8,["type","stroke-width","percentage","style"])):createCommentVNode("v-if",!0)],2)):createCommentVNode("v-if",!0),createBaseVNode("label",{class:normalizeClass(unref(r).be("list","item-status-label"))},[j.listType==="text"?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass([unref(i).m("upload-success"),unref(i).m("circle-check")])},{default:withCtx(()=>[createVNode(unref(circle_check_default))]),_:1},8,["class"])):["picture-card","picture"].includes(j.listType)?(openBlock(),createBlock(unref(ElIcon),{key:1,class:normalizeClass([unref(i).m("upload-success"),unref(i).m("check")])},{default:withCtx(()=>[createVNode(unref(check_default))]),_:1},8,["class"])):createCommentVNode("v-if",!0)],2),unref($)?createCommentVNode("v-if",!0):(openBlock(),createBlock(unref(ElIcon),{key:2,class:normalizeClass(unref(i).m("close")),onClick:z=>k(V)},{default:withCtx(()=>[createVNode(unref(close_default))]),_:2},1032,["class","onClick"])),createCommentVNode(" Due to close btn only appears when li gets focused disappears after li gets blurred, thus keyboard navigation can never reach close btn"),createCommentVNode(" This is a bug which needs to be fixed "),createCommentVNode(" TODO: Fix the incorrect navigation interaction "),unref($)?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("i",{key:3,class:normalizeClass(unref(i).m("close-tip"))},toDisplayString$1(unref(n)("el.upload.deleteTip")),3)),j.listType==="picture-card"?(openBlock(),createElementBlock("span",{key:4,class:normalizeClass(unref(r).be("list","item-actions"))},[createBaseVNode("span",{class:normalizeClass(unref(r).be("list","item-preview")),onClick:z=>j.handlePreview(V)},[createVNode(unref(ElIcon),{class:normalizeClass(unref(i).m("zoom-in"))},{default:withCtx(()=>[createVNode(unref(zoom_in_default))]),_:1},8,["class"])],10,_hoisted_4$3),unref($)?createCommentVNode("v-if",!0):(openBlock(),createElementBlock("span",{key:0,class:normalizeClass(unref(r).be("list","item-delete")),onClick:z=>k(V)},[createVNode(unref(ElIcon),{class:normalizeClass(unref(i).m("delete"))},{default:withCtx(()=>[createVNode(unref(delete_default))]),_:1},8,["class"])],10,_hoisted_5$2))],2)):createCommentVNode("v-if",!0)])],42,_hoisted_1$8))),128)),renderSlot(j.$slots,"append")]),_:3},8,["class","name"]))}});var UploadList=_export_sfc$1(_sfc_main$c,[["__file","/home/runner/work/element-plus/element-plus/packages/components/upload/src/upload-list.vue"]]);const uploadDraggerProps=buildProps({disabled:{type:Boolean,default:!1}}),uploadDraggerEmits={file:e=>isArray$4(e)},_hoisted_1$7=["onDrop","onDragover"],COMPONENT_NAME="ElUploadDrag",__default__$4=defineComponent({name:COMPONENT_NAME}),_sfc_main$b=defineComponent({...__default__$4,props:uploadDraggerProps,emits:uploadDraggerEmits,setup(e,{emit:t}){const n=inject(uploadContextKey);n||throwError(COMPONENT_NAME,"usage: ");const r=useNamespace("upload"),i=ref(!1),g=useDisabled(),$=k=>{if(g.value)return;i.value=!1;const j=Array.from(k.dataTransfer.files),L=n.accept.value;if(!L){t("file",j);return}const V=j.filter(z=>{const{type:oe,name:re}=z,ie=re.includes(".")?`.${re.split(".").pop()}`:"",ae=oe.replace(/\/.*$/,"");return L.split(",").map(le=>le.trim()).filter(le=>le).some(le=>le.startsWith(".")?ie===le:/\/\*$/.test(le)?ae===le.replace(/\/\*$/,""):/^[^/]+\/[^/]+$/.test(le)?oe===le:!1)});t("file",V)},y=()=>{g.value||(i.value=!0)};return(k,j)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(r).b("dragger"),unref(r).is("dragover",i.value)]),onDrop:withModifiers($,["prevent"]),onDragover:withModifiers(y,["prevent"]),onDragleave:j[0]||(j[0]=withModifiers(L=>i.value=!1,["prevent"]))},[renderSlot(k.$slots,"default")],42,_hoisted_1$7))}});var UploadDragger=_export_sfc$1(_sfc_main$b,[["__file","/home/runner/work/element-plus/element-plus/packages/components/upload/src/upload-dragger.vue"]]);const uploadContentProps=buildProps({...uploadBaseProps,beforeUpload:{type:definePropType(Function),default:NOOP},onRemove:{type:definePropType(Function),default:NOOP},onStart:{type:definePropType(Function),default:NOOP},onSuccess:{type:definePropType(Function),default:NOOP},onProgress:{type:definePropType(Function),default:NOOP},onError:{type:definePropType(Function),default:NOOP},onExceed:{type:definePropType(Function),default:NOOP}}),_hoisted_1$6=["onKeydown"],_hoisted_2$6=["name","multiple","accept"],__default__$3=defineComponent({name:"ElUploadContent",inheritAttrs:!1}),_sfc_main$a=defineComponent({...__default__$3,props:uploadContentProps,setup(e,{expose:t}){const n=e,r=useNamespace("upload"),i=useDisabled(),g=shallowRef({}),$=shallowRef(),y=re=>{if(re.length===0)return;const{autoUpload:ie,limit:ae,fileList:le,multiple:de,onStart:pe,onExceed:he}=n;if(ae&&le.length+re.length>ae){he(re,le);return}de||(re=re.slice(0,1));for(const ue of re){const _e=ue;_e.uid=genFileId(),pe(_e),ie&&k(_e)}},k=async re=>{if($.value.value="",!n.beforeUpload)return j(re);let ie;try{ie=await n.beforeUpload(re)}catch{ie=!1}if(ie===!1){n.onRemove(re);return}let ae=re;ie instanceof Blob&&(ie instanceof File?ae=ie:ae=new File([ie],re.name,{type:re.type})),j(Object.assign(ae,{uid:re.uid}))},j=re=>{const{headers:ie,data:ae,method:le,withCredentials:de,name:pe,action:he,onProgress:ue,onSuccess:_e,onError:Ie,httpRequest:Ce}=n,{uid:Oe}=re,$e={headers:ie||{},withCredentials:de,file:re,data:ae,method:le,filename:pe,action:he,onProgress:ze=>{ue(ze,re)},onSuccess:ze=>{_e(ze,re),delete g.value[Oe]},onError:ze=>{Ie(ze,re),delete g.value[Oe]}},qe=Ce($e);g.value[Oe]=qe,qe instanceof Promise&&qe.then($e.onSuccess,$e.onError)},L=re=>{const ie=re.target.files;!ie||y(Array.from(ie))},V=()=>{i.value||($.value.value="",$.value.click())},z=()=>{V()};return t({abort:re=>{entriesOf(g.value).filter(re?([ae])=>String(re.uid)===ae:()=>!0).forEach(([ae,le])=>{le instanceof XMLHttpRequest&&le.abort(),delete g.value[ae]})},upload:k}),(re,ie)=>(openBlock(),createElementBlock("div",{class:normalizeClass([unref(r).b(),unref(r).m(re.listType),unref(r).is("drag",re.drag)]),tabindex:"0",onClick:V,onKeydown:withKeys(withModifiers(z,["self"]),["enter","space"])},[re.drag?(openBlock(),createBlock(UploadDragger,{key:0,disabled:unref(i),onFile:y},{default:withCtx(()=>[renderSlot(re.$slots,"default")]),_:3},8,["disabled"])):renderSlot(re.$slots,"default",{key:1}),createBaseVNode("input",{ref_key:"inputRef",ref:$,class:normalizeClass(unref(r).e("input")),name:re.name,multiple:re.multiple,accept:re.accept,type:"file",onChange:L,onClick:ie[0]||(ie[0]=withModifiers(()=>{},["stop"]))},null,42,_hoisted_2$6)],42,_hoisted_1$6))}});var UploadContent=_export_sfc$1(_sfc_main$a,[["__file","/home/runner/work/element-plus/element-plus/packages/components/upload/src/upload-content.vue"]]);const SCOPE$1="ElUpload",revokeObjectURL=e=>{var t;(t=e.url)!=null&&t.startsWith("blob:")&&URL.revokeObjectURL(e.url)},useHandlers=(e,t)=>{const n=useVModel(e,"fileList",void 0,{passive:!0}),r=z=>n.value.find(oe=>oe.uid===z.uid);function i(z){var oe;(oe=t.value)==null||oe.abort(z)}function g(z=["ready","uploading","success","fail"]){n.value=n.value.filter(oe=>!z.includes(oe.status))}const $=(z,oe)=>{const re=r(oe);!re||(console.error(z),re.status="fail",n.value.splice(n.value.indexOf(re),1),e.onError(z,re,n.value),e.onChange(re,n.value))},y=(z,oe)=>{const re=r(oe);!re||(e.onProgress(z,re,n.value),re.status="uploading",re.percentage=Math.round(z.percent))},k=(z,oe)=>{const re=r(oe);!re||(re.status="success",re.response=z,e.onSuccess(z,re,n.value),e.onChange(re,n.value))},j=z=>{isNil(z.uid)&&(z.uid=genFileId());const oe={name:z.name,percentage:0,status:"ready",size:z.size,raw:z,uid:z.uid};if(e.listType==="picture-card"||e.listType==="picture")try{oe.url=URL.createObjectURL(z)}catch(re){re.message,e.onError(re,oe,n.value)}n.value=[...n.value,oe],e.onChange(oe,n.value)},L=async z=>{const oe=z instanceof File?r(z):z;oe||throwError(SCOPE$1,"file to be removed not found");const re=ie=>{i(ie);const ae=n.value;ae.splice(ae.indexOf(ie),1),e.onRemove(ie,ae),revokeObjectURL(ie)};e.beforeRemove?await e.beforeRemove(oe,n.value)!==!1&&re(oe):re(oe)};function V(){n.value.filter(({status:z})=>z==="ready").forEach(({raw:z})=>{var oe;return z&&((oe=t.value)==null?void 0:oe.upload(z))})}return watch(()=>e.listType,z=>{z!=="picture-card"&&z!=="picture"||(n.value=n.value.map(oe=>{const{raw:re,url:ie}=oe;if(!ie&&re)try{oe.url=URL.createObjectURL(re)}catch(ae){e.onError(ae,oe,n.value)}return oe}))}),watch(n,z=>{for(const oe of z)oe.uid||(oe.uid=genFileId()),oe.status||(oe.status="success")},{immediate:!0,deep:!0}),{uploadFiles:n,abort:i,clearFiles:g,handleError:$,handleProgress:y,handleStart:j,handleSuccess:k,handleRemove:L,submit:V}},__default__$2=defineComponent({name:"ElUpload"}),_sfc_main$9=defineComponent({...__default__$2,props:uploadProps,setup(e,{expose:t}){const n=e,r=useSlots(),i=useDisabled(),g=shallowRef(),{abort:$,submit:y,clearFiles:k,uploadFiles:j,handleStart:L,handleError:V,handleRemove:z,handleSuccess:oe,handleProgress:re}=useHandlers(n,g),ie=computed(()=>n.listType==="picture-card"),ae=computed(()=>({...n,fileList:j.value,onStart:L,onProgress:re,onSuccess:oe,onError:V,onRemove:z}));return onBeforeUnmount(()=>{j.value.forEach(({url:le})=>{le!=null&&le.startsWith("blob:")&&URL.revokeObjectURL(le)})}),provide(uploadContextKey,{accept:toRef(n,"accept")}),t({abort:$,submit:y,clearFiles:k,handleStart:L,handleRemove:z}),(le,de)=>(openBlock(),createElementBlock("div",null,[unref(ie)&&le.showFileList?(openBlock(),createBlock(UploadList,{key:0,disabled:unref(i),"list-type":le.listType,files:unref(j),"handle-preview":le.onPreview,onRemove:unref(z)},createSlots({append:withCtx(()=>[createVNode(UploadContent,mergeProps({ref_key:"uploadRef",ref:g},unref(ae)),{default:withCtx(()=>[unref(r).trigger?renderSlot(le.$slots,"trigger",{key:0}):createCommentVNode("v-if",!0),!unref(r).trigger&&unref(r).default?renderSlot(le.$slots,"default",{key:1}):createCommentVNode("v-if",!0)]),_:3},16)]),_:2},[le.$slots.file?{name:"default",fn:withCtx(({file:pe})=>[renderSlot(le.$slots,"file",{file:pe})])}:void 0]),1032,["disabled","list-type","files","handle-preview","onRemove"])):createCommentVNode("v-if",!0),!unref(ie)||unref(ie)&&!le.showFileList?(openBlock(),createBlock(UploadContent,mergeProps({key:1,ref_key:"uploadRef",ref:g},unref(ae)),{default:withCtx(()=>[unref(r).trigger?renderSlot(le.$slots,"trigger",{key:0}):createCommentVNode("v-if",!0),!unref(r).trigger&&unref(r).default?renderSlot(le.$slots,"default",{key:1}):createCommentVNode("v-if",!0)]),_:3},16)):createCommentVNode("v-if",!0),le.$slots.trigger?renderSlot(le.$slots,"default",{key:2}):createCommentVNode("v-if",!0),renderSlot(le.$slots,"tip"),!unref(ie)&&le.showFileList?(openBlock(),createBlock(UploadList,{key:3,disabled:unref(i),"list-type":le.listType,files:unref(j),"handle-preview":le.onPreview,onRemove:unref(z)},createSlots({_:2},[le.$slots.file?{name:"default",fn:withCtx(({file:pe})=>[renderSlot(le.$slots,"file",{file:pe})])}:void 0]),1032,["disabled","list-type","files","handle-preview","onRemove"])):createCommentVNode("v-if",!0)]))}});var Upload=_export_sfc$1(_sfc_main$9,[["__file","/home/runner/work/element-plus/element-plus/packages/components/upload/src/upload.vue"]]);const ElUpload=withInstall(Upload);var Components=[ElAffix,ElAlert,ElAutocomplete,ElAutoResizer,ElAvatar,ElBacktop,ElBadge,ElBreadcrumb,ElBreadcrumbItem,ElButton,ElButtonGroup$1,ElCalendar,ElCard,ElCarousel,ElCarouselItem,ElCascader,ElCascaderPanel,ElCheckTag,ElCheckbox,ElCheckboxButton,ElCheckboxGroup$1,ElCol,ElCollapse,ElCollapseItem,ElCollapseTransition,ElColorPicker,ElConfigProvider,ElContainer,ElAside,ElFooter,ElHeader,ElMain,ElDatePicker,ElDescriptions,ElDescriptionsItem,ElDialog,ElDivider,ElDrawer,ElDropdown,ElDropdownItem,ElDropdownMenu,ElEmpty,ElForm,ElFormItem,ElIcon,ElImage,ElImageViewer,ElInput,ElInputNumber,ElLink,ElMenu,ElMenuItem,ElMenuItemGroup,ElSubMenu,ElPageHeader,ElPagination,ElPopconfirm,ElPopover,ElPopper,ElProgress,ElRadio,ElRadioButton,ElRadioGroup,ElRate,ElResult,ElRow,ElScrollbar,ElSelect,ElOption,ElOptionGroup,ElSelectV2,ElSkeleton,ElSkeletonItem,ElSlider,ElSpace,ElStatistic,ElCountdown,ElSteps,ElStep,ElSwitch,ElTable,ElTableColumn,ElTableV2,ElTabs,ElTabPane,ElTag,ElTimePicker,ElTimeSelect,ElTimeline,ElTimelineItem,ElTooltip,ElTooltipV2,ElTransfer,ElTree,ElTreeSelect,ElTreeV2,ElUpload];const SCOPE="ElInfiniteScroll",CHECK_INTERVAL=50,DEFAULT_DELAY=200,DEFAULT_DISTANCE=0,attributes={delay:{type:Number,default:DEFAULT_DELAY},distance:{type:Number,default:DEFAULT_DISTANCE},disabled:{type:Boolean,default:!1},immediate:{type:Boolean,default:!0}},getScrollOptions=(e,t)=>Object.entries(attributes).reduce((n,[r,i])=>{var g,$;const{type:y,default:k}=i,j=e.getAttribute(`infinite-scroll-${r}`);let L=($=(g=t[j])!=null?g:j)!=null?$:k;return L=L==="false"?!1:L,L=y(L),n[r]=Number.isNaN(L)?k:L,n},{}),destroyObserver=e=>{const{observer:t}=e[SCOPE];t&&(t.disconnect(),delete e[SCOPE].observer)},handleScroll=(e,t)=>{const{container:n,containerEl:r,instance:i,observer:g,lastScrollTop:$}=e[SCOPE],{disabled:y,distance:k}=getScrollOptions(e,i),{clientHeight:j,scrollHeight:L,scrollTop:V}=r,z=V-$;if(e[SCOPE].lastScrollTop=V,g||y||z<0)return;let oe=!1;if(n===e)oe=L-(j+V)<=k;else{const{clientTop:re,scrollHeight:ie}=e,ae=getOffsetTopDistance(e,r);oe=V+j>=ae+re+ie-k}oe&&t.call(i)};function checkFull(e,t){const{containerEl:n,instance:r}=e[SCOPE],{disabled:i}=getScrollOptions(e,r);i||n.clientHeight===0||(n.scrollHeight<=n.clientHeight?t.call(r):destroyObserver(e))}const InfiniteScroll={async mounted(e,t){const{instance:n,value:r}=t;isFunction$4(r)||throwError(SCOPE,"'v-infinite-scroll' binding value must be a function"),await nextTick();const{delay:i,immediate:g}=getScrollOptions(e,n),$=getScrollContainer(e,!0),y=$===window?document.documentElement:$,k=throttle(handleScroll.bind(null,e,r),i);if(!!$){if(e[SCOPE]={instance:n,container:$,containerEl:y,delay:i,cb:r,onScroll:k,lastScrollTop:y.scrollTop},g){const j=new MutationObserver(throttle(checkFull.bind(null,e,r),CHECK_INTERVAL));e[SCOPE].observer=j,j.observe(e,{childList:!0,subtree:!0}),checkFull(e,r)}$.addEventListener("scroll",k)}},unmounted(e){const{container:t,onScroll:n}=e[SCOPE];t==null||t.removeEventListener("scroll",n),destroyObserver(e)},async updated(e){e[SCOPE]||await nextTick();const{containerEl:t,cb:n,observer:r}=e[SCOPE];t.clientHeight&&r&&checkFull(e,n)}},_InfiniteScroll=InfiniteScroll;_InfiniteScroll.install=e=>{e.directive("InfiniteScroll",_InfiniteScroll)};const ElInfiniteScroll=_InfiniteScroll;function createLoadingComponent(e){let t;const n=useNamespace("loading"),r=ref(!1),i=reactive({...e,originalPosition:"",originalOverflow:"",visible:!1});function g(oe){i.text=oe}function $(){const oe=i.parent;if(!oe.vLoadingAddClassList){let re=oe.getAttribute("loading-number");re=Number.parseInt(re)-1,re?oe.setAttribute("loading-number",re.toString()):(removeClass(oe,n.bm("parent","relative")),oe.removeAttribute("loading-number")),removeClass(oe,n.bm("parent","hidden"))}y(),V.unmount()}function y(){var oe,re;(re=(oe=z.$el)==null?void 0:oe.parentNode)==null||re.removeChild(z.$el)}function k(){var oe;e.beforeClose&&!e.beforeClose()||(r.value=!0,clearTimeout(t),t=window.setTimeout(j,400),i.visible=!1,(oe=e.closed)==null||oe.call(e))}function j(){if(!r.value)return;const oe=i.parent;r.value=!1,oe.vLoadingAddClassList=void 0,$()}const V=createApp({name:"ElLoading",setup(){return()=>{const oe=i.spinner||i.svg,re=h$1("svg",{class:"circular",viewBox:i.svgViewBox?i.svgViewBox:"0 0 50 50",...oe?{innerHTML:oe}:{}},[h$1("circle",{class:"path",cx:"25",cy:"25",r:"20",fill:"none"})]),ie=i.text?h$1("p",{class:n.b("text")},[i.text]):void 0;return h$1(Transition,{name:n.b("fade"),onAfterLeave:j},{default:withCtx(()=>[withDirectives(createVNode("div",{style:{backgroundColor:i.background||""},class:[n.b("mask"),i.customClass,i.fullscreen?"is-fullscreen":""]},[h$1("div",{class:n.b("spinner")},[re,ie])]),[[vShow,i.visible]])])})}}}),z=V.mount(document.createElement("div"));return{...toRefs(i),setText:g,removeElLoadingChild:y,close:k,handleAfterLeave:j,vm:z,get $el(){return z.$el}}}let fullscreenInstance;const Loading=function(e={}){if(!isClient)return;const t=resolveOptions(e);if(t.fullscreen&&fullscreenInstance)return fullscreenInstance;const n=createLoadingComponent({...t,closed:()=>{var i;(i=t.closed)==null||i.call(t),t.fullscreen&&(fullscreenInstance=void 0)}});addStyle(t,t.parent,n),addClassList(t,t.parent,n),t.parent.vLoadingAddClassList=()=>addClassList(t,t.parent,n);let r=t.parent.getAttribute("loading-number");return r?r=`${Number.parseInt(r)+1}`:r="1",t.parent.setAttribute("loading-number",r),t.parent.appendChild(n.$el),nextTick(()=>n.visible.value=t.visible),t.fullscreen&&(fullscreenInstance=n),n},resolveOptions=e=>{var t,n,r,i;let g;return isString$3(e.target)?g=(t=document.querySelector(e.target))!=null?t:document.body:g=e.target||document.body,{parent:g===document.body||e.body?document.body:g,background:e.background||"",svg:e.svg||"",svgViewBox:e.svgViewBox||"",spinner:e.spinner||!1,text:e.text||"",fullscreen:g===document.body&&((n=e.fullscreen)!=null?n:!0),lock:(r=e.lock)!=null?r:!1,customClass:e.customClass||"",visible:(i=e.visible)!=null?i:!0,target:g}},addStyle=async(e,t,n)=>{const{nextZIndex:r}=useZIndex(),i={};if(e.fullscreen)n.originalPosition.value=getStyle(document.body,"position"),n.originalOverflow.value=getStyle(document.body,"overflow"),i.zIndex=r();else if(e.parent===document.body){n.originalPosition.value=getStyle(document.body,"position"),await nextTick();for(const g of["top","left"]){const $=g==="top"?"scrollTop":"scrollLeft";i[g]=`${e.target.getBoundingClientRect()[g]+document.body[$]+document.documentElement[$]-Number.parseInt(getStyle(document.body,`margin-${g}`),10)}px`}for(const g of["height","width"])i[g]=`${e.target.getBoundingClientRect()[g]}px`}else n.originalPosition.value=getStyle(t,"position");for(const[g,$]of Object.entries(i))n.$el.style[g]=$},addClassList=(e,t,n)=>{const r=useNamespace("loading");["absolute","fixed","sticky"].includes(n.originalPosition.value)?removeClass(t,r.bm("parent","relative")):addClass(t,r.bm("parent","relative")),e.fullscreen&&e.lock?addClass(t,r.bm("parent","hidden")):removeClass(t,r.bm("parent","hidden"))},INSTANCE_KEY=Symbol("ElLoading"),createInstance=(e,t)=>{var n,r,i,g;const $=t.instance,y=z=>isObject$4(t.value)?t.value[z]:void 0,k=z=>{const oe=isString$3(z)&&($==null?void 0:$[z])||z;return oe&&ref(oe)},j=z=>k(y(z)||e.getAttribute(`element-loading-${hyphenate(z)}`)),L=(n=y("fullscreen"))!=null?n:t.modifiers.fullscreen,V={text:j("text"),svg:j("svg"),svgViewBox:j("svgViewBox"),spinner:j("spinner"),background:j("background"),customClass:j("customClass"),fullscreen:L,target:(r=y("target"))!=null?r:L?void 0:e,body:(i=y("body"))!=null?i:t.modifiers.body,lock:(g=y("lock"))!=null?g:t.modifiers.lock};e[INSTANCE_KEY]={options:V,instance:Loading(V)}},updateOptions=(e,t)=>{for(const n of Object.keys(t))isRef(t[n])&&(t[n].value=e[n])},vLoading={mounted(e,t){t.value&&createInstance(e,t)},updated(e,t){const n=e[INSTANCE_KEY];t.oldValue!==t.value&&(t.value&&!t.oldValue?createInstance(e,t):t.value&&t.oldValue?isObject$4(t.value)&&updateOptions(t.value,n.options):n==null||n.instance.close())},unmounted(e){var t;(t=e[INSTANCE_KEY])==null||t.instance.close()}},ElLoading={install(e){e.directive("loading",vLoading),e.config.globalProperties.$loading=Loading},directive:vLoading,service:Loading},messageTypes=["success","info","warning","error"],messageDefaults=mutable({customClass:"",center:!1,dangerouslyUseHTMLString:!1,duration:3e3,icon:void 0,id:"",message:"",onClose:void 0,showClose:!1,type:"info",offset:16,zIndex:0,grouping:!1,repeatNum:1,appendTo:isClient?document.body:void 0}),messageProps=buildProps({customClass:{type:String,default:messageDefaults.customClass},center:{type:Boolean,default:messageDefaults.center},dangerouslyUseHTMLString:{type:Boolean,default:messageDefaults.dangerouslyUseHTMLString},duration:{type:Number,default:messageDefaults.duration},icon:{type:iconPropType,default:messageDefaults.icon},id:{type:String,default:messageDefaults.id},message:{type:definePropType([String,Object,Function]),default:messageDefaults.message},onClose:{type:definePropType(Function),required:!1},showClose:{type:Boolean,default:messageDefaults.showClose},type:{type:String,values:messageTypes,default:messageDefaults.type},offset:{type:Number,default:messageDefaults.offset},zIndex:{type:Number,default:messageDefaults.zIndex},grouping:{type:Boolean,default:messageDefaults.grouping},repeatNum:{type:Number,default:messageDefaults.repeatNum}}),messageEmits={destroy:()=>!0},instances=shallowReactive([]),getInstance=e=>{const t=instances.findIndex(i=>i.id===e),n=instances[t];let r;return t>0&&(r=instances[t-1]),{current:n,prev:r}},getLastOffset=e=>{const{prev:t}=getInstance(e);return t?t.vm.exposed.bottom.value:0},_hoisted_1$5=["id"],_hoisted_2$5=["innerHTML"],__default__$1=defineComponent({name:"ElMessage"}),_sfc_main$8=defineComponent({...__default__$1,props:messageProps,emits:messageEmits,setup(e,{expose:t}){const n=e,{Close:r}=TypeComponents,i=useNamespace("message"),g=ref(),$=ref(!1),y=ref(0);let k;const j=computed(()=>n.type?n.type==="error"?"danger":n.type:"info"),L=computed(()=>{const he=n.type;return{[i.bm("icon",he)]:he&&TypeComponentsMap[he]}}),V=computed(()=>n.icon||TypeComponentsMap[n.type]||""),z=computed(()=>getLastOffset(n.id)),oe=computed(()=>n.offset+z.value),re=computed(()=>y.value+oe.value),ie=computed(()=>({top:`${oe.value}px`,zIndex:n.zIndex}));function ae(){n.duration!==0&&({stop:k}=useTimeoutFn(()=>{de()},n.duration))}function le(){k==null||k()}function de(){$.value=!1}function pe({code:he}){he===EVENT_CODE.esc&&de()}return onMounted(()=>{ae(),$.value=!0}),watch(()=>n.repeatNum,()=>{le(),ae()}),useEventListener(document,"keydown",pe),useResizeObserver(g,()=>{y.value=g.value.getBoundingClientRect().height}),t({visible:$,bottom:re,close:de}),(he,ue)=>(openBlock(),createBlock(Transition,{name:unref(i).b("fade"),onBeforeLeave:he.onClose,onAfterLeave:ue[0]||(ue[0]=_e=>he.$emit("destroy")),persisted:""},{default:withCtx(()=>[withDirectives(createBaseVNode("div",{id:he.id,ref_key:"messageRef",ref:g,class:normalizeClass([unref(i).b(),{[unref(i).m(he.type)]:he.type&&!he.icon},unref(i).is("center",he.center),unref(i).is("closable",he.showClose),he.customClass]),style:normalizeStyle(unref(ie)),role:"alert",onMouseenter:le,onMouseleave:ae},[he.repeatNum>1?(openBlock(),createBlock(unref(ElBadge),{key:0,value:he.repeatNum,type:unref(j),class:normalizeClass(unref(i).e("badge"))},null,8,["value","type","class"])):createCommentVNode("v-if",!0),unref(V)?(openBlock(),createBlock(unref(ElIcon),{key:1,class:normalizeClass([unref(i).e("icon"),unref(L)])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(V))))]),_:1},8,["class"])):createCommentVNode("v-if",!0),renderSlot(he.$slots,"default",{},()=>[he.dangerouslyUseHTMLString?(openBlock(),createElementBlock(Fragment,{key:1},[createCommentVNode(" Caution here, message could've been compromised, never use user's input as message "),createBaseVNode("p",{class:normalizeClass(unref(i).e("content")),innerHTML:he.message},null,10,_hoisted_2$5)],2112)):(openBlock(),createElementBlock("p",{key:0,class:normalizeClass(unref(i).e("content"))},toDisplayString$1(he.message),3))]),he.showClose?(openBlock(),createBlock(unref(ElIcon),{key:2,class:normalizeClass(unref(i).e("closeBtn")),onClick:withModifiers(de,["stop"])},{default:withCtx(()=>[createVNode(unref(r))]),_:1},8,["class","onClick"])):createCommentVNode("v-if",!0)],46,_hoisted_1$5),[[vShow,$.value]])]),_:3},8,["name","onBeforeLeave"]))}});var MessageConstructor=_export_sfc$1(_sfc_main$8,[["__file","/home/runner/work/element-plus/element-plus/packages/components/message/src/message.vue"]]);let seed$1=1;const normalizeOptions=e=>{const t=!e||isString$3(e)||isVNode(e)||isFunction$4(e)?{message:e}:e,n={...messageDefaults,...t};if(!n.appendTo)n.appendTo=document.body;else if(isString$3(n.appendTo)){let r=document.querySelector(n.appendTo);isElement$1(r)||(r=document.body),n.appendTo=r}return n},closeMessage=e=>{const t=instances.indexOf(e);if(t===-1)return;instances.splice(t,1);const{handler:n}=e;n.close()},createMessage=({appendTo:e,...t},n)=>{const{nextZIndex:r}=useZIndex(),i=`message_${seed$1++}`,g=t.onClose,$=document.createElement("div"),y={...t,zIndex:r()+t.zIndex,id:i,onClose:()=>{g==null||g(),closeMessage(V)},onDestroy:()=>{render$1(null,$)}},k=createVNode(MessageConstructor,y,isFunction$4(y.message)||isVNode(y.message)?{default:isFunction$4(y.message)?y.message:()=>y.message}:null);k.appContext=n||message._context,render$1(k,$),e.appendChild($.firstElementChild);const j=k.component,V={id:i,vnode:k,vm:j,handler:{close:()=>{j.exposed.visible.value=!1}},props:k.component.props};return V},message=(e={},t)=>{if(!isClient)return{close:()=>{}};if(isNumber$1(messageConfig.max)&&instances.length>=messageConfig.max)return{close:()=>{}};const n=normalizeOptions(e);if(n.grouping&&instances.length){const i=instances.find(({vnode:g})=>{var $;return(($=g.props)==null?void 0:$.message)===n.message});if(i)return i.props.repeatNum+=1,i.props.type=n.type,i.handler}const r=createMessage(n,t);return instances.push(r),r.handler};messageTypes.forEach(e=>{message[e]=(t={},n)=>{const r=normalizeOptions(t);return message({...r,type:e},n)}});function closeAll$1(e){for(const t of instances)(!e||e===t.props.type)&&t.handler.close()}message.closeAll=closeAll$1;message._context=null;const ElMessage=withInstallFunction(message,"$message"),_sfc_main$7=defineComponent({name:"ElMessageBox",directives:{TrapFocus},components:{ElButton,ElFocusTrap,ElInput,ElOverlay,ElIcon,...TypeComponents},inheritAttrs:!1,props:{buttonSize:{type:String,validator:isValidComponentSize},modal:{type:Boolean,default:!0},lockScroll:{type:Boolean,default:!0},showClose:{type:Boolean,default:!0},closeOnClickModal:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},closeOnHashChange:{type:Boolean,default:!0},center:Boolean,draggable:Boolean,roundButton:{default:!1,type:Boolean},container:{type:String,default:"body"},boxType:{type:String,default:""}},emits:["vanish","action"],setup(e,{emit:t}){const{t:n}=useLocale(),r=useNamespace("message-box"),i=ref(!1),{nextZIndex:g}=useZIndex(),$=reactive({autofocus:!0,beforeClose:null,callback:null,cancelButtonText:"",cancelButtonClass:"",confirmButtonText:"",confirmButtonClass:"",customClass:"",customStyle:{},dangerouslyUseHTMLString:!1,distinguishCancelAndClose:!1,icon:"",inputPattern:null,inputPlaceholder:"",inputType:"text",inputValue:null,inputValidator:null,inputErrorMessage:"",message:null,modalFade:!0,modalClass:"",showCancelButton:!1,showConfirmButton:!0,type:"",title:void 0,showInput:!1,action:"",confirmButtonLoading:!1,cancelButtonLoading:!1,confirmButtonDisabled:!1,editorErrorMessage:"",validateError:!1,zIndex:g()}),y=computed(()=>{const Ue=$.type;return{[r.bm("icon",Ue)]:Ue&&TypeComponentsMap[Ue]}}),k=useId(),j=useId(),L=useSize(computed(()=>e.buttonSize),{prop:!0,form:!0,formItem:!0}),V=computed(()=>$.icon||TypeComponentsMap[$.type]||""),z=computed(()=>!!$.message),oe=ref(),re=ref(),ie=ref(),ae=ref(),le=ref(),de=computed(()=>$.confirmButtonClass);watch(()=>$.inputValue,async Ue=>{await nextTick(),e.boxType==="prompt"&&Ue!==null&&Oe()},{immediate:!0}),watch(()=>i.value,Ue=>{var kt,At;Ue&&(e.boxType!=="prompt"&&($.autofocus?ie.value=(At=(kt=le.value)==null?void 0:kt.$el)!=null?At:oe.value:ie.value=oe.value),$.zIndex=g()),e.boxType==="prompt"&&(Ue?nextTick().then(()=>{var Pt;ae.value&&ae.value.$el&&($.autofocus?ie.value=(Pt=$e())!=null?Pt:oe.value:ie.value=oe.value)}):($.editorErrorMessage="",$.validateError=!1))});const pe=computed(()=>e.draggable);useDraggable(oe,re,pe),onMounted(async()=>{await nextTick(),e.closeOnHashChange&&window.addEventListener("hashchange",he)}),onBeforeUnmount(()=>{e.closeOnHashChange&&window.removeEventListener("hashchange",he)});function he(){!i.value||(i.value=!1,nextTick(()=>{$.action&&t("action",$.action)}))}const ue=()=>{e.closeOnClickModal&&Ce($.distinguishCancelAndClose?"close":"cancel")},_e=useSameTarget(ue),Ie=Ue=>{if($.inputType!=="textarea")return Ue.preventDefault(),Ce("confirm")},Ce=Ue=>{var kt;e.boxType==="prompt"&&Ue==="confirm"&&!Oe()||($.action=Ue,$.beforeClose?(kt=$.beforeClose)==null||kt.call($,Ue,$,he):he())},Oe=()=>{if(e.boxType==="prompt"){const Ue=$.inputPattern;if(Ue&&!Ue.test($.inputValue||""))return $.editorErrorMessage=$.inputErrorMessage||n("el.messagebox.error"),$.validateError=!0,!1;const kt=$.inputValidator;if(typeof kt=="function"){const At=kt($.inputValue);if(At===!1)return $.editorErrorMessage=$.inputErrorMessage||n("el.messagebox.error"),$.validateError=!0,!1;if(typeof At=="string")return $.editorErrorMessage=At,$.validateError=!0,!1}}return $.editorErrorMessage="",$.validateError=!1,!0},$e=()=>{const Ue=ae.value.$refs;return Ue.input||Ue.textarea},qe=()=>{Ce("close")},ze=()=>{e.closeOnPressEscape&&qe()};return e.lockScroll&&useLockscreen(i),useRestoreActive(i),{...toRefs($),ns:r,overlayEvent:_e,visible:i,hasMessage:z,typeClass:y,contentId:k,inputId:j,btnSize:L,iconComponent:V,confirmButtonClasses:de,rootRef:oe,focusStartRef:ie,headerRef:re,inputRef:ae,confirmRef:le,doClose:he,handleClose:qe,onCloseRequested:ze,handleWrapperClick:ue,handleInputEnter:Ie,handleAction:Ce,t:n}}}),_hoisted_1$4=["aria-label","aria-describedby"],_hoisted_2$4=["aria-label"],_hoisted_3$3=["id"];function _sfc_render$5(e,t,n,r,i,g){const $=resolveComponent("el-icon"),y=resolveComponent("close"),k=resolveComponent("el-input"),j=resolveComponent("el-button"),L=resolveComponent("el-focus-trap"),V=resolveComponent("el-overlay");return openBlock(),createBlock(Transition,{name:"fade-in-linear",onAfterLeave:t[11]||(t[11]=z=>e.$emit("vanish")),persisted:""},{default:withCtx(()=>[withDirectives(createVNode(V,{"z-index":e.zIndex,"overlay-class":[e.ns.is("message-box"),e.modalClass],mask:e.modal},{default:withCtx(()=>[createBaseVNode("div",{role:"dialog","aria-label":e.title,"aria-modal":"true","aria-describedby":e.showInput?void 0:e.contentId,class:normalizeClass(`${e.ns.namespace.value}-overlay-message-box`),onClick:t[8]||(t[8]=(...z)=>e.overlayEvent.onClick&&e.overlayEvent.onClick(...z)),onMousedown:t[9]||(t[9]=(...z)=>e.overlayEvent.onMousedown&&e.overlayEvent.onMousedown(...z)),onMouseup:t[10]||(t[10]=(...z)=>e.overlayEvent.onMouseup&&e.overlayEvent.onMouseup(...z))},[createVNode(L,{loop:"",trapped:e.visible,"focus-trap-el":e.rootRef,"focus-start-el":e.focusStartRef,onReleaseRequested:e.onCloseRequested},{default:withCtx(()=>[createBaseVNode("div",{ref:"rootRef",class:normalizeClass([e.ns.b(),e.customClass,e.ns.is("draggable",e.draggable),{[e.ns.m("center")]:e.center}]),style:normalizeStyle(e.customStyle),tabindex:"-1",onClick:t[7]||(t[7]=withModifiers(()=>{},["stop"]))},[e.title!==null&&e.title!==void 0?(openBlock(),createElementBlock("div",{key:0,ref:"headerRef",class:normalizeClass(e.ns.e("header"))},[createBaseVNode("div",{class:normalizeClass(e.ns.e("title"))},[e.iconComponent&&e.center?(openBlock(),createBlock($,{key:0,class:normalizeClass([e.ns.e("status"),e.typeClass])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(e.iconComponent)))]),_:1},8,["class"])):createCommentVNode("v-if",!0),createBaseVNode("span",null,toDisplayString$1(e.title),1)],2),e.showClose?(openBlock(),createElementBlock("button",{key:0,type:"button",class:normalizeClass(e.ns.e("headerbtn")),"aria-label":e.t("el.messagebox.close"),onClick:t[0]||(t[0]=z=>e.handleAction(e.distinguishCancelAndClose?"close":"cancel")),onKeydown:t[1]||(t[1]=withKeys(withModifiers(z=>e.handleAction(e.distinguishCancelAndClose?"close":"cancel"),["prevent"]),["enter"]))},[createVNode($,{class:normalizeClass(e.ns.e("close"))},{default:withCtx(()=>[createVNode(y)]),_:1},8,["class"])],42,_hoisted_2$4)):createCommentVNode("v-if",!0)],2)):createCommentVNode("v-if",!0),createBaseVNode("div",{id:e.contentId,class:normalizeClass(e.ns.e("content"))},[createBaseVNode("div",{class:normalizeClass(e.ns.e("container"))},[e.iconComponent&&!e.center&&e.hasMessage?(openBlock(),createBlock($,{key:0,class:normalizeClass([e.ns.e("status"),e.typeClass])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(e.iconComponent)))]),_:1},8,["class"])):createCommentVNode("v-if",!0),e.hasMessage?(openBlock(),createElementBlock("div",{key:1,class:normalizeClass(e.ns.e("message"))},[renderSlot(e.$slots,"default",{},()=>[e.dangerouslyUseHTMLString?(openBlock(),createBlock(resolveDynamicComponent(e.showInput?"label":"p"),{key:1,for:e.showInput?e.inputId:void 0,innerHTML:e.message},null,8,["for","innerHTML"])):(openBlock(),createBlock(resolveDynamicComponent(e.showInput?"label":"p"),{key:0,for:e.showInput?e.inputId:void 0},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.dangerouslyUseHTMLString?"":e.message),1)]),_:1},8,["for"]))])],2)):createCommentVNode("v-if",!0)],2),withDirectives(createBaseVNode("div",{class:normalizeClass(e.ns.e("input"))},[createVNode(k,{id:e.inputId,ref:"inputRef",modelValue:e.inputValue,"onUpdate:modelValue":t[2]||(t[2]=z=>e.inputValue=z),type:e.inputType,placeholder:e.inputPlaceholder,"aria-invalid":e.validateError,class:normalizeClass({invalid:e.validateError}),onKeydown:withKeys(e.handleInputEnter,["enter"])},null,8,["id","modelValue","type","placeholder","aria-invalid","class","onKeydown"]),createBaseVNode("div",{class:normalizeClass(e.ns.e("errormsg")),style:normalizeStyle({visibility:e.editorErrorMessage?"visible":"hidden"})},toDisplayString$1(e.editorErrorMessage),7)],2),[[vShow,e.showInput]])],10,_hoisted_3$3),createBaseVNode("div",{class:normalizeClass(e.ns.e("btns"))},[e.showCancelButton?(openBlock(),createBlock(j,{key:0,loading:e.cancelButtonLoading,class:normalizeClass([e.cancelButtonClass]),round:e.roundButton,size:e.btnSize,onClick:t[3]||(t[3]=z=>e.handleAction("cancel")),onKeydown:t[4]||(t[4]=withKeys(withModifiers(z=>e.handleAction("cancel"),["prevent"]),["enter"]))},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.cancelButtonText||e.t("el.messagebox.cancel")),1)]),_:1},8,["loading","class","round","size"])):createCommentVNode("v-if",!0),withDirectives(createVNode(j,{ref:"confirmRef",type:"primary",loading:e.confirmButtonLoading,class:normalizeClass([e.confirmButtonClasses]),round:e.roundButton,disabled:e.confirmButtonDisabled,size:e.btnSize,onClick:t[5]||(t[5]=z=>e.handleAction("confirm")),onKeydown:t[6]||(t[6]=withKeys(withModifiers(z=>e.handleAction("confirm"),["prevent"]),["enter"]))},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.confirmButtonText||e.t("el.messagebox.confirm")),1)]),_:1},8,["loading","class","round","disabled","size"]),[[vShow,e.showConfirmButton]])],2)],6)]),_:3},8,["trapped","focus-trap-el","focus-start-el","onReleaseRequested"])],42,_hoisted_1$4)]),_:3},8,["z-index","overlay-class","mask"]),[[vShow,e.visible]])]),_:3})}var MessageBoxConstructor=_export_sfc$1(_sfc_main$7,[["render",_sfc_render$5],["__file","/home/runner/work/element-plus/element-plus/packages/components/message-box/src/index.vue"]]);const messageInstance=new Map,getAppendToElement=e=>{let t=document.body;return e.appendTo&&(isString$3(e.appendTo)&&(t=document.querySelector(e.appendTo)),isElement$1(e.appendTo)&&(t=e.appendTo),isElement$1(t)||(t=document.body)),t},initInstance=(e,t,n=null)=>{const r=createVNode(MessageBoxConstructor,e,isFunction$4(e.message)||isVNode(e.message)?{default:isFunction$4(e.message)?e.message:()=>e.message}:null);return r.appContext=n,render$1(r,t),getAppendToElement(e).appendChild(t.firstElementChild),r.component},genContainer=()=>document.createElement("div"),showMessage=(e,t)=>{const n=genContainer();e.onVanish=()=>{render$1(null,n),messageInstance.delete(i)},e.onAction=g=>{const $=messageInstance.get(i);let y;e.showInput?y={value:i.inputValue,action:g}:y=g,e.callback?e.callback(y,r.proxy):g==="cancel"||g==="close"?e.distinguishCancelAndClose&&g!=="cancel"?$.reject("close"):$.reject("cancel"):$.resolve(y)};const r=initInstance(e,n,t),i=r.proxy;for(const g in e)hasOwn$2(e,g)&&!hasOwn$2(i.$props,g)&&(i[g]=e[g]);return i.visible=!0,i};function MessageBox(e,t=null){if(!isClient)return Promise.reject();let n;return isString$3(e)||isVNode(e)?e={message:e}:n=e.callback,new Promise((r,i)=>{const g=showMessage(e,t!=null?t:MessageBox._context);messageInstance.set(g,{options:e,callback:n,resolve:r,reject:i})})}const MESSAGE_BOX_VARIANTS=["alert","confirm","prompt"],MESSAGE_BOX_DEFAULT_OPTS={alert:{closeOnPressEscape:!1,closeOnClickModal:!1},confirm:{showCancelButton:!0},prompt:{showCancelButton:!0,showInput:!0}};MESSAGE_BOX_VARIANTS.forEach(e=>{MessageBox[e]=messageBoxFactory(e)});function messageBoxFactory(e){return(t,n,r,i)=>{let g="";return isObject$4(n)?(r=n,g=""):isUndefined(n)?g="":g=n,MessageBox(Object.assign({title:g,message:t,type:"",...MESSAGE_BOX_DEFAULT_OPTS[e]},r,{boxType:e}),i)}}MessageBox.close=()=>{messageInstance.forEach((e,t)=>{t.doClose()}),messageInstance.clear()};MessageBox._context=null;const _MessageBox=MessageBox;_MessageBox.install=e=>{_MessageBox._context=e._context,e.config.globalProperties.$msgbox=_MessageBox,e.config.globalProperties.$messageBox=_MessageBox,e.config.globalProperties.$alert=_MessageBox.alert,e.config.globalProperties.$confirm=_MessageBox.confirm,e.config.globalProperties.$prompt=_MessageBox.prompt};const ElMessageBox=_MessageBox,notificationTypes=["success","info","warning","error"],notificationProps=buildProps({customClass:{type:String,default:""},dangerouslyUseHTMLString:{type:Boolean,default:!1},duration:{type:Number,default:4500},icon:{type:iconPropType},id:{type:String,default:""},message:{type:definePropType([String,Object]),default:""},offset:{type:Number,default:0},onClick:{type:definePropType(Function),default:()=>{}},onClose:{type:definePropType(Function),required:!0},position:{type:String,values:["top-right","top-left","bottom-right","bottom-left"],default:"top-right"},showClose:{type:Boolean,default:!0},title:{type:String,default:""},type:{type:String,values:[...notificationTypes,""],default:""},zIndex:{type:Number,default:0}}),notificationEmits={destroy:()=>!0},_hoisted_1$3=["id"],_hoisted_2$3=["textContent"],_hoisted_3$2={key:0},_hoisted_4$2=["innerHTML"],__default__=defineComponent({name:"ElNotification"}),_sfc_main$6=defineComponent({...__default__,props:notificationProps,emits:notificationEmits,setup(e,{expose:t}){const n=e,r=useNamespace("notification"),{Close:i}=CloseComponents,g=ref(!1);let $;const y=computed(()=>{const ae=n.type;return ae&&TypeComponentsMap[n.type]?r.m(ae):""}),k=computed(()=>n.type&&TypeComponentsMap[n.type]||n.icon),j=computed(()=>n.position.endsWith("right")?"right":"left"),L=computed(()=>n.position.startsWith("top")?"top":"bottom"),V=computed(()=>({[L.value]:`${n.offset}px`,zIndex:n.zIndex}));function z(){n.duration>0&&({stop:$}=useTimeoutFn(()=>{g.value&&re()},n.duration))}function oe(){$==null||$()}function re(){g.value=!1}function ie({code:ae}){ae===EVENT_CODE.delete||ae===EVENT_CODE.backspace?oe():ae===EVENT_CODE.esc?g.value&&re():z()}return onMounted(()=>{z(),g.value=!0}),useEventListener(document,"keydown",ie),t({visible:g,close:re}),(ae,le)=>(openBlock(),createBlock(Transition,{name:unref(r).b("fade"),onBeforeLeave:ae.onClose,onAfterLeave:le[1]||(le[1]=de=>ae.$emit("destroy")),persisted:""},{default:withCtx(()=>[withDirectives(createBaseVNode("div",{id:ae.id,class:normalizeClass([unref(r).b(),ae.customClass,unref(j)]),style:normalizeStyle(unref(V)),role:"alert",onMouseenter:oe,onMouseleave:z,onClick:le[0]||(le[0]=(...de)=>ae.onClick&&ae.onClick(...de))},[unref(k)?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass([unref(r).e("icon"),unref(y)])},{default:withCtx(()=>[(openBlock(),createBlock(resolveDynamicComponent(unref(k))))]),_:1},8,["class"])):createCommentVNode("v-if",!0),createBaseVNode("div",{class:normalizeClass(unref(r).e("group"))},[createBaseVNode("h2",{class:normalizeClass(unref(r).e("title")),textContent:toDisplayString$1(ae.title)},null,10,_hoisted_2$3),withDirectives(createBaseVNode("div",{class:normalizeClass(unref(r).e("content")),style:normalizeStyle(ae.title?void 0:{margin:0})},[renderSlot(ae.$slots,"default",{},()=>[ae.dangerouslyUseHTMLString?(openBlock(),createElementBlock(Fragment,{key:1},[createCommentVNode(" Caution here, message could've been compromised, never use user's input as message "),createBaseVNode("p",{innerHTML:ae.message},null,8,_hoisted_4$2)],2112)):(openBlock(),createElementBlock("p",_hoisted_3$2,toDisplayString$1(ae.message),1))])],6),[[vShow,ae.message]]),ae.showClose?(openBlock(),createBlock(unref(ElIcon),{key:0,class:normalizeClass(unref(r).e("closeBtn")),onClick:withModifiers(re,["stop"])},{default:withCtx(()=>[createVNode(unref(i))]),_:1},8,["class","onClick"])):createCommentVNode("v-if",!0)],2)],46,_hoisted_1$3),[[vShow,g.value]])]),_:3},8,["name","onBeforeLeave"]))}});var NotificationConstructor=_export_sfc$1(_sfc_main$6,[["__file","/home/runner/work/element-plus/element-plus/packages/components/notification/src/notification.vue"]]);const notifications={"top-left":[],"top-right":[],"bottom-left":[],"bottom-right":[]},GAP_SIZE=16;let seed=1;const notify=function(e={},t=null){if(!isClient)return{close:()=>{}};(typeof e=="string"||isVNode(e))&&(e={message:e});const n=e.position||"top-right";let r=e.offset||0;notifications[n].forEach(({vm:V})=>{var z;r+=(((z=V.el)==null?void 0:z.offsetHeight)||0)+GAP_SIZE}),r+=GAP_SIZE;const{nextZIndex:i}=useZIndex(),g=`notification_${seed++}`,$=e.onClose,y={zIndex:i(),...e,offset:r,id:g,onClose:()=>{close(g,n,$)}};let k=document.body;isElement$1(e.appendTo)?k=e.appendTo:isString$3(e.appendTo)&&(k=document.querySelector(e.appendTo)),isElement$1(k)||(k=document.body);const j=document.createElement("div"),L=createVNode(NotificationConstructor,y,isVNode(y.message)?{default:()=>y.message}:null);return L.appContext=t!=null?t:notify._context,L.props.onDestroy=()=>{render$1(null,j)},render$1(L,j),notifications[n].push({vm:L}),k.appendChild(j.firstElementChild),{close:()=>{L.component.exposed.visible.value=!1}}};notificationTypes.forEach(e=>{notify[e]=(t={})=>((typeof t=="string"||isVNode(t))&&(t={message:t}),notify({...t,type:e}))});function close(e,t,n){const r=notifications[t],i=r.findIndex(({vm:j})=>{var L;return((L=j.component)==null?void 0:L.props.id)===e});if(i===-1)return;const{vm:g}=r[i];if(!g)return;n==null||n(g);const $=g.el.offsetHeight,y=t.split("-")[0];r.splice(i,1);const k=r.length;if(!(k<1))for(let j=i;j{t.component.exposed.visible.value=!1})}notify.closeAll=closeAll;notify._context=null;const ElNotification=withInstallFunction(notify,"$notify");var Plugins=[ElInfiniteScroll,ElLoading,ElMessage,ElMessageBox,ElNotification,ElPopoverDirective],installer=makeInstaller([...Components,...Plugins]);function getOrigin(e="",t="http"){return t==="ws"?window.location.protocol==="https:"?`wss://${window.location.host}${e}`:`ws://${window.location.host}${e}`:`${window.location.protocol}//${window.location.host}${e}`}const service=axios.create({baseURL:getOrigin("/base-api/api/v1"),timeout:5e4,headers:{"Content-Type":"application/json"}});service.interceptors.request.use(e=>(localStorage.token&&(e.headers.common.Authorization=`Bearer ${localStorage.token}`),e),e=>Promise.reject(e));service.interceptors.response.use(e=>{var r,i,g,$,y;const t=e.data,n=e.data.code;if(n===401)Date.now()-sessionStorage.comeTime<1e3&&(localStorage.clear(),window.location.href="/"),ElMessageBox.alert("\u767B\u5F55\u72B6\u6001\u5DF2\u8FC7\u671F\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55","\u63D0\u793A",{confirmButtonText:"\u786E\u5B9A",showCancelButton:!1,closeOnHashChange:!1,closeOnPressEscape:!1,closeOnClickModal:!1,showClose:!1}).then(()=>{localStorage.clear(),window.location.href="/"});else return n===void 0&&t.message===void 0?e:n!==0?(ElMessage.error(t.message),Promise.reject(new Error(t.message))):((r=t.data)==null?void 0:r.Total)!==void 0?{list:t.data.Data,total:t.data.Total,page:t.data.currentPage,...t.data}:((i=t.data)==null?void 0:i.Info)&&((g=t.data)==null?void 0:g.Data)||(($=t.data)==null?void 0:$.Data)===void 0||((y=t.data)==null?void 0:y.Report)!==void 0?t.data:t.data.Data},e=>(e.message.indexOf("timeout")!=-1?ElMessage.error("\u7F51\u7EDC\u8D85\u65F6"):e.message=="Network Error"?ElMessage.error("\u7F51\u7EDC\u8FDE\u63A5\u9519\u8BEF"):e.response.data?ElMessage.error(e.response.statusText):ElMessage.error("\u63A5\u53E3\u8DEF\u5F84\u627E\u4E0D\u5230"),Promise.reject(e)));function get(e,t){return service({url:e,method:"get",params:t})}function post(e,t){return service({url:e,method:"post",data:t})}function put(e,t){return service({url:e,method:"put",data:t})}function del(e,t){return service({url:e,method:"delete",data:t})}function file(e,t,n="get"){return service(n==="get"?{url:e,method:n,params:t,timeout:3e4,responseType:"arraybuffer"}:{url:e,method:n,timeout:1e5,data:t,responseType:"blob"})}var api={sysinfo:()=>get("/sysinfo"),login:{login:e=>post("/login",e),currentUser:()=>get("/system/user/currentUser"),captcha:()=>get("/captcha"),logout:()=>post("/loginOut")},api:{getList:e=>get("/system/api/tree",e),getAll:()=>get("/system/api/GetAll"),detail:e=>get("/system/api/detail",{id:e}),add:e=>post("/system/api/add",e),del:e=>del("/system/api/del",{id:e}),edit:e=>put("/system/api/edit",e)},menu:{getList:e=>get("/system/menu/tree",e),detail:e=>get("/system/menu/detail",{id:e}),add:e=>post("/system/menu/add",e),del:e=>del("/system/menu/del",{id:e}),edit:e=>put("/system/menu/edit",e),btn:{getList:e=>get("/system/menu/button/tree",e),detail:e=>get("/system/menu/button/detail",{id:e}),add:e=>post("/system/menu/button/add",e),del:e=>del("/system/menu/button/del",{id:e}),edit:e=>put("/system/menu/button/edit",e),setStatus:(e,t,n)=>put("/system/menu/button/editStatus",{id:e,menuId:t,status:n})},list:{getList:e=>get("/system/menu/column/tree",e),detail:e=>get("/system/menu/column/detail",{id:e}),add:e=>post("/system/menu/column/add",e),del:e=>del("/system/menu/column/del",{id:e}),edit:e=>put("/system/menu/column/edit",e),setStatus:(e,t,n)=>put("/system/menu/column/editStatus",{id:e,menuId:t,status:n})}},role:{getList:e=>get("/system/role/tree",e),getRole:e=>get("/system/role/getInfoById",{id:e}),getRoleIds:e=>get("/system/role/getAuthorizeById",{id:e}),addRole:e=>post("/system/role/add",e),dataScope:e=>post("/system/role/dataScope",e),deleteRole:e=>del("/system/role/delInfoById",{id:e}),editRole:e=>put("/system/role/edit",e),auth:{getList:(e,t)=>get("/system/authorize/query",{itemsType:e,menuIds:t}),set:e=>post("/system/authorize/Add",e),isAllow:e=>get("/system/authorize/isAllow",{roleId:e})}},org:{getList:e=>get("/system/organization/tree",e),del:e=>del("/system/organization/del",{id:e}),add:e=>post("/system/organization/add",e),edit:e=>put("/system/organization/edit",e)},dept:{getList:e=>get("/system/dept/tree",e),del:e=>del("/system/dept/del",{deptId:e}),add:e=>post("/system/dept/add",e),edit:e=>put("/system/dept/edit",e)},post:{getList:e=>get("/system/post/tree",e),detail:e=>get("/system/post/detail",{postId:e}),del:e=>del("/system/post/del",{postId:e}),add:e=>post("/system/post/add",e),edit:e=>put("/system/post/edit",e)},user:{getList:e=>get("/system/user/list",e),getAllList:e=>get("/system/user/getAll",e),params:()=>get("/system/user/params"),detail:e=>get("/system/user/getInfoById",{id:e}),add:e=>post("/system/user/add",e),resetPassword:(e,t)=>post("/system/user/resetPassword",{id:e,userPassword:t}),del:e=>del("/system/user/delInfoById",{id:e}),edit:e=>put("/system/user/edit",e),editUserInfo:e=>put("/system/user/editUserInfo",e),setStatus:(e,t)=>put("/system/user/editStatus",{id:e,status:t}),setAvatar:(e,t)=>put("/system/user/editAvatar",{id:e,avatar:t})},config:{getList:e=>get("/common/config/list",e),detail:e=>get("/common/config/get",{id:e}),add:e=>post("/common/config/add",e),del:e=>del("/common/config/delete",{ids:e}),edit:e=>put("/common/config/edit",e)},dict:{getTypeList:e=>get("/common/dict/type/list",e),getType:e=>get("/common/dict/type/get",{dictId:e}),addType:e=>post("/common/dict/type/add",e),addData:e=>post("/common/dict/data/add",e),editType:e=>put("/common/dict/type/edit",e),editData:e=>put("/common/dict/data/edit",e),deleteType:e=>del("/common/dict/type/delete",{dictIds:e}),getDataList:e=>get("/common/dict/data/list",e),getData:e=>get("/common/dict/data/get",{dictCode:e}),deleteData:e=>del("/common/dict/data/delete",{ids:e})},getSysInfo:()=>get("/system/monitor/server"),log:{getList:e=>get("/system/login/log/list",e),export:e=>file("/system/login/log/export",e),del:e=>del("/system/login/log/del",{infoIds:e}),detail:e=>get("/system/login/log/detail",{infoId:e}),clearLog:()=>post("/system/login/log/clear")},oper:{getList:e=>get("/system/oper/log/list",e),del:e=>del("/system/oper/log/del",{operIds:e}),detail:e=>get("/system/oper/log/detail",{operId:e}),clearLog:()=>post("/system/oper/log/clear")},online:{getList:e=>get("/system/userOnline/list",e),strongBack:e=>del("/system/userOnline/strongBack",{id:e})},task:{getList:e=>get("/system/job/list",e),add:e=>post("/system/job/add",e),edit:e=>put("/system/job//edit",e),del:e=>del("/system/job/delJobById",{id:e}),detail:e=>get("/system/job/getJobById",{id:e}),run:e=>put("/system/job/run",{id:e}),start:e=>put("/system/job/start",{id:e}),stop:e=>put("/system/job/stop",{id:e})},city:{getList:e=>get("/common/city/tree",e),add:e=>post("/common/city/add",e),edit:e=>put("/common/city/edit",e),del:e=>del("/common/city/del",{id:e}),detail:e=>get("/common/city/getInfoById",{id:e})},plugin:{getList:e=>get("/system/plugins/list",e),del:e=>del("/system/plugins/del",{ids:e}),changeStatus:e=>post("/system/plugins/set",e),edit:e=>put("/system/plugins/edit",e),addPluginFile:e=>post("/system/plugins/add",e)},blackList:{getList:e=>get("/system/blacklist/list",e),add:e=>post("/system/blacklist/add",e),delete:e=>del("/system/blacklist/delete",{ids:e}),edit:e=>put("/system/blacklist/edit",e),detail:e=>get("/system/blacklist/get",e),changeStatus:e=>post("/system/blacklist/status",e)},basicConfig:{getDetails:()=>get("/getBaseSetting"),setDetails:e=>put("/editBaseSetting",e)},certificate:{getList:()=>get("/system/certificate/getAll")}};const layouModules={"../layout/routerView/iframes.vue":()=>__vitePreload(()=>import("./iframes.1701184304695.js"),["assets/iframes.1701184304695.js","assets/iframes.1701184304695.css","assets/vue.1701184304695.js"]),"../layout/routerView/link.vue":()=>__vitePreload(()=>import("./link.1701184304695.js"),["assets/link.1701184304695.js","assets/vue.1701184304695.js"]),"../layout/routerView/parent.vue":()=>__vitePreload(()=>import("./parent.1701184304695.js"),["assets/parent.1701184304695.js","assets/vue.1701184304695.js"])},viewsModules={"../views/error/401.vue":()=>__vitePreload(()=>import("./401.1701184304695.js"),["assets/401.1701184304695.js","assets/401.1701184304695.css","assets/vue.1701184304695.js"]),"../views/error/404.vue":()=>__vitePreload(()=>import("./404.1701184304695.js"),["assets/404.1701184304695.js","assets/404.1701184304695.css","assets/vue.1701184304695.js"]),"../views/login/index.vue":()=>__vitePreload(()=>import("./index.17011843046955.js"),["assets/index.17011843046955.js","assets/index.17011843046952.css","assets/account.1701184304695.js","assets/account.1701184304695.css","assets/vue.1701184304695.js"]),"../views/personal/index.vue":()=>__vitePreload(()=>import("./index.17011843046953.js"),["assets/index.17011843046953.js","assets/index.17011843046953.css","assets/index.17011843046954.js","assets/index.1701184304695.css","assets/vue.1701184304695.js"]),"../views/iot/certificate/index.vue":()=>__vitePreload(()=>import("./index.17011843046956.js"),["assets/index.17011843046956.js","assets/vue.1701184304695.js","assets/editParams.1701184304695.js","assets/editParams.1701184304695.css"]),"../views/iot/iotmanager/dashboard.vue":()=>__vitePreload(()=>import("./dashboard.1701184304695.js"),["assets/dashboard.1701184304695.js","assets/dashboard.1701184304695.css","assets/index.17011843046955.css","assets/echarts.1701184304695.js","assets/vue.1701184304695.js","assets/index.17011843046957.js","assets/edit.1701184304695.js","assets/index.17011843046958.js","assets/detail.1701184304695.js","assets/vue3cron.1701184304695.js","assets/vue3cron.1701184304695.css"]),"../views/login/component/account.vue":()=>__vitePreload(()=>import("./account.1701184304695.js"),["assets/account.1701184304695.js","assets/account.1701184304695.css","assets/vue.1701184304695.js"]),"../views/login/component/mobile.vue":()=>__vitePreload(()=>import("./mobile.1701184304695.js"),["assets/mobile.1701184304695.js","assets/mobile.1701184304695.css","assets/vue.1701184304695.js"]),"../views/login/component/scan.vue":()=>__vitePreload(()=>import("./scan.1701184304695.js"),["assets/scan.1701184304695.js","assets/scan.1701184304695.css","assets/vue.1701184304695.js"]),"../views/system/api/index.vue":()=>__vitePreload(()=>import("./index.170118430469510.js"),["assets/index.170118430469510.js","assets/vue.1701184304695.js","assets/edit.17011843046952.js","assets/validator.1701184304695.js","assets/index.17011843046957.js","assets/useCommon.1701184304695.js"]),"../views/system/basicConfig/index.vue":()=>__vitePreload(()=>import("./index.170118430469511.js"),["assets/index.170118430469511.js","assets/index.17011843046954.css","assets/index.17011843046954.js","assets/index.1701184304695.css","assets/vue.1701184304695.js"]),"../views/system/city/index.vue":()=>__vitePreload(()=>import("./index.170118430469512.js"),["assets/index.170118430469512.js","assets/vue.1701184304695.js","assets/edit.17011843046953.js","assets/edit.1701184304695.css","assets/index.17011843046957.js"]),"../views/system/config/index.vue":()=>__vitePreload(()=>import("./index.170118430469513.js"),["assets/index.170118430469513.js","assets/vue.1701184304695.js","assets/editConfig.1701184304695.js"]),"../views/system/dict/dataList.vue":()=>__vitePreload(()=>import("./dataList.1701184304695.js"),["assets/dataList.1701184304695.js","assets/vue.1701184304695.js","assets/editDicData.1701184304695.js"]),"../views/system/dict/index.vue":()=>__vitePreload(()=>import("./index.170118430469514.js"),["assets/index.170118430469514.js","assets/vue.1701184304695.js","assets/editDic.1701184304695.js"]),"../views/system/menu/index.vue":()=>__vitePreload(()=>import("./index.170118430469515.js"),["assets/index.170118430469515.js","assets/editMenu.1701184304695.js","assets/vue.1701184304695.js","assets/btn.1701184304695.js","assets/btn-form.1701184304695.js","assets/validator.1701184304695.js","assets/list.1701184304695.js","assets/list-form.1701184304695.js"]),"../views/system/task/index.vue":()=>__vitePreload(()=>import("./index.170118430469516.js"),["assets/index.170118430469516.js","assets/vue.1701184304695.js","assets/editConfig.17011843046952.js","assets/editConfig.1701184304695.css"]),"../views/iot/alarm/log/index.vue":()=>__vitePreload(()=>import("./index.170118430469517.js"),["assets/index.170118430469517.js","assets/index.17011843046955.css","assets/vue.1701184304695.js","assets/index.17011843046958.js","assets/edit.1701184304695.js","assets/detail.1701184304695.js","assets/vue3cron.1701184304695.js","assets/vue3cron.1701184304695.css"]),"../views/iot/alarm/setting/index.vue":()=>__vitePreload(()=>import("./index.170118430469518.js"),["assets/index.170118430469518.js","assets/index.17011843046956.css","assets/vue.1701184304695.js","assets/edit.17011843046954.js","assets/edit.17011843046953.css","assets/index.17011843046957.js","assets/index.170118430469519.js","assets/index.17011843046958.js","assets/index.170118430469520.js","assets/level.1701184304695.js"]),"../views/iot/certificate/component/editParams.vue":()=>__vitePreload(()=>import("./editParams.1701184304695.js").then(function(e){return e.e}),["assets/editParams.1701184304695.js","assets/editParams.1701184304695.css","assets/vue.1701184304695.js"]),"../views/iot/device/category/index.vue":()=>__vitePreload(()=>import("./index.170118430469521.js"),["assets/index.170118430469521.js","assets/edit.17011843046955.js","assets/index.170118430469519.js","assets/vue.1701184304695.js"]),"../views/iot/device/instance/detail.vue":()=>__vitePreload(()=>import("./detail.17011843046952.js"),["assets/detail.17011843046952.js","assets/detail.1701184304695.css","assets/index.17011843046955.css","assets/vue.1701184304695.js","assets/function.1701184304695.js","assets/function.1701184304695.css","assets/index.170118430469519.js","assets/edit.17011843046956.js","assets/edit.17011843046952.css","assets/tag.1701184304695.js","assets/editAttr.1701184304695.js","assets/editAttr.1701184304695.css","assets/editOption.1701184304695.js","assets/editOption.1701184304695.css","assets/editFun.1701184304695.js","assets/editEvent.1701184304695.js","assets/editTab.1701184304695.js","assets/subDevice.1701184304695.js","assets/editPro.1701184304695.js","assets/editPro.1701184304695.css","assets/index.170118430469522.js","assets/index.17011843046957.css","assets/list.17011843046952.js","assets/list.1701184304695.css","assets/setAttr.1701184304695.js","assets/subDeviceMutipleBind.1701184304695.js"]),"../views/iot/device/instance/index.vue":()=>__vitePreload(()=>import("./index.170118430469523.js"),["assets/index.170118430469523.js","assets/vue.1701184304695.js","assets/edit.17011843046956.js","assets/edit.17011843046952.css","assets/index.170118430469519.js","assets/tag.1701184304695.js"]),"../views/iot/device/product/detail.vue":()=>__vitePreload(()=>import("./detail.17011843046953.js"),["assets/detail.17011843046953.js","assets/detail.17011843046952.css","assets/vue.1701184304695.js","assets/editPro.1701184304695.js","assets/editPro.1701184304695.css","assets/index.170118430469519.js","assets/index.170118430469522.js","assets/index.17011843046957.css","assets/deviceIn.1701184304695.js","assets/deviceIn.1701184304695.css","assets/dataParse.1701184304695.js","assets/dataParse.1701184304695.css","assets/index.170118430469524.js","assets/index.170118430469512.css","assets/editAttr.1701184304695.js","assets/editAttr.1701184304695.css","assets/editOption.1701184304695.js","assets/editOption.1701184304695.css","assets/editFun.1701184304695.js","assets/editEvent.1701184304695.js","assets/editTab.1701184304695.js"]),"../views/iot/device/product/index.vue":()=>__vitePreload(()=>import("./index.170118430469525.js"),["assets/index.170118430469525.js","assets/vue.1701184304695.js","assets/editPro.1701184304695.js","assets/editPro.1701184304695.css","assets/index.170118430469519.js","assets/index.170118430469522.js","assets/index.17011843046957.css"]),"../views/iot/device-tree/tree/index.vue":()=>__vitePreload(()=>import("./index.170118430469526.js"),["assets/index.170118430469526.js","assets/index.170118430469510.css","assets/vue.1701184304695.js","assets/edit.17011843046957.js","assets/index.170118430469519.js"]),"../views/iot/network/server/create.vue":()=>__vitePreload(()=>import("./create.1701184304695.js"),["assets/create.1701184304695.js","assets/create.1701184304695.css","assets/index.170118430469524.js","assets/index.170118430469512.css","assets/vue.1701184304695.js","assets/serverDetail.1701184304695.js","assets/serverDetail.1701184304695.css","assets/index.170118430469527.js"]),"../views/iot/network/server/detail.vue":()=>__vitePreload(()=>import("./detail.17011843046954.js"),["assets/detail.17011843046954.js","assets/detail.17011843046953.css","assets/serverDetail.1701184304695.js","assets/serverDetail.1701184304695.css","assets/index.170118430469527.js","assets/vue.1701184304695.js"]),"../views/iot/network/server/edit.vue":()=>__vitePreload(()=>import("./edit.17011843046958.js"),["assets/edit.17011843046958.js","assets/edit.17011843046955.css","assets/index.170118430469524.js","assets/index.170118430469512.css","assets/vue.1701184304695.js","assets/serverDetail.1701184304695.js","assets/serverDetail.1701184304695.css","assets/index.170118430469527.js"]),"../views/iot/network/server/index.vue":()=>__vitePreload(()=>import("./index.170118430469528.js"),["assets/index.170118430469528.js","assets/vue.1701184304695.js","assets/list.17011843046953.js","assets/list.17011843046953.css","assets/index.170118430469527.js"]),"../views/iot/network/tunnel/create.vue":()=>__vitePreload(()=>import("./create.17011843046952.js"),["assets/create.17011843046952.js","assets/create.17011843046952.css","assets/vue.1701184304695.js","assets/index.170118430469524.js","assets/index.170118430469512.css","assets/serverDetail.17011843046952.js","assets/serverDetail.17011843046952.css","assets/index.170118430469527.js"]),"../views/iot/network/tunnel/detail.vue":()=>__vitePreload(()=>import("./detail.17011843046955.js"),["assets/detail.17011843046955.js","assets/serverDetail.17011843046952.js","assets/serverDetail.17011843046952.css","assets/index.170118430469527.js","assets/vue.1701184304695.js"]),"../views/iot/network/tunnel/edit.vue":()=>__vitePreload(()=>import("./edit.17011843046959.js"),["assets/edit.17011843046959.js","assets/edit.17011843046956.css","assets/vue.1701184304695.js","assets/index.170118430469524.js","assets/index.170118430469512.css","assets/serverDetail.17011843046952.js","assets/serverDetail.17011843046952.css","assets/index.170118430469527.js"]),"../views/iot/network/tunnel/index.vue":()=>__vitePreload(()=>import("./index.170118430469529.js"),["assets/index.170118430469529.js","assets/vue.1701184304695.js","assets/list.17011843046954.js","assets/list.17011843046952.css","assets/index.170118430469527.js"]),"../views/iot/noticeservices/config/index.vue":()=>__vitePreload(()=>import("./index.170118430469530.js"),["assets/index.170118430469530.js","assets/index.17011843046959.css","assets/edit.170118430469510.js","assets/edit.17011843046954.css","assets/index.170118430469520.js","assets/vue.1701184304695.js","assets/index.17011843046958.js"]),"../views/iot/noticeservices/config/setting.vue":()=>__vitePreload(()=>import("./setting.1701184304695.js"),["assets/setting.1701184304695.js","assets/setting.1701184304695.css","assets/vue.1701184304695.js","assets/setEdit.1701184304695.js","assets/edit.17011843046953.css","assets/index.170118430469520.js","assets/temEdit.1701184304695.js"]),"../views/iot/noticeservices/config/template.vue":()=>__vitePreload(()=>import("./template.1701184304695.js"),["assets/template.1701184304695.js","assets/template.1701184304695.css","assets/vue.1701184304695.js","assets/temEdit.1701184304695.js","assets/edit.17011843046953.css","assets/index.170118430469520.js"]),"../views/iot/noticeservices/log/index.vue":()=>__vitePreload(()=>import("./index.170118430469531.js"),["assets/index.170118430469531.js","assets/vue.1701184304695.js","assets/index.170118430469520.js","assets/detail.17011843046956.js"]),"../views/limits/backEnd/page/index.vue":()=>__vitePreload(()=>import("./index.170118430469532.js"),["assets/index.170118430469532.js","assets/vue.1701184304695.js"]),"../views/limits/frontEnd/btn/index.vue":()=>__vitePreload(()=>import("./index.170118430469533.js"),["assets/index.170118430469533.js","assets/index.170118430469511.css","assets/index.170118430469534.js","assets/vue.1701184304695.js"]),"../views/limits/frontEnd/page/index.vue":()=>__vitePreload(()=>import("./index.170118430469534.js"),["assets/index.170118430469534.js","assets/vue.1701184304695.js"]),"../views/system/api/component/edit.vue":()=>__vitePreload(()=>import("./edit.17011843046952.js"),["assets/edit.17011843046952.js","assets/vue.1701184304695.js","assets/validator.1701184304695.js","assets/index.17011843046957.js"]),"../views/system/city/component/edit.vue":()=>__vitePreload(()=>import("./edit.17011843046953.js"),["assets/edit.17011843046953.js","assets/edit.1701184304695.css","assets/index.17011843046957.js","assets/vue.1701184304695.js"]),"../views/system/config/component/editConfig.vue":()=>__vitePreload(()=>import("./editConfig.1701184304695.js"),["assets/editConfig.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/datahub/modeling/detail.vue":()=>__vitePreload(()=>import("./detail.17011843046957.js"),["assets/detail.17011843046957.js","assets/detail.17011843046956.css","assets/vue.1701184304695.js","assets/editNode.1701184304695.js","assets/index.17011843046957.js","assets/relation.1701184304695.js"]),"../views/system/datahub/modeling/index.vue":()=>__vitePreload(()=>import("./index.170118430469535.js"),["assets/index.170118430469535.js","assets/vue.1701184304695.js","assets/edit.170118430469511.js","assets/index.17011843046957.js","assets/vue3cron.1701184304695.js","assets/vue3cron.1701184304695.css","assets/detail.17011843046958.js","assets/detail.17011843046954.css","assets/juhe.1701184304695.js"]),"../views/system/datahub/source/detail.vue":()=>__vitePreload(()=>import("./detail.17011843046959.js"),["assets/detail.17011843046959.js","assets/detail.17011843046955.css","assets/index.17011843046955.css","assets/vue.1701184304695.js","assets/editNode.17011843046952.js","assets/editNode.1701184304695.css","assets/index.17011843046957.js"]),"../views/system/datahub/source/index.vue":()=>__vitePreload(()=>import("./index.170118430469536.js"),["assets/index.170118430469536.js","assets/index.17011843046955.css","assets/vue.1701184304695.js","assets/edit.170118430469512.js","assets/edit.17011843046953.css","assets/index.17011843046957.js","assets/vue3cron.1701184304695.js","assets/vue3cron.1701184304695.css","assets/list.17011843046955.js","assets/list.17011843046954.css"]),"../views/system/dict/component/editDic.vue":()=>__vitePreload(()=>import("./editDic.1701184304695.js"),["assets/editDic.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/dict/component/editDicData.vue":()=>__vitePreload(()=>import("./editDicData.1701184304695.js"),["assets/editDicData.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/manage/blacklist/index.vue":()=>__vitePreload(()=>import("./index.170118430469537.js"),["assets/index.170118430469537.js","assets/vue.1701184304695.js","assets/editPro.17011843046952.js","assets/editPro.17011843046952.css","assets/index.170118430469522.js","assets/index.17011843046957.css"]),"../views/system/manage/dept/index.vue":()=>__vitePreload(()=>import("./index.170118430469538.js"),["assets/index.170118430469538.js","assets/edit.170118430469513.js","assets/validator.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/manage/org/index.vue":()=>__vitePreload(()=>import("./index.170118430469539.js"),["assets/index.170118430469539.js","assets/edit.170118430469514.js","assets/validator.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/manage/post/index.vue":()=>__vitePreload(()=>import("./index.170118430469540.js"),["assets/index.170118430469540.js","assets/editPost.1701184304695.js","assets/editPost.1701184304695.css","assets/vue.1701184304695.js"]),"../views/system/manage/role/index.vue":()=>__vitePreload(()=>import("./index.170118430469541.js"),["assets/index.170118430469541.js","assets/editRole.1701184304695.js","assets/editRole.1701184304695.css","assets/vue.1701184304695.js","assets/editPer.1701184304695.js","assets/editPer.1701184304695.css","assets/permission.1701184304695.js","assets/permission.1701184304695.css"]),"../views/system/manage/user/index.vue":()=>__vitePreload(()=>import("./index.170118430469542.js"),["assets/index.170118430469542.js","assets/vue.1701184304695.js","assets/editUser.1701184304695.js","assets/useCommon.1701184304695.js"]),"../views/system/menu/component/btn-form.vue":()=>__vitePreload(()=>import("./btn-form.1701184304695.js"),["assets/btn-form.1701184304695.js","assets/vue.1701184304695.js","assets/validator.1701184304695.js"]),"../views/system/menu/component/btn.vue":()=>__vitePreload(()=>import("./btn.1701184304695.js"),["assets/btn.1701184304695.js","assets/btn-form.1701184304695.js","assets/vue.1701184304695.js","assets/validator.1701184304695.js"]),"../views/system/menu/component/editMenu.vue":()=>__vitePreload(()=>import("./editMenu.1701184304695.js"),["assets/editMenu.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/menu/component/list-form.vue":()=>__vitePreload(()=>import("./list-form.1701184304695.js"),["assets/list-form.1701184304695.js","assets/vue.1701184304695.js","assets/validator.1701184304695.js"]),"../views/system/menu/component/list.vue":()=>__vitePreload(()=>import("./list.1701184304695.js"),["assets/list.1701184304695.js","assets/list-form.1701184304695.js","assets/vue.1701184304695.js","assets/validator.1701184304695.js"]),"../views/system/monitor/cache/index.vue":()=>__vitePreload(()=>import("./index.170118430469543.js"),["assets/index.170118430469543.js","assets/index.170118430469513.css","assets/echarts.1701184304695.js","assets/wordCloud.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/monitor/loginLog/index.vue":()=>__vitePreload(()=>import("./index.170118430469544.js"),["assets/index.170118430469544.js","assets/vue.1701184304695.js"]),"../views/system/monitor/notice/index.vue":()=>__vitePreload(()=>import("./index.170118430469545.js"),["assets/index.170118430469545.js","assets/edit.170118430469515.js","assets/vue.1701184304695.js","assets/validator.1701184304695.js","assets/index.17011843046957.js","assets/useCommon.1701184304695.js"]),"../views/system/monitor/online/index.vue":()=>__vitePreload(()=>import("./index.170118430469546.js"),["assets/index.170118430469546.js","assets/vue.1701184304695.js"]),"../views/system/monitor/operLog/index.vue":()=>__vitePreload(()=>import("./index.170118430469547.js"),["assets/index.170118430469547.js","assets/vue.1701184304695.js"]),"../views/system/monitor/plugin/edit.vue":()=>__vitePreload(()=>import("./edit.170118430469516.js"),["assets/edit.170118430469516.js","assets/vue.1701184304695.js","assets/validator.1701184304695.js","assets/index.170118430469522.js","assets/index.17011843046957.css"]),"../views/system/monitor/plugin/index.vue":()=>__vitePreload(()=>import("./index.170118430469548.js"),["assets/index.170118430469548.js","assets/vue.1701184304695.js","assets/useCommon.1701184304695.js","assets/edit.170118430469516.js","assets/validator.1701184304695.js","assets/index.170118430469522.js","assets/index.17011843046957.css"]),"../views/system/monitor/server/index.vue":()=>__vitePreload(()=>import("./index.170118430469549.js"),["assets/index.170118430469549.js","assets/index.170118430469514.css","assets/echarts.1701184304695.js","assets/wordCloud.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/task/component/editConfig.vue":()=>__vitePreload(()=>import("./editConfig.17011843046952.js"),["assets/editConfig.17011843046952.js","assets/editConfig.1701184304695.css","assets/vue.1701184304695.js"]),"../views/iot/alarm/log/component/detail.vue":()=>__vitePreload(()=>import("./detail.1701184304695.js"),["assets/detail.1701184304695.js","assets/index.17011843046955.css","assets/index.17011843046958.js","assets/vue3cron.1701184304695.js","assets/vue3cron.1701184304695.css","assets/vue.1701184304695.js"]),"../views/iot/alarm/log/component/edit.vue":()=>__vitePreload(()=>import("./edit.1701184304695.js"),["assets/edit.1701184304695.js","assets/index.17011843046958.js","assets/vue.1701184304695.js"]),"../views/iot/alarm/setting/component/edit.vue":()=>__vitePreload(()=>import("./edit.17011843046954.js"),["assets/edit.17011843046954.js","assets/edit.17011843046953.css","assets/index.17011843046957.js","assets/index.170118430469519.js","assets/index.17011843046958.js","assets/index.170118430469520.js","assets/vue.1701184304695.js"]),"../views/iot/alarm/setting/component/level.vue":()=>__vitePreload(()=>import("./level.1701184304695.js"),["assets/level.1701184304695.js","assets/index.17011843046958.js","assets/vue.1701184304695.js"]),"../views/iot/device/category/component/edit.vue":()=>__vitePreload(()=>import("./edit.17011843046955.js"),["assets/edit.17011843046955.js","assets/index.170118430469519.js","assets/vue.1701184304695.js"]),"../views/iot/device/instance/component/edit.vue":()=>__vitePreload(()=>import("./edit.17011843046956.js"),["assets/edit.17011843046956.js","assets/edit.17011843046952.css","assets/index.170118430469519.js","assets/tag.1701184304695.js","assets/vue.1701184304695.js"]),"../views/iot/device/instance/component/function.vue":()=>__vitePreload(()=>import("./function.1701184304695.js"),["assets/function.1701184304695.js","assets/function.1701184304695.css","assets/index.170118430469519.js","assets/vue.1701184304695.js"]),"../views/iot/device/instance/component/list.vue":()=>__vitePreload(()=>import("./list.17011843046952.js"),["assets/list.17011843046952.js","assets/list.1701184304695.css","assets/vue.1701184304695.js","assets/index.170118430469519.js"]),"../views/iot/device/instance/component/setAttr.vue":()=>__vitePreload(()=>import("./setAttr.1701184304695.js"),["assets/setAttr.1701184304695.js","assets/index.170118430469519.js","assets/vue.1701184304695.js"]),"../views/iot/device/instance/component/subDevice.vue":()=>__vitePreload(()=>import("./subDevice.1701184304695.js").then(function(e){return e.s}),["assets/subDevice.1701184304695.js","assets/detail.1701184304695.css","assets/index.17011843046955.css","assets/vue.1701184304695.js","assets/function.1701184304695.js","assets/function.1701184304695.css","assets/index.170118430469519.js","assets/editPro.1701184304695.js","assets/editPro.1701184304695.css","assets/index.170118430469522.js","assets/index.17011843046957.css","assets/editAttr.1701184304695.js","assets/editAttr.1701184304695.css","assets/editOption.1701184304695.js","assets/editOption.1701184304695.css","assets/editFun.1701184304695.js","assets/editEvent.1701184304695.js","assets/editTab.1701184304695.js","assets/list.17011843046952.js","assets/list.1701184304695.css"]),"../views/iot/device/instance/component/subDeviceMutipleBind.vue":()=>__vitePreload(()=>import("./subDeviceMutipleBind.1701184304695.js"),["assets/subDeviceMutipleBind.1701184304695.js","assets/index.17011843046955.css","assets/vue.1701184304695.js","assets/index.170118430469519.js"]),"../views/iot/device/instance/component/tag.vue":()=>__vitePreload(()=>import("./tag.1701184304695.js"),["assets/tag.1701184304695.js","assets/vue.1701184304695.js"]),"../views/iot/device/product/component/dataParse.vue":()=>__vitePreload(()=>import("./dataParse.1701184304695.js"),["assets/dataParse.1701184304695.js","assets/dataParse.1701184304695.css","assets/index.170118430469524.js","assets/index.170118430469512.css","assets/vue.1701184304695.js","assets/index.170118430469519.js"]),"../views/iot/device/product/component/deviceIn.vue":()=>__vitePreload(()=>import("./deviceIn.1701184304695.js"),["assets/deviceIn.1701184304695.js","assets/deviceIn.1701184304695.css","assets/vue.1701184304695.js"]),"../views/iot/device/product/component/editAttr.vue":()=>__vitePreload(()=>import("./editAttr.1701184304695.js"),["assets/editAttr.1701184304695.js","assets/editAttr.1701184304695.css","assets/index.170118430469519.js","assets/editOption.1701184304695.js","assets/editOption.1701184304695.css","assets/vue.1701184304695.js"]),"../views/iot/device/product/component/editEvent.vue":()=>__vitePreload(()=>import("./editEvent.1701184304695.js"),["assets/editEvent.1701184304695.js","assets/editAttr.1701184304695.css","assets/index.170118430469519.js","assets/editOption.1701184304695.js","assets/editOption.1701184304695.css","assets/vue.1701184304695.js"]),"../views/iot/device/product/component/editFun.vue":()=>__vitePreload(()=>import("./editFun.1701184304695.js"),["assets/editFun.1701184304695.js","assets/editAttr.1701184304695.css","assets/index.170118430469519.js","assets/editOption.1701184304695.js","assets/editOption.1701184304695.css","assets/vue.1701184304695.js"]),"../views/iot/device/product/component/editOption.vue":()=>__vitePreload(()=>import("./editOption.1701184304695.js"),["assets/editOption.1701184304695.js","assets/editOption.1701184304695.css","assets/index.170118430469519.js","assets/vue.1701184304695.js"]),"../views/iot/device/product/component/editPro.vue":()=>__vitePreload(()=>import("./editPro.1701184304695.js"),["assets/editPro.1701184304695.js","assets/editPro.1701184304695.css","assets/index.170118430469519.js","assets/index.170118430469522.js","assets/index.17011843046957.css","assets/vue.1701184304695.js"]),"../views/iot/device/product/component/editTab.vue":()=>__vitePreload(()=>import("./editTab.1701184304695.js"),["assets/editTab.1701184304695.js","assets/editAttr.1701184304695.css","assets/index.170118430469519.js","assets/editOption.1701184304695.js","assets/editOption.1701184304695.css","assets/vue.1701184304695.js"]),"../views/iot/device-tree/tree/component/edit.vue":()=>__vitePreload(()=>import("./edit.17011843046957.js"),["assets/edit.17011843046957.js","assets/index.170118430469519.js","assets/vue.1701184304695.js"]),"../views/iot/network/server/component/list.vue":()=>__vitePreload(()=>import("./list.17011843046953.js"),["assets/list.17011843046953.js","assets/list.17011843046953.css","assets/vue.1701184304695.js","assets/index.170118430469527.js"]),"../views/iot/network/server/component/serverDetail.vue":()=>__vitePreload(()=>import("./serverDetail.1701184304695.js"),["assets/serverDetail.1701184304695.js","assets/serverDetail.1701184304695.css","assets/index.170118430469527.js","assets/vue.1701184304695.js"]),"../views/iot/network/tunnel/component/list.vue":()=>__vitePreload(()=>import("./list.17011843046954.js"),["assets/list.17011843046954.js","assets/list.17011843046952.css","assets/vue.1701184304695.js","assets/index.170118430469527.js"]),"../views/iot/network/tunnel/component/serverDetail.vue":()=>__vitePreload(()=>import("./serverDetail.17011843046952.js"),["assets/serverDetail.17011843046952.js","assets/serverDetail.17011843046952.css","assets/index.170118430469527.js","assets/vue.1701184304695.js"]),"../views/iot/noticeservices/config/component/edit.vue":()=>__vitePreload(()=>import("./edit.170118430469510.js"),["assets/edit.170118430469510.js","assets/edit.17011843046954.css","assets/index.170118430469520.js","assets/vue.1701184304695.js"]),"../views/iot/noticeservices/config/component/setEdit.vue":()=>__vitePreload(()=>import("./setEdit.1701184304695.js"),["assets/setEdit.1701184304695.js","assets/edit.17011843046953.css","assets/index.170118430469520.js","assets/vue.1701184304695.js"]),"../views/iot/noticeservices/config/component/temEdit.vue":()=>__vitePreload(()=>import("./temEdit.1701184304695.js"),["assets/temEdit.1701184304695.js","assets/edit.17011843046953.css","assets/index.170118430469520.js","assets/vue.1701184304695.js"]),"../views/iot/noticeservices/log/component/detail.vue":()=>__vitePreload(()=>import("./detail.17011843046956.js"),["assets/detail.17011843046956.js","assets/vue.1701184304695.js"]),"../views/system/datahub/modeling/component/detail.vue":()=>__vitePreload(()=>import("./detail.17011843046958.js"),["assets/detail.17011843046958.js","assets/detail.17011843046954.css","assets/vue.1701184304695.js","assets/index.17011843046957.js"]),"../views/system/datahub/modeling/component/edit.vue":()=>__vitePreload(()=>import("./edit.170118430469511.js"),["assets/edit.170118430469511.js","assets/index.17011843046957.js","assets/vue3cron.1701184304695.js","assets/vue3cron.1701184304695.css","assets/vue.1701184304695.js"]),"../views/system/datahub/modeling/component/editNode.vue":()=>__vitePreload(()=>import("./editNode.1701184304695.js"),["assets/editNode.1701184304695.js","assets/index.17011843046957.js","assets/vue.1701184304695.js"]),"../views/system/datahub/modeling/component/juhe.vue":()=>__vitePreload(()=>import("./juhe.1701184304695.js"),["assets/juhe.1701184304695.js","assets/index.17011843046957.js","assets/vue.1701184304695.js"]),"../views/system/datahub/modeling/component/relation.vue":()=>__vitePreload(()=>import("./relation.1701184304695.js"),["assets/relation.1701184304695.js","assets/index.17011843046957.js","assets/vue.1701184304695.js"]),"../views/system/datahub/source/component/edit.vue":()=>__vitePreload(()=>import("./edit.170118430469512.js"),["assets/edit.170118430469512.js","assets/edit.17011843046953.css","assets/index.17011843046955.css","assets/index.17011843046957.js","assets/vue3cron.1701184304695.js","assets/vue3cron.1701184304695.css","assets/vue.1701184304695.js"]),"../views/system/datahub/source/component/editNode.vue":()=>__vitePreload(()=>import("./editNode.17011843046952.js"),["assets/editNode.17011843046952.js","assets/editNode.1701184304695.css","assets/index.17011843046955.css","assets/index.17011843046957.js","assets/vue.1701184304695.js"]),"../views/system/datahub/source/component/list.vue":()=>__vitePreload(()=>import("./list.17011843046955.js"),["assets/list.17011843046955.js","assets/list.17011843046954.css","assets/vue.1701184304695.js","assets/index.17011843046957.js"]),"../views/system/manage/blacklist/component/editPro.vue":()=>__vitePreload(()=>import("./editPro.17011843046952.js"),["assets/editPro.17011843046952.js","assets/editPro.17011843046952.css","assets/index.170118430469522.js","assets/index.17011843046957.css","assets/vue.1701184304695.js"]),"../views/system/manage/dept/component/edit.vue":()=>__vitePreload(()=>import("./edit.170118430469513.js"),["assets/edit.170118430469513.js","assets/validator.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/manage/org/component/edit.vue":()=>__vitePreload(()=>import("./edit.170118430469514.js"),["assets/edit.170118430469514.js","assets/validator.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/manage/post/component/editPost.vue":()=>__vitePreload(()=>import("./editPost.1701184304695.js"),["assets/editPost.1701184304695.js","assets/editPost.1701184304695.css","assets/vue.1701184304695.js"]),"../views/system/manage/role/component/editPer.vue":()=>__vitePreload(()=>import("./editPer.1701184304695.js"),["assets/editPer.1701184304695.js","assets/editPer.1701184304695.css","assets/vue.1701184304695.js"]),"../views/system/manage/role/component/editRole.vue":()=>__vitePreload(()=>import("./editRole.1701184304695.js"),["assets/editRole.1701184304695.js","assets/editRole.1701184304695.css","assets/vue.1701184304695.js"]),"../views/system/manage/role/component/permission.vue":()=>__vitePreload(()=>import("./permission.1701184304695.js"),["assets/permission.1701184304695.js","assets/permission.1701184304695.css","assets/vue.1701184304695.js"]),"../views/system/manage/user/component/editUser.vue":()=>__vitePreload(()=>import("./editUser.1701184304695.js"),["assets/editUser.1701184304695.js","assets/vue.1701184304695.js"]),"../views/system/monitor/notice/component/edit.vue":()=>__vitePreload(()=>import("./edit.170118430469515.js"),["assets/edit.170118430469515.js","assets/vue.1701184304695.js","assets/validator.1701184304695.js","assets/index.17011843046957.js"])},dynamicViewsModules=Object.assign({},{...layouModules},{...viewsModules});async function initBackEndControlRoutes(){var t;if(window.nextLoading===void 0&&NextLoading.start(),!localStorage.token)return!1;store.dispatch("userInfos/setUserInfos");let e=Session.get("userMenu");e||(await getBackEndControlRoutes(),e=Session.get("userMenu")),store.dispatch("requestOldRoutes/setBackEndControlRoutes",JSON.parse(JSON.stringify(e))),(t=dynamicRoutes[0].children)==null||t.push(...await backEndComponent(e)),await setAddRoute(),setFilterMenuAndCacheTagsViewRoutes()}async function getBackEndControlRoutes(){return api.login.currentUser().then(e=>{Session.set("userMenu",e.Data||[])})}function backEndComponent(e){if(!!e)return e.map(t=>{var n;return t.component&&(t.component=dynamicImport(dynamicViewsModules,t.component)),(n=t.children)!=null&&n.length&&backEndComponent(t.children),t.meta={icon:t.icon,isAffix:t.isAffix,isHide:t.isHide,isIframe:t.isIframe,isKeepAlive:t.isKeepAlive,isLink:t.isLink,linkUrl:t.linkUrl,title:t.title,buttons:treeToArr(t.button).map(r=>r.types),columns:(t.column||[]).map(r=>r.code)},t})}function dynamicImport(e,t){const r=Object.keys(e).filter(i=>{const g=i.replace(/..\/views|../,"");return g.startsWith(`${t}`)||g.startsWith(`/${t}`)});if((r==null?void 0:r.length)===1){const i=r[0];return e[i]}if((r==null?void 0:r.length)>1)return!1}function treeToArr(e){if(!e)return[];let t=[];return e.forEach(n=>{t.push(n),n.children&&(t=t.concat(treeToArr(n.children)))}),t}const router=createRouter({history:createWebHashHistory(),routes:staticRoutes}),pathMatch={path:"/:path(.*)*",redirect:"/404"};function formatFlatteningRoutes(e){if(e.length<=0)return!1;for(let t=0;t{var i,g;r.path==="/"?t.push({component:r.component,name:r.name,path:r.path,redirect:r.redirect,meta:r.meta,children:[]}):(r.path.indexOf("/:")>-1&&(r.meta.isDynamic=!0,r.meta.isDynamicPath=r.path),t[0].children.push({...r}),((i=t[0].meta)==null?void 0:i.isKeepAlive)&&((g=r.meta)==null?void 0:g.isKeepAlive)&&(n.push(r.name),store.dispatch("keepAliveNames/setCacheKeepAlive",n)))}),t}function setCacheTagsViewRoutes(){let e=dynamicRoutes;store.dispatch("tagsViewRoutes/setTagsViewRoutes",formatTwoStageRoutes(formatFlatteningRoutes(e))[0].children)}function setFilterMenuAndCacheTagsViewRoutes(){store.dispatch("routesList/setRoutesList",dynamicRoutes[0].children),setCacheTagsViewRoutes()}function setFilterRouteEnd(){let e=formatTwoStageRoutes(formatFlatteningRoutes(dynamicRoutes));return e[0].children=[...e[0].children,{...pathMatch}],e}async function setAddRoute(){await setFilterRouteEnd().forEach(n=>{const r=n.name;router.hasRoute(r)||router.addRoute(n)});const e=JSON.parse(localStorage.sysinfo||"{}"),t=router.getRoutes().find(n=>n.path==="/");t&&e.systemHomePageRoute&&(t.redirect=e.systemHomePageRoute)}async function resetRoute(){await setFilterRouteEnd().forEach(e=>{const t=e.name;router.hasRoute(t)&&router.removeRoute(t)})}const{isRequestRoutes}=store.state.themeConfig.themeConfig;isRequestRoutes||initFrontEndControlRoutes();router.beforeEach(async(e,t,n)=>{var i;NProgress.configure({showSpinner:!1}),(i=e.meta)!=null&&i.title&&NProgress.start(),e.path==="/dbInit"&&(n(),NProgress.done());const r=localStorage.token;if(e.path==="/login"&&!r)n(),NProgress.done();else if(r)r&&e.path==="/login"?(n("/"),NProgress.done()):store.state.routesList.routesList.length===0?isRequestRoutes&&(await initBackEndControlRoutes(),n({...e,replace:!0})):n();else{const g=Object.keys(e.query).length||Object.keys(e.params).length;let $="";g&&($=`¶ms=${JSON.stringify(Object.keys(e.query).length?e.query:e.params)}`),n(`/login?redirect=${e.path}${$}`),Session.clear(),resetRoute(),NProgress.done()}});router.afterEach(()=>{NProgress.done(),NextLoading.done()});var vueI18n_cjs={};/*! +* @intlify/shared v9.1.10 +* (c) 2022 kazuya kawaguchi +* Released under the MIT License. +*/const inBrowser=typeof window!="undefined";let mark,measure;const RE_ARGS=/\{([0-9a-zA-Z]+)\}/g;function format(e,...t){return t.length===1&&isObject$1(t[0])&&(t=t[0]),(!t||!t.hasOwnProperty)&&(t={}),e.replace(RE_ARGS,(n,r)=>t.hasOwnProperty(r)?t[r]:"")}const hasSymbol=typeof Symbol=="function"&&typeof Symbol.toStringTag=="symbol",makeSymbol=e=>hasSymbol?Symbol(e):e,generateFormatCacheKey=(e,t,n)=>friendlyJSONstringify({l:e,k:t,s:n}),friendlyJSONstringify=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),isNumber=e=>typeof e=="number"&&isFinite(e),isDate=e=>toTypeString(e)==="[object Date]",isRegExp=e=>toTypeString(e)==="[object RegExp]",isEmptyObject=e=>isPlainObject(e)&&Object.keys(e).length===0;function warn(e,t){typeof console!="undefined"&&(console.warn("[intlify] "+e),t&&console.warn(t.stack))}const assign=Object.assign;let _globalThis;const getGlobalThis=()=>_globalThis||(_globalThis=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});function escapeHtml(e){return e.replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}const hasOwnProperty$1=Object.prototype.hasOwnProperty;function hasOwn$1(e,t){return hasOwnProperty$1.call(e,t)}const isArray=Array.isArray,isFunction=e=>typeof e=="function",isString=e=>typeof e=="string",isBoolean=e=>typeof e=="boolean",isSymbol=e=>typeof e=="symbol",isObject$1=e=>e!==null&&typeof e=="object",isPromise=e=>isObject$1(e)&&isFunction(e.then)&&isFunction(e.catch),objectToString=Object.prototype.toString,toTypeString=e=>objectToString.call(e),isPlainObject=e=>toTypeString(e)==="[object Object]",toDisplayString=e=>e==null?"":isArray(e)||isPlainObject(e)&&e.toString===objectToString?JSON.stringify(e,null,2):String(e),RANGE=2;function generateCodeFrame(e,t=0,n=e.length){const r=e.split(/\r?\n/);let i=0;const g=[];for(let $=0;$=t){for(let y=$-RANGE;y<=$+RANGE||n>i;y++){if(y<0||y>=r.length)continue;const k=y+1;g.push(`${k}${" ".repeat(3-String(k).length)}| ${r[y]}`);const j=r[y].length;if(y===$){const L=t-(i-j)+1,V=Math.max(1,n>i?j-L:n-t);g.push(" | "+" ".repeat(L)+"^".repeat(V))}else if(y>$){if(n>i){const L=Math.max(Math.min(n-i,j),1);g.push(" | "+"^".repeat(L))}i+=j+1}}break}return g.join(` +`)}function createEmitter(){const e=new Map;return{events:e,on(n,r){const i=e.get(n);i&&i.push(r)||e.set(n,[r])},off(n,r){const i=e.get(n);i&&i.splice(i.indexOf(r)>>>0,1)},emit(n,r){(e.get(n)||[]).slice().map(i=>i(r)),(e.get("*")||[]).slice().map(i=>i(n,r))}}}var shared_esmBundler=Object.freeze(Object.defineProperty({__proto__:null,assign,createEmitter,escapeHtml,format,friendlyJSONstringify,generateCodeFrame,generateFormatCacheKey,getGlobalThis,hasOwn:hasOwn$1,inBrowser,isArray,isBoolean,isDate,isEmptyObject,isFunction,isNumber,isObject:isObject$1,isPlainObject,isPromise,isRegExp,isString,isSymbol,makeSymbol,mark,measure,objectToString,toDisplayString,toTypeString,warn},Symbol.toStringTag,{value:"Module"})),require$$0$1=getAugmentedNamespace(shared_esmBundler);/*! +* @intlify/message-resolver v9.1.10 +* (c) 2022 kazuya kawaguchi +* Released under the MIT License. +*/const hasOwnProperty=Object.prototype.hasOwnProperty;function hasOwn(e,t){return hasOwnProperty.call(e,t)}const isObject=e=>e!==null&&typeof e=="object",pathStateMachine=[];pathStateMachine[0]={w:[0],i:[3,0],["["]:[4],o:[7]};pathStateMachine[1]={w:[1],["."]:[2],["["]:[4],o:[7]};pathStateMachine[2]={w:[2],i:[3,0],[0]:[3,0]};pathStateMachine[3]={i:[3,0],[0]:[3,0],w:[1,1],["."]:[2,1],["["]:[4,1],o:[7,1]};pathStateMachine[4]={["'"]:[5,0],['"']:[6,0],["["]:[4,2],["]"]:[1,3],o:8,l:[4,0]};pathStateMachine[5]={["'"]:[4,0],o:8,l:[5,0]};pathStateMachine[6]={['"']:[4,0],o:8,l:[6,0]};const literalValueRE=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function isLiteral(e){return literalValueRE.test(e)}function stripQuotes(e){const t=e.charCodeAt(0),n=e.charCodeAt(e.length-1);return t===n&&(t===34||t===39)?e.slice(1,-1):e}function getPathCharType(e){if(e==null)return"o";switch(e.charCodeAt(0)){case 91:case 93:case 46:case 34:case 39:return e;case 95:case 36:case 45:return"i";case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"w"}return"i"}function formatSubPath(e){const t=e.trim();return e.charAt(0)==="0"&&isNaN(parseInt(e))?!1:isLiteral(t)?stripQuotes(t):"*"+t}function parse(e){const t=[];let n=-1,r=0,i=0,g,$,y,k,j,L,V;const z=[];z[0]=()=>{$===void 0?$=y:$+=y},z[1]=()=>{$!==void 0&&(t.push($),$=void 0)},z[2]=()=>{z[0](),i++},z[3]=()=>{if(i>0)i--,r=4,z[0]();else{if(i=0,$===void 0||($=formatSubPath($),$===!1))return!1;z[1]()}};function oe(){const re=e[n+1];if(r===5&&re==="'"||r===6&&re==='"')return n++,y="\\"+re,z[0](),!0}for(;r!==null;)if(n++,g=e[n],!(g==="\\"&&oe())){if(k=getPathCharType(g),V=pathStateMachine[r],j=V[k]||V.l||8,j===8||(r=j[0],j[1]!==void 0&&(L=z[j[1]],L&&(y=g,L()===!1))))return;if(r===7)return t}}const cache=new Map;function resolveValue(e,t){if(!isObject(e))return null;let n=cache.get(t);if(n||(n=parse(t),n&&cache.set(t,n)),!n)return null;const r=n.length;let i=e,g=0;for(;ge,DEFAULT_MESSAGE=e=>"",DEFAULT_MESSAGE_DATA_TYPE="text",DEFAULT_NORMALIZE=e=>e.length===0?"":e.join(""),DEFAULT_INTERPOLATE=toDisplayString;function pluralDefault(e,t){return e=Math.abs(e),t===2?e?e>1?1:0:1:e?Math.min(e,2):0}function getPluralIndex(e){const t=isNumber(e.pluralIndex)?e.pluralIndex:-1;return e.named&&(isNumber(e.named.count)||isNumber(e.named.n))?isNumber(e.named.count)?e.named.count:isNumber(e.named.n)?e.named.n:t:t}function normalizeNamed(e,t){t.count||(t.count=e),t.n||(t.n=e)}function createMessageContext(e={}){const t=e.locale,n=getPluralIndex(e),r=isObject$1(e.pluralRules)&&isString(t)&&isFunction(e.pluralRules[t])?e.pluralRules[t]:pluralDefault,i=isObject$1(e.pluralRules)&&isString(t)&&isFunction(e.pluralRules[t])?pluralDefault:void 0,g=ae=>ae[r(n,ae.length,i)],$=e.list||[],y=ae=>$[ae],k=e.named||{};isNumber(e.pluralIndex)&&normalizeNamed(n,k);const j=ae=>k[ae];function L(ae){const le=isFunction(e.messages)?e.messages(ae):isObject$1(e.messages)?e.messages[ae]:!1;return le||(e.parent?e.parent.message(ae):DEFAULT_MESSAGE)}const V=ae=>e.modifiers?e.modifiers[ae]:DEFAULT_MODIFIER,z=isPlainObject(e.processor)&&isFunction(e.processor.normalize)?e.processor.normalize:DEFAULT_NORMALIZE,oe=isPlainObject(e.processor)&&isFunction(e.processor.interpolate)?e.processor.interpolate:DEFAULT_INTERPOLATE,re=isPlainObject(e.processor)&&isString(e.processor.type)?e.processor.type:DEFAULT_MESSAGE_DATA_TYPE,ie={list:y,named:j,plural:g,linked:(ae,le)=>{const de=L(ae)(ie);return isString(le)?V(le)(de):de},message:L,type:re,interpolate:oe,normalize:z};return ie}/*! + * @intlify/message-compiler v9.1.10 + * (c) 2022 kazuya kawaguchi + * Released under the MIT License. + */function createCompileError(e,t,n={}){const{domain:r,messages:i,args:g}=n,$=e,y=new SyntaxError(String($));return y.code=e,t&&(y.location=t),y.domain=r,y}function defaultOnError(e){throw e}function createPosition(e,t,n){return{line:e,column:t,offset:n}}function createLocation(e,t,n){const r={start:e,end:t};return n!=null&&(r.source=n),r}const CHAR_SP=" ",CHAR_CR="\r",CHAR_LF=` +`,CHAR_LS=String.fromCharCode(8232),CHAR_PS=String.fromCharCode(8233);function createScanner(e){const t=e;let n=0,r=1,i=1,g=0;const $=Ie=>t[Ie]===CHAR_CR&&t[Ie+1]===CHAR_LF,y=Ie=>t[Ie]===CHAR_LF,k=Ie=>t[Ie]===CHAR_PS,j=Ie=>t[Ie]===CHAR_LS,L=Ie=>$(Ie)||y(Ie)||k(Ie)||j(Ie),V=()=>n,z=()=>r,oe=()=>i,re=()=>g,ie=Ie=>$(Ie)||k(Ie)||j(Ie)?CHAR_LF:t[Ie],ae=()=>ie(n),le=()=>ie(n+g);function de(){return g=0,L(n)&&(r++,i=0),$(n)&&n++,n++,i++,t[n]}function pe(){return $(n+g)&&g++,g++,t[n+g]}function he(){n=0,r=1,i=1,g=0}function ue(Ie=0){g=Ie}function _e(){const Ie=n+g;for(;Ie!==n;)de();g=0}return{index:V,line:z,column:oe,peekOffset:re,charAt:ie,currentChar:ae,currentPeek:le,next:de,peek:pe,reset:he,resetPeek:ue,skipToPeek:_e}}const EOF=void 0,LITERAL_DELIMITER="'",ERROR_DOMAIN$1="tokenizer";function createTokenizer(e,t={}){const n=t.location!==!1,r=createScanner(e),i=()=>r.index(),g=()=>createPosition(r.line(),r.column(),r.index()),$=g(),y=i(),k={currentType:14,offset:y,startLoc:$,endLoc:$,lastType:14,lastOffset:y,lastStartLoc:$,lastEndLoc:$,braceNest:0,inLinked:!1,text:""},j=()=>k,{onError:L}=t;function V(Mn,Fn,jn,...zn){const Jn=j();if(Fn.column+=jn,Fn.offset+=jn,L){const io=createLocation(Jn.startLoc,Fn),eo=createCompileError(Mn,io,{domain:ERROR_DOMAIN$1,args:zn});L(eo)}}function z(Mn,Fn,jn){Mn.endLoc=g(),Mn.currentType=Fn;const zn={type:Fn};return n&&(zn.loc=createLocation(Mn.startLoc,Mn.endLoc)),jn!=null&&(zn.value=jn),zn}const oe=Mn=>z(Mn,14);function re(Mn,Fn){return Mn.currentChar()===Fn?(Mn.next(),Fn):(V(0,g(),0,Fn),"")}function ie(Mn){let Fn="";for(;Mn.currentPeek()===CHAR_SP||Mn.currentPeek()===CHAR_LF;)Fn+=Mn.currentPeek(),Mn.peek();return Fn}function ae(Mn){const Fn=ie(Mn);return Mn.skipToPeek(),Fn}function le(Mn){if(Mn===EOF)return!1;const Fn=Mn.charCodeAt(0);return Fn>=97&&Fn<=122||Fn>=65&&Fn<=90||Fn===95}function de(Mn){if(Mn===EOF)return!1;const Fn=Mn.charCodeAt(0);return Fn>=48&&Fn<=57}function pe(Mn,Fn){const{currentType:jn}=Fn;if(jn!==2)return!1;ie(Mn);const zn=le(Mn.currentPeek());return Mn.resetPeek(),zn}function he(Mn,Fn){const{currentType:jn}=Fn;if(jn!==2)return!1;ie(Mn);const zn=Mn.currentPeek()==="-"?Mn.peek():Mn.currentPeek(),Jn=de(zn);return Mn.resetPeek(),Jn}function ue(Mn,Fn){const{currentType:jn}=Fn;if(jn!==2)return!1;ie(Mn);const zn=Mn.currentPeek()===LITERAL_DELIMITER;return Mn.resetPeek(),zn}function _e(Mn,Fn){const{currentType:jn}=Fn;if(jn!==8)return!1;ie(Mn);const zn=Mn.currentPeek()===".";return Mn.resetPeek(),zn}function Ie(Mn,Fn){const{currentType:jn}=Fn;if(jn!==9)return!1;ie(Mn);const zn=le(Mn.currentPeek());return Mn.resetPeek(),zn}function Ce(Mn,Fn){const{currentType:jn}=Fn;if(!(jn===8||jn===12))return!1;ie(Mn);const zn=Mn.currentPeek()===":";return Mn.resetPeek(),zn}function Oe(Mn,Fn){const{currentType:jn}=Fn;if(jn!==10)return!1;const zn=()=>{const io=Mn.currentPeek();return io==="{"?le(Mn.peek()):io==="@"||io==="%"||io==="|"||io===":"||io==="."||io===CHAR_SP||!io?!1:io===CHAR_LF?(Mn.peek(),zn()):le(io)},Jn=zn();return Mn.resetPeek(),Jn}function $e(Mn){ie(Mn);const Fn=Mn.currentPeek()==="|";return Mn.resetPeek(),Fn}function qe(Mn,Fn=!0){const jn=(Jn=!1,io="",eo=!1)=>{const Un=Mn.currentPeek();return Un==="{"?io==="%"?!1:Jn:Un==="@"||!Un?io==="%"?!0:Jn:Un==="%"?(Mn.peek(),jn(Jn,"%",!0)):Un==="|"?io==="%"||eo?!0:!(io===CHAR_SP||io===CHAR_LF):Un===CHAR_SP?(Mn.peek(),jn(!0,CHAR_SP,eo)):Un===CHAR_LF?(Mn.peek(),jn(!0,CHAR_LF,eo)):!0},zn=jn();return Fn&&Mn.resetPeek(),zn}function ze(Mn,Fn){const jn=Mn.currentChar();return jn===EOF?EOF:Fn(jn)?(Mn.next(),jn):null}function Ue(Mn){return ze(Mn,jn=>{const zn=jn.charCodeAt(0);return zn>=97&&zn<=122||zn>=65&&zn<=90||zn>=48&&zn<=57||zn===95||zn===36})}function kt(Mn){return ze(Mn,jn=>{const zn=jn.charCodeAt(0);return zn>=48&&zn<=57})}function At(Mn){return ze(Mn,jn=>{const zn=jn.charCodeAt(0);return zn>=48&&zn<=57||zn>=65&&zn<=70||zn>=97&&zn<=102})}function Pt(Mn){let Fn="",jn="";for(;Fn=kt(Mn);)jn+=Fn;return jn}function jt(Mn){let Fn="";for(;;){const jn=Mn.currentChar();if(jn==="{"||jn==="}"||jn==="@"||jn==="|"||!jn)break;if(jn==="%")if(qe(Mn))Fn+=jn,Mn.next();else break;else if(jn===CHAR_SP||jn===CHAR_LF)if(qe(Mn))Fn+=jn,Mn.next();else{if($e(Mn))break;Fn+=jn,Mn.next()}else Fn+=jn,Mn.next()}return Fn}function bn(Mn){ae(Mn);let Fn="",jn="";for(;Fn=Ue(Mn);)jn+=Fn;return Mn.currentChar()===EOF&&V(6,g(),0),jn}function hn(Mn){ae(Mn);let Fn="";return Mn.currentChar()==="-"?(Mn.next(),Fn+=`-${Pt(Mn)}`):Fn+=Pt(Mn),Mn.currentChar()===EOF&&V(6,g(),0),Fn}function Dt(Mn){ae(Mn),re(Mn,"'");let Fn="",jn="";const zn=io=>io!==LITERAL_DELIMITER&&io!==CHAR_LF;for(;Fn=ze(Mn,zn);)Fn==="\\"?jn+=wn(Mn):jn+=Fn;const Jn=Mn.currentChar();return Jn===CHAR_LF||Jn===EOF?(V(2,g(),0),Jn===CHAR_LF&&(Mn.next(),re(Mn,"'")),jn):(re(Mn,"'"),jn)}function wn(Mn){const Fn=Mn.currentChar();switch(Fn){case"\\":case"'":return Mn.next(),`\\${Fn}`;case"u":return _n(Mn,Fn,4);case"U":return _n(Mn,Fn,6);default:return V(3,g(),0,Fn),""}}function _n(Mn,Fn,jn){re(Mn,Fn);let zn="";for(let Jn=0;JnJn!=="{"&&Jn!=="}"&&Jn!==CHAR_SP&&Jn!==CHAR_LF;for(;Fn=ze(Mn,zn);)jn+=Fn;return jn}function Cn(Mn){let Fn="",jn="";for(;Fn=Ue(Mn);)jn+=Fn;return jn}function xn(Mn){const Fn=(jn=!1,zn)=>{const Jn=Mn.currentChar();return Jn==="{"||Jn==="%"||Jn==="@"||Jn==="|"||!Jn||Jn===CHAR_SP?zn:Jn===CHAR_LF?(zn+=Jn,Mn.next(),Fn(jn,zn)):(zn+=Jn,Mn.next(),Fn(!0,zn))};return Fn(!1,"")}function En(Mn){ae(Mn);const Fn=re(Mn,"|");return ae(Mn),Fn}function Sn(Mn,Fn){let jn=null;switch(Mn.currentChar()){case"{":return Fn.braceNest>=1&&V(8,g(),0),Mn.next(),jn=z(Fn,2,"{"),ae(Mn),Fn.braceNest++,jn;case"}":return Fn.braceNest>0&&Fn.currentType===2&&V(7,g(),0),Mn.next(),jn=z(Fn,3,"}"),Fn.braceNest--,Fn.braceNest>0&&ae(Mn),Fn.inLinked&&Fn.braceNest===0&&(Fn.inLinked=!1),jn;case"@":return Fn.braceNest>0&&V(6,g(),0),jn=Bn(Mn,Fn)||oe(Fn),Fn.braceNest=0,jn;default:let Jn=!0,io=!0,eo=!0;if($e(Mn))return Fn.braceNest>0&&V(6,g(),0),jn=z(Fn,1,En(Mn)),Fn.braceNest=0,Fn.inLinked=!1,jn;if(Fn.braceNest>0&&(Fn.currentType===5||Fn.currentType===6||Fn.currentType===7))return V(6,g(),0),Fn.braceNest=0,An(Mn,Fn);if(Jn=pe(Mn,Fn))return jn=z(Fn,5,bn(Mn)),ae(Mn),jn;if(io=he(Mn,Fn))return jn=z(Fn,6,hn(Mn)),ae(Mn),jn;if(eo=ue(Mn,Fn))return jn=z(Fn,7,Dt(Mn)),ae(Mn),jn;if(!Jn&&!io&&!eo)return jn=z(Fn,13,vn(Mn)),V(1,g(),0,jn.value),ae(Mn),jn;break}return jn}function Bn(Mn,Fn){const{currentType:jn}=Fn;let zn=null;const Jn=Mn.currentChar();switch((jn===8||jn===9||jn===12||jn===10)&&(Jn===CHAR_LF||Jn===CHAR_SP)&&V(9,g(),0),Jn){case"@":return Mn.next(),zn=z(Fn,8,"@"),Fn.inLinked=!0,zn;case".":return ae(Mn),Mn.next(),z(Fn,9,".");case":":return ae(Mn),Mn.next(),z(Fn,10,":");default:return $e(Mn)?(zn=z(Fn,1,En(Mn)),Fn.braceNest=0,Fn.inLinked=!1,zn):_e(Mn,Fn)||Ce(Mn,Fn)?(ae(Mn),Bn(Mn,Fn)):Ie(Mn,Fn)?(ae(Mn),z(Fn,12,Cn(Mn))):Oe(Mn,Fn)?(ae(Mn),Jn==="{"?Sn(Mn,Fn)||zn:z(Fn,11,xn(Mn))):(jn===8&&V(9,g(),0),Fn.braceNest=0,Fn.inLinked=!1,An(Mn,Fn))}}function An(Mn,Fn){let jn={type:14};if(Fn.braceNest>0)return Sn(Mn,Fn)||oe(Fn);if(Fn.inLinked)return Bn(Mn,Fn)||oe(Fn);const zn=Mn.currentChar();switch(zn){case"{":return Sn(Mn,Fn)||oe(Fn);case"}":return V(5,g(),0),Mn.next(),z(Fn,3,"}");case"@":return Bn(Mn,Fn)||oe(Fn);default:if($e(Mn))return jn=z(Fn,1,En(Mn)),Fn.braceNest=0,Fn.inLinked=!1,jn;if(qe(Mn))return z(Fn,0,jt(Mn));if(zn==="%")return Mn.next(),z(Fn,4,"%");break}return jn}function Pn(){const{currentType:Mn,offset:Fn,startLoc:jn,endLoc:zn}=k;return k.lastType=Mn,k.lastOffset=Fn,k.lastStartLoc=jn,k.lastEndLoc=zn,k.offset=i(),k.startLoc=g(),r.currentChar()===EOF?z(k,14):An(r,k)}return{nextToken:Pn,currentOffset:i,currentPosition:g,context:j}}const ERROR_DOMAIN="parser",KNOWN_ESCAPES=/(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;function fromEscapeSequence(e,t,n){switch(e){case"\\\\":return"\\";case"\\'":return"'";default:{const r=parseInt(t||n,16);return r<=55295||r>=57344?String.fromCodePoint(r):"\uFFFD"}}}function createParser(e={}){const t=e.location!==!1,{onError:n}=e;function r(le,de,pe,he,...ue){const _e=le.currentPosition();if(_e.offset+=he,_e.column+=he,n){const Ie=createLocation(pe,_e),Ce=createCompileError(de,Ie,{domain:ERROR_DOMAIN,args:ue});n(Ce)}}function i(le,de,pe){const he={type:le,start:de,end:de};return t&&(he.loc={start:pe,end:pe}),he}function g(le,de,pe,he){le.end=de,he&&(le.type=he),t&&le.loc&&(le.loc.end=pe)}function $(le,de){const pe=le.context(),he=i(3,pe.offset,pe.startLoc);return he.value=de,g(he,le.currentOffset(),le.currentPosition()),he}function y(le,de){const pe=le.context(),{lastOffset:he,lastStartLoc:ue}=pe,_e=i(5,he,ue);return _e.index=parseInt(de,10),le.nextToken(),g(_e,le.currentOffset(),le.currentPosition()),_e}function k(le,de){const pe=le.context(),{lastOffset:he,lastStartLoc:ue}=pe,_e=i(4,he,ue);return _e.key=de,le.nextToken(),g(_e,le.currentOffset(),le.currentPosition()),_e}function j(le,de){const pe=le.context(),{lastOffset:he,lastStartLoc:ue}=pe,_e=i(9,he,ue);return _e.value=de.replace(KNOWN_ESCAPES,fromEscapeSequence),le.nextToken(),g(_e,le.currentOffset(),le.currentPosition()),_e}function L(le){const de=le.nextToken(),pe=le.context(),{lastOffset:he,lastStartLoc:ue}=pe,_e=i(8,he,ue);return de.type!==12?(r(le,11,pe.lastStartLoc,0),_e.value="",g(_e,he,ue),{nextConsumeToken:de,node:_e}):(de.value==null&&r(le,13,pe.lastStartLoc,0,getTokenCaption(de)),_e.value=de.value||"",g(_e,le.currentOffset(),le.currentPosition()),{node:_e})}function V(le,de){const pe=le.context(),he=i(7,pe.offset,pe.startLoc);return he.value=de,g(he,le.currentOffset(),le.currentPosition()),he}function z(le){const de=le.context(),pe=i(6,de.offset,de.startLoc);let he=le.nextToken();if(he.type===9){const ue=L(le);pe.modifier=ue.node,he=ue.nextConsumeToken||le.nextToken()}switch(he.type!==10&&r(le,13,de.lastStartLoc,0,getTokenCaption(he)),he=le.nextToken(),he.type===2&&(he=le.nextToken()),he.type){case 11:he.value==null&&r(le,13,de.lastStartLoc,0,getTokenCaption(he)),pe.key=V(le,he.value||"");break;case 5:he.value==null&&r(le,13,de.lastStartLoc,0,getTokenCaption(he)),pe.key=k(le,he.value||"");break;case 6:he.value==null&&r(le,13,de.lastStartLoc,0,getTokenCaption(he)),pe.key=y(le,he.value||"");break;case 7:he.value==null&&r(le,13,de.lastStartLoc,0,getTokenCaption(he)),pe.key=j(le,he.value||"");break;default:r(le,12,de.lastStartLoc,0);const ue=le.context(),_e=i(7,ue.offset,ue.startLoc);return _e.value="",g(_e,ue.offset,ue.startLoc),pe.key=_e,g(pe,ue.offset,ue.startLoc),{nextConsumeToken:he,node:pe}}return g(pe,le.currentOffset(),le.currentPosition()),{node:pe}}function oe(le){const de=le.context(),pe=de.currentType===1?le.currentOffset():de.offset,he=de.currentType===1?de.endLoc:de.startLoc,ue=i(2,pe,he);ue.items=[];let _e=null;do{const Oe=_e||le.nextToken();switch(_e=null,Oe.type){case 0:Oe.value==null&&r(le,13,de.lastStartLoc,0,getTokenCaption(Oe)),ue.items.push($(le,Oe.value||""));break;case 6:Oe.value==null&&r(le,13,de.lastStartLoc,0,getTokenCaption(Oe)),ue.items.push(y(le,Oe.value||""));break;case 5:Oe.value==null&&r(le,13,de.lastStartLoc,0,getTokenCaption(Oe)),ue.items.push(k(le,Oe.value||""));break;case 7:Oe.value==null&&r(le,13,de.lastStartLoc,0,getTokenCaption(Oe)),ue.items.push(j(le,Oe.value||""));break;case 8:const $e=z(le);ue.items.push($e.node),_e=$e.nextConsumeToken||null;break}}while(de.currentType!==14&&de.currentType!==1);const Ie=de.currentType===1?de.lastOffset:le.currentOffset(),Ce=de.currentType===1?de.lastEndLoc:le.currentPosition();return g(ue,Ie,Ce),ue}function re(le,de,pe,he){const ue=le.context();let _e=he.items.length===0;const Ie=i(1,de,pe);Ie.cases=[],Ie.cases.push(he);do{const Ce=oe(le);_e||(_e=Ce.items.length===0),Ie.cases.push(Ce)}while(ue.currentType!==14);return _e&&r(le,10,pe,0),g(Ie,le.currentOffset(),le.currentPosition()),Ie}function ie(le){const de=le.context(),{offset:pe,startLoc:he}=de,ue=oe(le);return de.currentType===14?ue:re(le,pe,he,ue)}function ae(le){const de=createTokenizer(le,assign({},e)),pe=de.context(),he=i(0,pe.offset,pe.startLoc);return t&&he.loc&&(he.loc.source=le),he.body=ie(de),pe.currentType!==14&&r(de,13,pe.lastStartLoc,0,le[pe.offset]||""),g(he,de.currentOffset(),de.currentPosition()),he}return{parse:ae}}function getTokenCaption(e){if(e.type===14)return"EOF";const t=(e.value||"").replace(/\r?\n/gu,"\\n");return t.length>10?t.slice(0,9)+"\u2026":t}function createTransformer(e,t={}){const n={ast:e,helpers:new Set};return{context:()=>n,helper:g=>(n.helpers.add(g),g)}}function traverseNodes(e,t){for(let n=0;n$;function k(ie,ae){$.code+=ie}function j(ie,ae=!0){const le=ae?i:"";k(g?le+" ".repeat(ie):le)}function L(ie=!0){const ae=++$.indentLevel;ie&&j(ae)}function V(ie=!0){const ae=--$.indentLevel;ie&&j(ae)}function z(){j($.indentLevel)}return{context:y,push:k,indent:L,deindent:V,newline:z,helper:ie=>`_${ie}`,needIndent:()=>$.needIndent}}function generateLinkedNode(e,t){const{helper:n}=e;e.push(`${n("linked")}(`),generateNode(e,t.key),t.modifier&&(e.push(", "),generateNode(e,t.modifier)),e.push(")")}function generateMessageNode(e,t){const{helper:n,needIndent:r}=e;e.push(`${n("normalize")}([`),e.indent(r());const i=t.items.length;for(let g=0;g1){e.push(`${n("plural")}([`),e.indent(r());const i=t.cases.length;for(let g=0;g{const n=isString(t.mode)?t.mode:"normal",r=isString(t.filename)?t.filename:"message.intl",i=!!t.sourceMap,g=t.breakLineCode!=null?t.breakLineCode:n==="arrow"?";":` +`,$=t.needIndent?t.needIndent:n!=="arrow",y=e.helpers||[],k=createCodeGenerator(e,{mode:n,filename:r,sourceMap:i,breakLineCode:g,needIndent:$});k.push(n==="normal"?"function __msg__ (ctx) {":"(ctx) => {"),k.indent($),y.length>0&&(k.push(`const { ${y.map(V=>`${V}: _${V}`).join(", ")} } = ctx`),k.newline()),k.push("return "),generateNode(k,e),k.deindent($),k.push("}");const{code:j,map:L}=k.context();return{ast:e,code:j,map:L?L.toJSON():void 0}};function baseCompile(e,t={}){const n=assign({},t),i=createParser(n).parse(e);return transform(i,n),generate(i,n)}/*! + * @intlify/devtools-if v9.1.10 + * (c) 2022 kazuya kawaguchi + * Released under the MIT License. + */const IntlifyDevToolsHooks={I18nInit:"i18n:init",FunctionTranslate:"function:translate"};/*! +* @intlify/core-base v9.1.10 +* (c) 2022 kazuya kawaguchi +* Released under the MIT License. +*/let devtools=null;function setDevToolsHook(e){devtools=e}function getDevToolsHook(){return devtools}function initI18nDevTools(e,t,n){devtools&&devtools.emit(IntlifyDevToolsHooks.I18nInit,{timestamp:Date.now(),i18n:e,version:t,meta:n})}const translateDevTools=createDevToolsHook(IntlifyDevToolsHooks.FunctionTranslate);function createDevToolsHook(e){return t=>devtools&&devtools.emit(e,t)}const warnMessages$1={[0]:"Not found '{key}' key in '{locale}' locale messages.",[1]:"Fall back to translate '{key}' key with '{target}' locale.",[2]:"Cannot format a number value due to not supported Intl.NumberFormat.",[3]:"Fall back to number format '{key}' key with '{target}' locale.",[4]:"Cannot format a date value due to not supported Intl.DateTimeFormat.",[5]:"Fall back to datetime format '{key}' key with '{target}' locale."};function getWarnMessage$1(e,...t){return format(warnMessages$1[e],...t)}const VERSION$1="9.1.10",NOT_REOSLVED=-1,MISSING_RESOLVE_VALUE="";function getDefaultLinkedModifiers(){return{upper:e=>isString(e)?e.toUpperCase():e,lower:e=>isString(e)?e.toLowerCase():e,capitalize:e=>isString(e)?`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`:e}}let _compiler;function registerMessageCompiler(e){_compiler=e}let _additionalMeta=null;const setAdditionalMeta=e=>{_additionalMeta=e},getAdditionalMeta=()=>_additionalMeta;let _cid=0;function createCoreContext(e={}){const t=isString(e.version)?e.version:VERSION$1,n=isString(e.locale)?e.locale:"en-US",r=isArray(e.fallbackLocale)||isPlainObject(e.fallbackLocale)||isString(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:n,i=isPlainObject(e.messages)?e.messages:{[n]:{}},g=isPlainObject(e.datetimeFormats)?e.datetimeFormats:{[n]:{}},$=isPlainObject(e.numberFormats)?e.numberFormats:{[n]:{}},y=assign({},e.modifiers||{},getDefaultLinkedModifiers()),k=e.pluralRules||{},j=isFunction(e.missing)?e.missing:null,L=isBoolean(e.missingWarn)||isRegExp(e.missingWarn)?e.missingWarn:!0,V=isBoolean(e.fallbackWarn)||isRegExp(e.fallbackWarn)?e.fallbackWarn:!0,z=!!e.fallbackFormat,oe=!!e.unresolving,re=isFunction(e.postTranslation)?e.postTranslation:null,ie=isPlainObject(e.processor)?e.processor:null,ae=isBoolean(e.warnHtmlMessage)?e.warnHtmlMessage:!0,le=!!e.escapeParameter,de=isFunction(e.messageCompiler)?e.messageCompiler:_compiler,pe=isFunction(e.onWarn)?e.onWarn:warn,he=e,ue=isObject$1(he.__datetimeFormatters)?he.__datetimeFormatters:new Map,_e=isObject$1(he.__numberFormatters)?he.__numberFormatters:new Map,Ie=isObject$1(he.__meta)?he.__meta:{};return _cid++,{version:t,cid:_cid,locale:n,fallbackLocale:r,messages:i,datetimeFormats:g,numberFormats:$,modifiers:y,pluralRules:k,missing:j,missingWarn:L,fallbackWarn:V,fallbackFormat:z,unresolving:oe,postTranslation:re,processor:ie,warnHtmlMessage:ae,escapeParameter:le,messageCompiler:de,onWarn:pe,__datetimeFormatters:ue,__numberFormatters:_e,__meta:Ie}}function isTranslateFallbackWarn(e,t){return e instanceof RegExp?e.test(t):e}function isTranslateMissingWarn(e,t){return e instanceof RegExp?e.test(t):e}function handleMissing(e,t,n,r,i){const{missing:g,onWarn:$}=e;if(g!==null){const y=g(e,n,t,i);return isString(y)?y:t}else return t}function getLocaleChain(e,t,n){const r=e;r.__localeChainCache||(r.__localeChainCache=new Map);let i=r.__localeChainCache.get(n);if(!i){i=[];let g=[n];for(;isArray(g);)g=appendBlockToChain(i,g,t);const $=isArray(t)?t:isPlainObject(t)?t.default?t.default:null:t;g=isString($)?[$]:$,isArray(g)&&appendBlockToChain(i,g,!1),r.__localeChainCache.set(n,i)}return i}function appendBlockToChain(e,t,n){let r=!0;for(let i=0;ie;let compileCache=Object.create(null);function clearCompileCache(){compileCache=Object.create(null)}function compileToFunction(e,t={}){{const r=(t.onCacheKey||defaultOnCacheKey)(e),i=compileCache[r];if(i)return i;let g=!1;const $=t.onError||defaultOnError;t.onError=j=>{g=!0,$(j)};const{code:y}=baseCompile(e,t),k=new Function(`return ${y}`)();return g?k:compileCache[r]=k}}function createCoreError(e){return createCompileError(e,null,void 0)}const NOOP_MESSAGE_FUNCTION=()=>"",isMessageFunction=e=>isFunction(e);function translate(e,...t){const{fallbackFormat:n,postTranslation:r,unresolving:i,fallbackLocale:g,messages:$}=e,[y,k]=parseTranslateArgs(...t),j=isBoolean(k.missingWarn)?k.missingWarn:e.missingWarn,L=isBoolean(k.fallbackWarn)?k.fallbackWarn:e.fallbackWarn,V=isBoolean(k.escapeParameter)?k.escapeParameter:e.escapeParameter,z=!!k.resolvedMessage,oe=isString(k.default)||isBoolean(k.default)?isBoolean(k.default)?y:k.default:n?y:"",re=n||oe!=="",ie=isString(k.locale)?k.locale:e.locale;V&&escapeParams(k);let[ae,le,de]=z?[y,ie,$[ie]||{}]:resolveMessageFormat(e,y,ie,g,L,j),pe=y;if(!z&&!(isString(ae)||isMessageFunction(ae))&&re&&(ae=oe,pe=ae),!z&&(!(isString(ae)||isMessageFunction(ae))||!isString(le)))return i?NOT_REOSLVED:y;let he=!1;const ue=()=>{he=!0},_e=isMessageFunction(ae)?ae:compileMessageFormat(e,y,le,ae,pe,ue);if(he)return ae;const Ie=getMessageContextOptions(e,le,de,k),Ce=createMessageContext(Ie),Oe=evaluateMessage(e,_e,Ce);return r?r(Oe):Oe}function escapeParams(e){isArray(e.list)?e.list=e.list.map(t=>isString(t)?escapeHtml(t):t):isObject$1(e.named)&&Object.keys(e.named).forEach(t=>{isString(e.named[t])&&(e.named[t]=escapeHtml(e.named[t]))})}function resolveMessageFormat(e,t,n,r,i,g){const{messages:$,onWarn:y}=e,k=getLocaleChain(e,r,n);let j={},L,V=null;const z="translate";for(let oe=0;oe{throw g&&g($),$},onCacheKey:$=>generateFormatCacheKey(t,n,$)}}function getMessageContextOptions(e,t,n,r){const{modifiers:i,pluralRules:g}=e,y={locale:t,modifiers:i,pluralRules:g,messages:k=>{const j=resolveValue(n,k);if(isString(j)){let L=!1;const z=compileMessageFormat(e,k,t,j,k,()=>{L=!0});return L?NOOP_MESSAGE_FUNCTION:z}else return isMessageFunction(j)?j:NOOP_MESSAGE_FUNCTION}};return e.processor&&(y.processor=e.processor),r.list&&(y.list=r.list),r.named&&(y.named=r.named),isNumber(r.plural)&&(y.pluralIndex=r.plural),y}function datetime(e,...t){const{datetimeFormats:n,unresolving:r,fallbackLocale:i,onWarn:g}=e,{__datetimeFormatters:$}=e,[y,k,j,L]=parseDateTimeArgs(...t),V=isBoolean(j.missingWarn)?j.missingWarn:e.missingWarn;isBoolean(j.fallbackWarn)?j.fallbackWarn:e.fallbackWarn;const z=!!j.part,oe=isString(j.locale)?j.locale:e.locale,re=getLocaleChain(e,i,oe);if(!isString(y)||y==="")return new Intl.DateTimeFormat(oe).format(k);let ie={},ae,le=null;const de="datetime format";for(let ue=0;ue 'i18n'",[12]:"Not found parent scope. use the global scope."};function getWarnMessage(e,...t){return shared.format(warnMessages[e],...t)}function createI18nError(e,...t){return coreBase.createCompileError(e,null,{messages:errorMessages,args:t})}const errorMessages={[14]:"Unexpected return type in composer",[15]:"Invalid argument",[16]:"Must be called at the top of a `setup` function",[17]:"Need to install with `app.use` function",[22]:"Unexpected error",[18]:"Not available in legacy mode",[19]:"Required in value: {0}",[20]:"Invalid value",[21]:"Cannot setup vue-devtools plugin"},DEVTOOLS_META="__INTLIFY_META__",TransrateVNodeSymbol=shared.makeSymbol("__transrateVNode"),DatetimePartsSymbol=shared.makeSymbol("__datetimeParts"),NumberPartsSymbol=shared.makeSymbol("__numberParts"),EnableEmitter=shared.makeSymbol("__enableEmitter"),DisableEmitter=shared.makeSymbol("__disableEmitter"),SetPluralRulesSymbol=shared.makeSymbol("__setPluralRules");shared.makeSymbol("__intlifyMeta");const InejctWithOption=shared.makeSymbol("__injectWithOption");let composerID=0;function defineCoreMissingHandler(e){return(t,n,r,i)=>e(n,r,vue.getCurrentInstance()||void 0,i)}function getLocaleMessages(e,t){const{messages:n,__i18n:r}=t,i=shared.isPlainObject(n)?n:shared.isArray(r)?{}:{[e]:{}};if(shared.isArray(r)&&r.forEach(({locale:g,resource:$})=>{g?(i[g]=i[g]||{},deepCopy($,i[g])):deepCopy($,i)}),t.flatJson)for(const g in i)shared.hasOwn(i,g)&&coreBase.handleFlatJson(i[g]);return i}const isNotObjectOrIsArray=e=>!shared.isObject(e)||shared.isArray(e);function deepCopy(e,t){if(isNotObjectOrIsArray(e)||isNotObjectOrIsArray(t))throw createI18nError(20);for(const n in e)shared.hasOwn(e,n)&&(isNotObjectOrIsArray(e[n])||isNotObjectOrIsArray(t[n])?t[n]=e[n]:deepCopy(e[n],t[n]))}const getMetaInfo=()=>{const e=vue.getCurrentInstance();return e&&e.type[DEVTOOLS_META]?{[DEVTOOLS_META]:e.type[DEVTOOLS_META]}:null};function createComposer(e={}){const{__root:t}=e,n=t===void 0;let r=shared.isBoolean(e.inheritLocale)?e.inheritLocale:!0;const i=vue.ref(t&&r?t.locale.value:shared.isString(e.locale)?e.locale:"en-US"),g=vue.ref(t&&r?t.fallbackLocale.value:shared.isString(e.fallbackLocale)||shared.isArray(e.fallbackLocale)||shared.isPlainObject(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:i.value),$=vue.ref(getLocaleMessages(i.value,e)),y=vue.ref(shared.isPlainObject(e.datetimeFormats)?e.datetimeFormats:{[i.value]:{}}),k=vue.ref(shared.isPlainObject(e.numberFormats)?e.numberFormats:{[i.value]:{}});let j=t?t.missingWarn:shared.isBoolean(e.missingWarn)||shared.isRegExp(e.missingWarn)?e.missingWarn:!0,L=t?t.fallbackWarn:shared.isBoolean(e.fallbackWarn)||shared.isRegExp(e.fallbackWarn)?e.fallbackWarn:!0,V=t?t.fallbackRoot:shared.isBoolean(e.fallbackRoot)?e.fallbackRoot:!0,z=!!e.fallbackFormat,oe=shared.isFunction(e.missing)?e.missing:null,re=shared.isFunction(e.missing)?defineCoreMissingHandler(e.missing):null,ie=shared.isFunction(e.postTranslation)?e.postTranslation:null,ae=shared.isBoolean(e.warnHtmlMessage)?e.warnHtmlMessage:!0,le=!!e.escapeParameter;const de=t?t.modifiers:shared.isPlainObject(e.modifiers)?e.modifiers:{};let pe=e.pluralRules||t&&t.pluralRules,he;function ue(){return coreBase.createCoreContext({version:VERSION,locale:i.value,fallbackLocale:g.value,messages:$.value,datetimeFormats:y.value,numberFormats:k.value,modifiers:de,pluralRules:pe,missing:re===null?void 0:re,missingWarn:j,fallbackWarn:L,fallbackFormat:z,unresolving:!0,postTranslation:ie===null?void 0:ie,warnHtmlMessage:ae,escapeParameter:le,__datetimeFormatters:shared.isPlainObject(he)?he.__datetimeFormatters:void 0,__numberFormatters:shared.isPlainObject(he)?he.__numberFormatters:void 0,__v_emitter:shared.isPlainObject(he)?he.__v_emitter:void 0,__meta:{framework:"vue"}})}he=ue(),coreBase.updateFallbackLocale(he,i.value,g.value);function _e(){return[i.value,g.value,$.value,y.value,k.value]}const Ie=vue.computed({get:()=>i.value,set:On=>{i.value=On,he.locale=i.value}}),Ce=vue.computed({get:()=>g.value,set:On=>{g.value=On,he.fallbackLocale=g.value,coreBase.updateFallbackLocale(he,i.value,On)}}),Oe=vue.computed(()=>$.value),$e=vue.computed(()=>y.value),qe=vue.computed(()=>k.value);function ze(){return shared.isFunction(ie)?ie:null}function Ue(On){ie=On,he.postTranslation=On}function kt(){return oe}function At(On){On!==null&&(re=defineCoreMissingHandler(On)),oe=On,he.missing=re}function Pt(On,Wn){return On!=="translate"||!Wn.resolvedMessage}function jt(On,Wn,oo,ro,Qn,lo){_e();let ho;try{coreBase.setAdditionalMeta(getMetaInfo()),ho=On(he)}finally{coreBase.setAdditionalMeta(null)}if(shared.isNumber(ho)&&ho===coreBase.NOT_REOSLVED){const[Tn,Ln]=Wn();if(t&&shared.isString(Tn)&&Pt(oo,Ln)){V&&(coreBase.isTranslateFallbackWarn(L,Tn)||coreBase.isTranslateMissingWarn(j,Tn))&&shared.warn(getWarnMessage(6,{key:Tn,type:oo}));{const{__v_emitter:Rn}=he;Rn&&V&&Rn.emit("fallback",{type:oo,key:Tn,to:"global",groupId:`${oo}:${Tn}`})}}return t&&V?ro(t):Qn(Tn)}else{if(lo(ho))return ho;throw createI18nError(14)}}function bn(...On){return jt(Wn=>coreBase.translate(Wn,...On),()=>coreBase.parseTranslateArgs(...On),"translate",Wn=>Wn.t(...On),Wn=>Wn,Wn=>shared.isString(Wn))}function hn(...On){const[Wn,oo,ro]=On;if(ro&&!shared.isObject(ro))throw createI18nError(15);return bn(Wn,oo,shared.assign({resolvedMessage:!0},ro||{}))}function Dt(...On){return jt(Wn=>coreBase.datetime(Wn,...On),()=>coreBase.parseDateTimeArgs(...On),"datetime format",Wn=>Wn.d(...On),()=>coreBase.MISSING_RESOLVE_VALUE,Wn=>shared.isString(Wn))}function wn(...On){return jt(Wn=>coreBase.number(Wn,...On),()=>coreBase.parseNumberArgs(...On),"number format",Wn=>Wn.n(...On),()=>coreBase.MISSING_RESOLVE_VALUE,Wn=>shared.isString(Wn))}function _n(On){return On.map(Wn=>shared.isString(Wn)?vue.createVNode(vue.Text,null,Wn,0):Wn)}const Cn={normalize:_n,interpolate:On=>On,type:"vnode"};function xn(...On){return jt(Wn=>{let oo;const ro=Wn;try{ro.processor=Cn,oo=coreBase.translate(ro,...On)}finally{ro.processor=null}return oo},()=>coreBase.parseTranslateArgs(...On),"translate",Wn=>Wn[TransrateVNodeSymbol](...On),Wn=>[vue.createVNode(vue.Text,null,Wn,0)],Wn=>shared.isArray(Wn))}function En(...On){return jt(Wn=>coreBase.number(Wn,...On),()=>coreBase.parseNumberArgs(...On),"number format",Wn=>Wn[NumberPartsSymbol](...On),()=>[],Wn=>shared.isString(Wn)||shared.isArray(Wn))}function Sn(...On){return jt(Wn=>coreBase.datetime(Wn,...On),()=>coreBase.parseDateTimeArgs(...On),"datetime format",Wn=>Wn[DatetimePartsSymbol](...On),()=>[],Wn=>shared.isString(Wn)||shared.isArray(Wn))}function Bn(On){pe=On,he.pluralRules=pe}function An(On,Wn){const oo=shared.isString(Wn)?Wn:i.value,ro=Fn(oo);return coreBase.resolveValue(ro,On)!==null}function Pn(On){let Wn=null;const oo=coreBase.getLocaleChain(he,g.value,i.value);for(let ro=0;ro{r&&(i.value=On,he.locale=On,coreBase.updateFallbackLocale(he,i.value,g.value))}),vue.watch(t.fallbackLocale,On=>{r&&(g.value=On,he.fallbackLocale=On,coreBase.updateFallbackLocale(he,i.value,g.value))}));const Hn={id:composerID,locale:Ie,fallbackLocale:Ce,get inheritLocale(){return r},set inheritLocale(On){r=On,On&&t&&(i.value=t.locale.value,g.value=t.fallbackLocale.value,coreBase.updateFallbackLocale(he,i.value,g.value))},get availableLocales(){return Object.keys($.value).sort()},messages:Oe,datetimeFormats:$e,numberFormats:qe,get modifiers(){return de},get pluralRules(){return pe||{}},get isGlobal(){return n},get missingWarn(){return j},set missingWarn(On){j=On,he.missingWarn=j},get fallbackWarn(){return L},set fallbackWarn(On){L=On,he.fallbackWarn=L},get fallbackRoot(){return V},set fallbackRoot(On){V=On},get fallbackFormat(){return z},set fallbackFormat(On){z=On,he.fallbackFormat=z},get warnHtmlMessage(){return ae},set warnHtmlMessage(On){ae=On,he.warnHtmlMessage=On},get escapeParameter(){return le},set escapeParameter(On){le=On,he.escapeParameter=On},t:bn,rt:hn,d:Dt,n:wn,te:An,tm:Mn,getLocaleMessage:Fn,setLocaleMessage:jn,mergeLocaleMessage:zn,getDateTimeFormat:Jn,setDateTimeFormat:io,mergeDateTimeFormat:eo,getNumberFormat:Un,setNumberFormat:Yn,mergeNumberFormat:to,getPostTranslationHandler:ze,setPostTranslationHandler:Ue,getMissingHandler:kt,setMissingHandler:At,[TransrateVNodeSymbol]:xn,[NumberPartsSymbol]:En,[DatetimePartsSymbol]:Sn,[SetPluralRulesSymbol]:Bn,[InejctWithOption]:e.__injectWithOption};return Hn[EnableEmitter]=On=>{he.__v_emitter=On},Hn[DisableEmitter]=()=>{he.__v_emitter=void 0},Hn}function convertComposerOptions(e){const t=shared.isString(e.locale)?e.locale:"en-US",n=shared.isString(e.fallbackLocale)||shared.isArray(e.fallbackLocale)||shared.isPlainObject(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:t,r=shared.isFunction(e.missing)?e.missing:void 0,i=shared.isBoolean(e.silentTranslationWarn)||shared.isRegExp(e.silentTranslationWarn)?!e.silentTranslationWarn:!0,g=shared.isBoolean(e.silentFallbackWarn)||shared.isRegExp(e.silentFallbackWarn)?!e.silentFallbackWarn:!0,$=shared.isBoolean(e.fallbackRoot)?e.fallbackRoot:!0,y=!!e.formatFallbackMessages,k=shared.isPlainObject(e.modifiers)?e.modifiers:{},j=e.pluralizationRules,L=shared.isFunction(e.postTranslation)?e.postTranslation:void 0,V=shared.isString(e.warnHtmlInMessage)?e.warnHtmlInMessage!=="off":!0,z=!!e.escapeParameterHtml,oe=shared.isBoolean(e.sync)?e.sync:!0;e.formatter&&shared.warn(getWarnMessage(8)),e.preserveDirectiveContent&&shared.warn(getWarnMessage(9));let re=e.messages;if(shared.isPlainObject(e.sharedMessages)){const ue=e.sharedMessages;re=Object.keys(ue).reduce((Ie,Ce)=>{const Oe=Ie[Ce]||(Ie[Ce]={});return shared.assign(Oe,ue[Ce]),Ie},re||{})}const{__i18n:ie,__root:ae,__injectWithOption:le}=e,de=e.datetimeFormats,pe=e.numberFormats,he=e.flatJson;return{locale:t,fallbackLocale:n,messages:re,flatJson:he,datetimeFormats:de,numberFormats:pe,missing:r,missingWarn:i,fallbackWarn:g,fallbackRoot:$,fallbackFormat:y,modifiers:k,pluralRules:j,postTranslation:L,warnHtmlMessage:V,escapeParameter:z,inheritLocale:oe,__i18n:ie,__root:ae,__injectWithOption:le}}function createVueI18n(e={}){const t=createComposer(convertComposerOptions(e)),n={id:t.id,get locale(){return t.locale.value},set locale(r){t.locale.value=r},get fallbackLocale(){return t.fallbackLocale.value},set fallbackLocale(r){t.fallbackLocale.value=r},get messages(){return t.messages.value},get datetimeFormats(){return t.datetimeFormats.value},get numberFormats(){return t.numberFormats.value},get availableLocales(){return t.availableLocales},get formatter(){return shared.warn(getWarnMessage(8)),{interpolate(){return[]}}},set formatter(r){shared.warn(getWarnMessage(8))},get missing(){return t.getMissingHandler()},set missing(r){t.setMissingHandler(r)},get silentTranslationWarn(){return shared.isBoolean(t.missingWarn)?!t.missingWarn:t.missingWarn},set silentTranslationWarn(r){t.missingWarn=shared.isBoolean(r)?!r:r},get silentFallbackWarn(){return shared.isBoolean(t.fallbackWarn)?!t.fallbackWarn:t.fallbackWarn},set silentFallbackWarn(r){t.fallbackWarn=shared.isBoolean(r)?!r:r},get modifiers(){return t.modifiers},get formatFallbackMessages(){return t.fallbackFormat},set formatFallbackMessages(r){t.fallbackFormat=r},get postTranslation(){return t.getPostTranslationHandler()},set postTranslation(r){t.setPostTranslationHandler(r)},get sync(){return t.inheritLocale},set sync(r){t.inheritLocale=r},get warnHtmlInMessage(){return t.warnHtmlMessage?"warn":"off"},set warnHtmlInMessage(r){t.warnHtmlMessage=r!=="off"},get escapeParameterHtml(){return t.escapeParameter},set escapeParameterHtml(r){t.escapeParameter=r},get preserveDirectiveContent(){return shared.warn(getWarnMessage(9)),!0},set preserveDirectiveContent(r){shared.warn(getWarnMessage(9))},get pluralizationRules(){return t.pluralRules||{}},__composer:t,t(...r){const[i,g,$]=r,y={};let k=null,j=null;if(!shared.isString(i))throw createI18nError(15);const L=i;return shared.isString(g)?y.locale=g:shared.isArray(g)?k=g:shared.isPlainObject(g)&&(j=g),shared.isArray($)?k=$:shared.isPlainObject($)&&(j=$),t.t(L,k||j||{},y)},rt(...r){return t.rt(...r)},tc(...r){const[i,g,$]=r,y={plural:1};let k=null,j=null;if(!shared.isString(i))throw createI18nError(15);const L=i;return shared.isString(g)?y.locale=g:shared.isNumber(g)?y.plural=g:shared.isArray(g)?k=g:shared.isPlainObject(g)&&(j=g),shared.isString($)?y.locale=$:shared.isArray($)?k=$:shared.isPlainObject($)&&(j=$),t.t(L,k||j||{},y)},te(r,i){return t.te(r,i)},tm(r){return t.tm(r)},getLocaleMessage(r){return t.getLocaleMessage(r)},setLocaleMessage(r,i){t.setLocaleMessage(r,i)},mergeLocaleMessage(r,i){t.mergeLocaleMessage(r,i)},d(...r){return t.d(...r)},getDateTimeFormat(r){return t.getDateTimeFormat(r)},setDateTimeFormat(r,i){t.setDateTimeFormat(r,i)},mergeDateTimeFormat(r,i){t.mergeDateTimeFormat(r,i)},n(...r){return t.n(...r)},getNumberFormat(r){return t.getNumberFormat(r)},setNumberFormat(r,i){t.setNumberFormat(r,i)},mergeNumberFormat(r,i){t.mergeNumberFormat(r,i)},getChoiceIndex(r,i){return shared.warn(getWarnMessage(10)),-1},__onComponentInstanceCreated(r){const{componentInstanceCreatedListener:i}=e;i&&i(r,n)}};return n.__enableEmitter=r=>{const i=t;i[EnableEmitter]&&i[EnableEmitter](r)},n.__disableEmitter=()=>{const r=t;r[DisableEmitter]&&r[DisableEmitter]()},n}const baseFormatProps={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>e==="parent"||e==="global",default:"parent"},i18n:{type:Object}},Translation={name:"i18n-t",props:shared.assign({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>shared.isNumber(e)||!isNaN(e)}},baseFormatProps),setup(e,t){const{slots:n,attrs:r}=t,i=e.i18n||useI18n({useScope:e.scope,__useComponent:!0}),g=Object.keys(n).filter($=>$!=="_");return()=>{const $={};e.locale&&($.locale=e.locale),e.plural!==void 0&&($.plural=shared.isString(e.plural)?+e.plural:e.plural);const y=getInterpolateArg(t,g),k=i[TransrateVNodeSymbol](e.keypath,y,$),j=shared.assign({},r);return shared.isString(e.tag)||shared.isObject(e.tag)?vue.h(e.tag,j,k):vue.h(vue.Fragment,j,k)}}};function getInterpolateArg({slots:e},t){return t.length===1&&t[0]==="default"?e.default?e.default():[]:t.reduce((n,r)=>{const i=e[r];return i&&(n[r]=i()),n},{})}function renderFormatter(e,t,n,r){const{slots:i,attrs:g}=t;return()=>{const $={part:!0};let y={};e.locale&&($.locale=e.locale),shared.isString(e.format)?$.key=e.format:shared.isObject(e.format)&&(shared.isString(e.format.key)&&($.key=e.format.key),y=Object.keys(e.format).reduce((V,z)=>n.includes(z)?shared.assign({},V,{[z]:e.format[z]}):V,{}));const k=r(e.value,$,y);let j=[$.key];shared.isArray(k)?j=k.map((V,z)=>{const oe=i[V.type];return oe?oe({[V.type]:V.value,index:z,parts:k}):[V.value]}):shared.isString(k)&&(j=[k]);const L=shared.assign({},g);return shared.isString(e.tag)||shared.isObject(e.tag)?vue.h(e.tag,L,j):vue.h(vue.Fragment,L,j)}}const NUMBER_FORMAT_KEYS=["localeMatcher","style","unit","unitDisplay","currency","currencyDisplay","useGrouping","numberingSystem","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","notation","formatMatcher"],NumberFormat={name:"i18n-n",props:shared.assign({value:{type:Number,required:!0},format:{type:[String,Object]}},baseFormatProps),setup(e,t){const n=e.i18n||useI18n({useScope:"parent",__useComponent:!0});return renderFormatter(e,t,NUMBER_FORMAT_KEYS,(...r)=>n[NumberPartsSymbol](...r))}},DATETIME_FORMAT_KEYS=["dateStyle","timeStyle","fractionalSecondDigits","calendar","dayPeriod","numberingSystem","localeMatcher","timeZone","hour12","hourCycle","formatMatcher","weekday","era","year","month","day","hour","minute","second","timeZoneName"],DatetimeFormat={name:"i18n-d",props:shared.assign({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},baseFormatProps),setup(e,t){const n=e.i18n||useI18n({useScope:"parent",__useComponent:!0});return renderFormatter(e,t,DATETIME_FORMAT_KEYS,(...r)=>n[DatetimePartsSymbol](...r))}};function getComposer$1(e,t){const n=e;if(e.mode==="composition")return n.__getInstance(t)||e.global;{const r=n.__getInstance(t);return r!=null?r.__composer:e.global.__composer}}function vTDirective(e){const t=(n,{instance:r,value:i,modifiers:g})=>{if(!r||!r.$)throw createI18nError(22);const $=getComposer$1(e,r.$);g.preserve&&shared.warn(getWarnMessage(7));const y=parseValue(i);n.textContent=$.t(...makeParams(y))};return{beforeMount:t,beforeUpdate:t}}function parseValue(e){if(shared.isString(e))return{path:e};if(shared.isPlainObject(e)){if(!("path"in e))throw createI18nError(19,"path");return e}else throw createI18nError(20)}function makeParams(e){const{path:t,locale:n,args:r,choice:i,plural:g}=e,$={},y=r||{};return shared.isString(n)&&($.locale=n),shared.isNumber(i)&&($.plural=i),shared.isNumber(g)&&($.plural=g),[t,y,$]}function apply(e,t,...n){const r=shared.isPlainObject(n[0])?n[0]:{},i=!!r.useI18nComponentName,g=shared.isBoolean(r.globalInstall)?r.globalInstall:!0;g&&i&&shared.warn(getWarnMessage(11,{name:Translation.name})),g&&(e.component(i?"i18n":Translation.name,Translation),e.component(NumberFormat.name,NumberFormat),e.component(DatetimeFormat.name,DatetimeFormat)),e.directive("t",vTDirective(t))}function defineMixin(e,t,n){return{beforeCreate(){const r=vue.getCurrentInstance();if(!r)throw createI18nError(22);const i=this.$options;if(i.i18n){const g=i.i18n;i.__i18n&&(g.__i18n=i.__i18n),g.__root=t,this===this.$root?this.$i18n=mergeToRoot(e,g):(g.__injectWithOption=!0,this.$i18n=createVueI18n(g))}else i.__i18n?this===this.$root?this.$i18n=mergeToRoot(e,i):this.$i18n=createVueI18n({__i18n:i.__i18n,__injectWithOption:!0,__root:t}):this.$i18n=e;e.__onComponentInstanceCreated(this.$i18n),n.__setInstance(r,this.$i18n),this.$t=(...g)=>this.$i18n.t(...g),this.$rt=(...g)=>this.$i18n.rt(...g),this.$tc=(...g)=>this.$i18n.tc(...g),this.$te=(g,$)=>this.$i18n.te(g,$),this.$d=(...g)=>this.$i18n.d(...g),this.$n=(...g)=>this.$i18n.n(...g),this.$tm=g=>this.$i18n.tm(g)},mounted(){},beforeUnmount(){const r=vue.getCurrentInstance();if(!r)throw createI18nError(22);delete this.$t,delete this.$rt,delete this.$tc,delete this.$te,delete this.$d,delete this.$n,delete this.$tm,n.__deleteInstance(r),delete this.$i18n}}}function mergeToRoot(e,t){e.locale=t.locale||e.locale,e.fallbackLocale=t.fallbackLocale||e.fallbackLocale,e.missing=t.missing||e.missing,e.silentTranslationWarn=t.silentTranslationWarn||e.silentFallbackWarn,e.silentFallbackWarn=t.silentFallbackWarn||e.silentFallbackWarn,e.formatFallbackMessages=t.formatFallbackMessages||e.formatFallbackMessages,e.postTranslation=t.postTranslation||e.postTranslation,e.warnHtmlInMessage=t.warnHtmlInMessage||e.warnHtmlInMessage,e.escapeParameterHtml=t.escapeParameterHtml||e.escapeParameterHtml,e.sync=t.sync||e.sync,e.__composer[SetPluralRulesSymbol](t.pluralizationRules||e.pluralizationRules);const n=getLocaleMessages(e.locale,{messages:t.messages,__i18n:t.__i18n});return Object.keys(n).forEach(r=>e.mergeLocaleMessage(r,n[r])),t.datetimeFormats&&Object.keys(t.datetimeFormats).forEach(r=>e.mergeDateTimeFormat(r,t.datetimeFormats[r])),t.numberFormats&&Object.keys(t.numberFormats).forEach(r=>e.mergeNumberFormat(r,t.numberFormats[r])),e}function createI18n(e={}){const t=shared.isBoolean(e.legacy)?e.legacy:!0,n=!!e.globalInjection,r=new Map,i=t?createVueI18n(e):createComposer(e),g=shared.makeSymbol("vue-i18n"),$={get mode(){return t?"legacy":"composition"},async install(y,...k){y.__VUE_I18N_SYMBOL__=g,y.provide(y.__VUE_I18N_SYMBOL__,$),!t&&n&&injectGlobalFields(y,$.global),apply(y,$,...k),t&&y.mixin(defineMixin(i,i.__composer,$))},get global(){return i},__instances:r,__getInstance(y){return r.get(y)||null},__setInstance(y,k){r.set(y,k)},__deleteInstance(y){r.delete(y)}};return $}function useI18n(e={}){const t=vue.getCurrentInstance();if(t==null)throw createI18nError(16);if(!t.appContext.app.__VUE_I18N_SYMBOL__)throw createI18nError(17);const n=vue.inject(t.appContext.app.__VUE_I18N_SYMBOL__);if(!n)throw createI18nError(22);const r=n.mode==="composition"?n.global:n.global.__composer,i=shared.isEmptyObject(e)?"__i18n"in t.type?"local":"global":e.useScope?e.useScope:"local";if(i==="global"){let y=shared.isObject(e.messages)?e.messages:{};"__i18nGlobal"in t.type&&(y=getLocaleMessages(r.locale.value,{messages:y,__i18n:t.type.__i18nGlobal}));const k=Object.keys(y);if(k.length&&k.forEach(j=>{r.mergeLocaleMessage(j,y[j])}),shared.isObject(e.datetimeFormats)){const j=Object.keys(e.datetimeFormats);j.length&&j.forEach(L=>{r.mergeDateTimeFormat(L,e.datetimeFormats[L])})}if(shared.isObject(e.numberFormats)){const j=Object.keys(e.numberFormats);j.length&&j.forEach(L=>{r.mergeNumberFormat(L,e.numberFormats[L])})}return r}if(i==="parent"){let y=getComposer(n,t,e.__useComponent);return y==null&&(shared.warn(getWarnMessage(12)),y=r),y}if(n.mode==="legacy")throw createI18nError(18);const g=n;let $=g.__getInstance(t);if($==null){const y=t.type,k=shared.assign({},e);y.__i18n&&(k.__i18n=y.__i18n),r&&(k.__root=r),$=createComposer(k),setupLifeCycle(g,t),g.__setInstance(t,$)}return $}function getComposer(e,t,n=!1){let r=null;const i=t.root;let g=t.parent;for(;g!=null;){const $=e;if(e.mode==="composition")r=$.__getInstance(g);else{const y=$.__getInstance(g);y!=null&&(r=y.__composer),n&&r&&!r[InejctWithOption]&&(r=null)}if(r!=null||i===g)break;g=g.parent}return r}function setupLifeCycle(e,t,n){vue.onMounted(()=>{},t),vue.onUnmounted(()=>{e.__deleteInstance(t)},t)}const globalExportProps=["locale","fallbackLocale","availableLocales"],globalExportMethods=["t","rt","d","n","tm"];function injectGlobalFields(e,t){const n=Object.create(null);globalExportProps.forEach(r=>{const i=Object.getOwnPropertyDescriptor(t,r);if(!i)throw createI18nError(22);const g=vue.isRef(i.value)?{get(){return i.value.value},set($){i.value.value=$}}:{get(){return i.get&&i.get()}};Object.defineProperty(n,r,g)}),e.config.globalProperties.$i18n=n,globalExportMethods.forEach(r=>{const i=Object.getOwnPropertyDescriptor(t,r);if(!i||!i.value)throw createI18nError(22);Object.defineProperty(e.config.globalProperties,`$${r}`,i)})}coreBase.registerMessageCompiler(coreBase.compileToFunction);{const e=shared.getGlobalThis();e.__INTLIFY__=!0,coreBase.setDevToolsHook(e.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__)}vueI18n_cjs.DatetimeFormat=DatetimeFormat;vueI18n_cjs.NumberFormat=NumberFormat;vueI18n_cjs.Translation=Translation;vueI18n_cjs.VERSION=VERSION;var createI18n_1=vueI18n_cjs.createI18n=createI18n,useI18n_1=vueI18n_cjs.useI18n=useI18n;vueI18n_cjs.vTDirective=vTDirective;var zhCn={};(function(e){Object.defineProperty(e,"__esModule",{value:!0});var t={name:"zh-cn",el:{colorpicker:{confirm:"\u786E\u5B9A",clear:"\u6E05\u7A7A"},datepicker:{now:"\u6B64\u523B",today:"\u4ECA\u5929",cancel:"\u53D6\u6D88",clear:"\u6E05\u7A7A",confirm:"\u786E\u5B9A",selectDate:"\u9009\u62E9\u65E5\u671F",selectTime:"\u9009\u62E9\u65F6\u95F4",startDate:"\u5F00\u59CB\u65E5\u671F",startTime:"\u5F00\u59CB\u65F6\u95F4",endDate:"\u7ED3\u675F\u65E5\u671F",endTime:"\u7ED3\u675F\u65F6\u95F4",prevYear:"\u524D\u4E00\u5E74",nextYear:"\u540E\u4E00\u5E74",prevMonth:"\u4E0A\u4E2A\u6708",nextMonth:"\u4E0B\u4E2A\u6708",year:"\u5E74",month1:"1 \u6708",month2:"2 \u6708",month3:"3 \u6708",month4:"4 \u6708",month5:"5 \u6708",month6:"6 \u6708",month7:"7 \u6708",month8:"8 \u6708",month9:"9 \u6708",month10:"10 \u6708",month11:"11 \u6708",month12:"12 \u6708",weeks:{sun:"\u65E5",mon:"\u4E00",tue:"\u4E8C",wed:"\u4E09",thu:"\u56DB",fri:"\u4E94",sat:"\u516D"},months:{jan:"\u4E00\u6708",feb:"\u4E8C\u6708",mar:"\u4E09\u6708",apr:"\u56DB\u6708",may:"\u4E94\u6708",jun:"\u516D\u6708",jul:"\u4E03\u6708",aug:"\u516B\u6708",sep:"\u4E5D\u6708",oct:"\u5341\u6708",nov:"\u5341\u4E00\u6708",dec:"\u5341\u4E8C\u6708"}},select:{loading:"\u52A0\u8F7D\u4E2D",noMatch:"\u65E0\u5339\u914D\u6570\u636E",noData:"\u65E0\u6570\u636E",placeholder:"\u8BF7\u9009\u62E9"},cascader:{noMatch:"\u65E0\u5339\u914D\u6570\u636E",loading:"\u52A0\u8F7D\u4E2D",placeholder:"\u8BF7\u9009\u62E9",noData:"\u6682\u65E0\u6570\u636E"},pagination:{goto:"\u524D\u5F80",pagesize:"\u6761/\u9875",total:"\u5171 {total} \u6761",pageClassifier:"\u9875",deprecationWarning:"\u4F60\u4F7F\u7528\u4E86\u4E00\u4E9B\u5DF2\u88AB\u5E9F\u5F03\u7684\u7528\u6CD5\uFF0C\u8BF7\u53C2\u8003 el-pagination \u7684\u5B98\u65B9\u6587\u6863"},messagebox:{title:"\u63D0\u793A",confirm:"\u786E\u5B9A",cancel:"\u53D6\u6D88",error:"\u8F93\u5165\u7684\u6570\u636E\u4E0D\u5408\u6CD5!"},upload:{deleteTip:"\u6309 delete \u952E\u53EF\u5220\u9664",delete:"\u5220\u9664",preview:"\u67E5\u770B\u56FE\u7247",continue:"\u7EE7\u7EED\u4E0A\u4F20"},table:{emptyText:"\u6682\u65E0\u6570\u636E",confirmFilter:"\u7B5B\u9009",resetFilter:"\u91CD\u7F6E",clearFilter:"\u5168\u90E8",sumText:"\u5408\u8BA1"},tree:{emptyText:"\u6682\u65E0\u6570\u636E"},transfer:{noMatch:"\u65E0\u5339\u914D\u6570\u636E",noData:"\u65E0\u6570\u636E",titles:["\u5217\u8868 1","\u5217\u8868 2"],filterPlaceholder:"\u8BF7\u8F93\u5165\u641C\u7D22\u5185\u5BB9",noCheckedFormat:"\u5171 {total} \u9879",hasCheckedFormat:"\u5DF2\u9009 {checked}/{total} \u9879"},image:{error:"\u52A0\u8F7D\u5931\u8D25"},pageHeader:{title:"\u8FD4\u56DE"},popconfirm:{confirmButtonText:"\u786E\u5B9A",cancelButtonText:"\u53D6\u6D88"}}};e.default=t})(zhCn);var zhcnLocale=getDefaultExportFromCjs$1(zhCn),en={};(function(e){Object.defineProperty(e,"__esModule",{value:!0});var t={name:"en",el:{colorpicker:{confirm:"OK",clear:"Clear",defaultLabel:"color picker",description:"current color is {color}. press enter to select a new color."},datepicker:{now:"Now",today:"Today",cancel:"Cancel",clear:"Clear",confirm:"OK",dateTablePrompt:"Use the arrow keys and enter to select the day of the month",monthTablePrompt:"Use the arrow keys and enter to select the month",yearTablePrompt:"Use the arrow keys and enter to select the year",selectedDate:"Selected date",selectDate:"Select date",selectTime:"Select time",startDate:"Start Date",startTime:"Start Time",endDate:"End Date",endTime:"End Time",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",year:"",month1:"January",month2:"February",month3:"March",month4:"April",month5:"May",month6:"June",month7:"July",month8:"August",month9:"September",month10:"October",month11:"November",month12:"December",week:"week",weeks:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},weeksFull:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"},months:{jan:"Jan",feb:"Feb",mar:"Mar",apr:"Apr",may:"May",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Oct",nov:"Nov",dec:"Dec"}},inputNumber:{decrease:"decrease number",increase:"increase number"},select:{loading:"Loading",noMatch:"No matching data",noData:"No data",placeholder:"Select"},dropdown:{toggleDropdown:"Toggle Dropdown"},cascader:{noMatch:"No matching data",loading:"Loading",placeholder:"Select",noData:"No data"},pagination:{goto:"Go to",pagesize:"/page",total:"Total {total}",pageClassifier:"",deprecationWarning:"Deprecated usages detected, please refer to the el-pagination documentation for more details"},dialog:{close:"Close this dialog"},drawer:{close:"Close this dialog"},messagebox:{title:"Message",confirm:"OK",cancel:"Cancel",error:"Illegal input",close:"Close this dialog"},upload:{deleteTip:"press delete to remove",delete:"Delete",preview:"Preview",continue:"Continue"},slider:{defaultLabel:"slider between {min} and {max}",defaultRangeStartLabel:"pick start value",defaultRangeEndLabel:"pick end value"},table:{emptyText:"No Data",confirmFilter:"Confirm",resetFilter:"Reset",clearFilter:"All",sumText:"Sum"},tree:{emptyText:"No Data"},transfer:{noMatch:"No matching data",noData:"No data",titles:["List 1","List 2"],filterPlaceholder:"Enter keyword",noCheckedFormat:"{total} items",hasCheckedFormat:"{checked}/{total} checked"},image:{error:"FAILED"},pageHeader:{title:"Back"},popconfirm:{confirmButtonText:"Yes",cancelButtonText:"No"}}};e.default=t})(en);var enLocale=getDefaultExportFromCjs$1(en),zhTw={};(function(e){Object.defineProperty(e,"__esModule",{value:!0});var t={name:"zh-tw",el:{colorpicker:{confirm:"\u78BA\u8A8D",clear:"\u6E05\u7A7A",defaultLabel:"\u8272\u5F69\u9078\u64C7\u5668",description:"\u76EE\u524D\u8272\u5F69\u70BA {color}\u3002\u6309\u4E00\u4E0B Enter \u4EE5\u9078\u64C7\u65B0\u8272\u5F69\u3002"},datepicker:{now:"\u73FE\u5728",today:"\u4ECA\u5929",cancel:"\u53D6\u6D88",clear:"\u6E05\u7A7A",confirm:"\u78BA\u8A8D",dateTablePrompt:"\u4F7F\u7528\u65B9\u5411\u9375\u8207 Enter \u9375\u4EE5\u9078\u64C7\u65E5\u671F",monthTablePrompt:"\u4F7F\u7528\u65B9\u5411\u9375\u8207 Enter \u9375\u4EE5\u9078\u64C7\u6708\u4EFD",yearTablePrompt:"\u4F7F\u7528\u65B9\u5411\u9375\u8207 Enter \u9375\u4EE5\u9078\u64C7\u5E74\u4EFD",selectedDate:"\u5DF2\u9078\u65E5\u671F",selectDate:"\u9078\u64C7\u65E5\u671F",selectTime:"\u9078\u64C7\u6642\u9593",startDate:"\u958B\u59CB\u65E5\u671F",startTime:"\u958B\u59CB\u6642\u9593",endDate:"\u7D50\u675F\u65E5\u671F",endTime:"\u7D50\u675F\u6642\u9593",prevYear:"\u524D\u4E00\u5E74",nextYear:"\u5F8C\u4E00\u5E74",prevMonth:"\u4E0A\u500B\u6708",nextMonth:"\u4E0B\u500B\u6708",year:"\u5E74",month1:"1 \u6708",month2:"2 \u6708",month3:"3 \u6708",month4:"4 \u6708",month5:"5 \u6708",month6:"6 \u6708",month7:"7 \u6708",month8:"8 \u6708",month9:"9 \u6708",month10:"10 \u6708",month11:"11 \u6708",month12:"12 \u6708",weeks:{sun:"\u65E5",mon:"\u4E00",tue:"\u4E8C",wed:"\u4E09",thu:"\u56DB",fri:"\u4E94",sat:"\u516D"},weeksFull:{sun:"\u661F\u671F\u65E5",mon:"\u661F\u671F\u4E00",tue:"\u661F\u671F\u4E8C",wed:"\u661F\u671F\u4E09",thu:"\u661F\u671F\u56DB",fri:"\u661F\u671F\u4E94",sat:"\u661F\u671F\u516D"},months:{jan:"\u4E00\u6708",feb:"\u4E8C\u6708",mar:"\u4E09\u6708",apr:"\u56DB\u6708",may:"\u4E94\u6708",jun:"\u516D\u6708",jul:"\u4E03\u6708",aug:"\u516B\u6708",sep:"\u4E5D\u6708",oct:"\u5341\u6708",nov:"\u5341\u4E00\u6708",dec:"\u5341\u4E8C\u6708"}},inputNumber:{decrease:"\u6E1B\u5C11\u6578\u503C",increase:"\u589E\u52A0\u6578\u503C"},select:{loading:"\u8F09\u5165\u4E2D",noMatch:"\u7121\u76F8\u7B26\u8CC7\u6599",noData:"\u7121\u8CC7\u6599",placeholder:"\u8ACB\u9078\u64C7"},dropdown:{toggleDropdown:"\u5207\u63DB\u4E0B\u62C9\u9078\u55AE"},cascader:{noMatch:"\u7121\u76F8\u7B26\u8CC7\u6599",loading:"\u8F09\u5165\u4E2D",placeholder:"\u8ACB\u9078\u64C7",noData:"\u7121\u8CC7\u6599"},pagination:{goto:"\u524D\u5F80",pagesize:"\u9805/\u9801",total:"\u5171 {total} \u9805",pageClassifier:"\u9801",deprecationWarning:"\u5075\u6E2C\u5230\u5DF2\u904E\u6642\u7684\u4F7F\u7528\u65B9\u5F0F\uFF0C\u8ACB\u53C3\u95B1 el-pagination \u8AAA\u660E\u6587\u4EF6\u4EE5\u4E86\u89E3\u66F4\u591A\u8CC7\u8A0A"},dialog:{close:"\u95DC\u9589\u6B64\u5C0D\u8A71\u6846"},drawer:{close:"\u95DC\u9589\u6B64\u5C0D\u8A71\u6846"},messagebox:{title:"\u63D0\u793A",confirm:"\u78BA\u5B9A",cancel:"\u53D6\u6D88",error:"\u8F38\u5165\u7684\u8CC7\u6599\u4E0D\u7B26\u898F\u5B9A!",close:"\u95DC\u9589\u6B64\u5C0D\u8A71\u6846"},upload:{deleteTip:"\u6309\u4E00\u4E0B Delete \u9375\u4EE5\u522A\u9664",delete:"\u522A\u9664",preview:"\u67E5\u770B\u5716\u7247",continue:"\u7E7C\u7E8C\u4E0A\u50B3"},slider:{defaultLabel:"\u6ED1\u687F\u4ECB\u65BC {min} \u81F3 {max}",defaultRangeStartLabel:"\u9078\u64C7\u8D77\u59CB\u503C",defaultRangeEndLabel:"\u9078\u64C7\u7D50\u675F\u503C"},table:{emptyText:"\u66AB\u7121\u8CC7\u6599",confirmFilter:"\u7BE9\u9078",resetFilter:"\u91CD\u7F6E",clearFilter:"\u5168\u90E8",sumText:"\u5408\u8A08"},tree:{emptyText:"\u66AB\u7121\u8CC7\u6599"},transfer:{noMatch:"\u7121\u76F8\u7B26\u8CC7\u6599",noData:"\u7121\u8CC7\u6599",titles:["\u5217\u8868 1","\u5217\u8868 2"],filterPlaceholder:"\u8ACB\u8F38\u5165\u641C\u5C0B\u5167\u5BB9",noCheckedFormat:"\u5171 {total} \u9805",hasCheckedFormat:"\u5DF2\u9078 {checked}/{total} \u9805"},image:{error:"\u8F09\u5165\u5931\u6557"},pageHeader:{title:"\u8FD4\u56DE"},popconfirm:{confirmButtonText:"\u78BA\u8A8D",cancelButtonText:"\u53D6\u6D88"}}};e.default=t})(zhTw);var zhtwLocale=getDefaultExportFromCjs$1(zhTw),nextZhcn={router:{home:"\u9996\u9875",system:"\u7CFB\u7EDF\u8BBE\u7F6E",systemMenu:"\u83DC\u5355\u7BA1\u7406",systemRole:"\u89D2\u8272\u7BA1\u7406",systemUser:"\u7528\u6237\u7BA1\u7406",systemDept:"\u90E8\u95E8\u7BA1\u7406",systemDic:"\u5B57\u5178\u7BA1\u7406",limits:"\u6743\u9650\u7BA1\u7406",limitsFrontEnd:"\u524D\u7AEF\u63A7\u5236",limitsFrontEndPage:"\u9875\u9762\u6743\u9650",limitsFrontEndBtn:"\u6309\u94AE\u6743\u9650",limitsBackEnd:"\u540E\u7AEF\u63A7\u5236",limitsBackEndEndPage:"\u9875\u9762\u6743\u9650",menu:"\u83DC\u5355\u5D4C\u5957",menu1:"\u83DC\u53551",menu11:"\u83DC\u535511",menu12:"\u83DC\u535512",menu121:"\u83DC\u5355121",menu122:"\u83DC\u5355122",menu13:"\u83DC\u535513",menu2:"\u83DC\u53552",funIndex:"\u529F\u80FD",funTagsView:"tagsView \u64CD\u4F5C",funCountup:"\u6570\u5B57\u6EDA\u52A8",funWangEditor:"Editor \u7F16\u8F91\u5668",funCropper:"\u56FE\u7247\u88C1\u526A",funQrcode:"\u4E8C\u7EF4\u7801\u751F\u6210",funEchartsMap:"\u5730\u7406\u5750\u6807/\u5730\u56FE",funPrintJs:"\u9875\u9762\u6253\u5370",funClipboard:"\u590D\u5236\u526A\u5207",funGridLayout:"\u62D6\u62FD\u5E03\u5C40",funSplitpanes:"\u7A97\u683C\u62C6\u5206\u5668",funDragVerify:"\u9A8C\u8BC1\u5668",pagesIndex:"\u9875\u9762",pagesFiltering:"\u8FC7\u6EE4\u7B5B\u9009\u7EC4\u4EF6",pagesFilteringDetails:"\u8FC7\u6EE4\u7B5B\u9009\u7EC4\u4EF6\u8BE6\u60C5",pagesFilteringDetails1:"\u8FC7\u6EE4\u7B5B\u9009\u7EC4\u4EF6\u8BE6\u60C5111",pagesIocnfont:"ali \u5B57\u4F53\u56FE\u6807",pagesElement:"ele \u5B57\u4F53\u56FE\u6807",pagesAwesome:"awe \u5B57\u4F53\u56FE\u6807",pagesFormAdapt:"\u8868\u5355\u81EA\u9002\u5E94",pagesTableRules:"\u8868\u5355\u8868\u683C\u9A8C\u8BC1",pagesFormI18n:"\u8868\u5355\u56FD\u9645\u5316",pagesFormRules:"\u591A\u8868\u5355\u9A8C\u8BC1",pagesDynamicForm:"\u52A8\u6001\u590D\u6742\u8868\u5355",pagesWorkflow:"\u5DE5\u4F5C\u6D41",pagesListAdapt:"\u5217\u8868\u81EA\u9002\u5E94",pagesWaterfall:"\u7011\u5E03\u5C4F",pagesSteps:"\u6B65\u9AA4\u6761",pagesPreview:"\u5927\u56FE\u9884\u89C8",pagesWaves:"\u6CE2\u6D6A\u6548\u679C",pagesTree:"\u6811\u5F62\u6539\u8868\u683C",pagesDrag:"\u62D6\u52A8\u6307\u4EE4",pagesLazyImg:"\u56FE\u7247\u61D2\u52A0\u8F7D",makeIndex:"\u7EC4\u4EF6\u5C01\u88C5",makeSelector:"\u56FE\u6807\u9009\u62E9\u5668",makeNoticeBar:"\u6EDA\u52A8\u901A\u77E5\u680F",makeSvgDemo:"svgIcon \u6F14\u793A",paramsIndex:"\u8DEF\u7531\u53C2\u6570",paramsCommon:"\u666E\u901A\u8DEF\u7531",paramsDynamic:"\u52A8\u6001\u8DEF\u7531",paramsCommonDetails:"\u666E\u901A\u8DEF\u7531\u8BE6\u60C5",paramsDynamicDetails:"\u52A8\u6001\u8DEF\u7531\u8BE6\u60C5",chartIndex:"\u5927\u6570\u636E\u56FE\u8868",visualizingIndex:"\u6570\u636E\u53EF\u89C6\u5316",visualizingLinkDemo1:"\u6570\u636E\u53EF\u89C6\u5316\u6F14\u793A1",visualizingLinkDemo2:"\u6570\u636E\u53EF\u89C6\u5316\u6F14\u793A2",personal:"\u4E2A\u4EBA\u4E2D\u5FC3",tools:"\u5DE5\u5177\u7C7B\u96C6\u5408",layoutLinkView:"\u5916\u94FE",layoutIfameView:"\u5185\u5D4C iframe"},staticRoutes:{signIn:"\u767B\u5F55",notFound:"\u627E\u4E0D\u5230\u6B64\u9875\u9762",noPower:"\u6CA1\u6709\u6743\u9650"},user:{title0:"\u7EC4\u4EF6\u5927\u5C0F",title1:"\u8BED\u8A00\u5207\u6362",title2:"\u83DC\u5355\u641C\u7D22",title3:"\u5E03\u5C40\u914D\u7F6E",title4:"\u6D88\u606F",title5:"\u5F00\u5168\u5C4F",title6:"\u5173\u5168\u5C4F",dropdownLarge:"\u5927\u578B",dropdownDefault:"\u9ED8\u8BA4",dropdownSmall:"\u5C0F\u578B",dropdown1:"\u9996\u9875",dropdown2:"\u4E2A\u4EBA\u4E2D\u5FC3",dropdown3:"404",dropdown4:"401",dropdown5:"\u9000\u51FA\u767B\u5F55",dropdown6:"\u4EE3\u7801\u4ED3\u5E93",searchPlaceholder:"\u83DC\u5355\u641C\u7D22\uFF1A\u652F\u6301\u4E2D\u6587\u3001\u8DEF\u7531\u8DEF\u5F84",newTitle:"\u901A\u77E5",newBtn:"\u5168\u90E8\u5DF2\u8BFB",newGo:"\u524D\u5F80\u901A\u77E5\u4E2D\u5FC3",newDesc:"\u6682\u65E0\u901A\u77E5",logOutTitle:"\u63D0\u793A",logOutMessage:"\u6B64\u64CD\u4F5C\u5C06\u9000\u51FA\u767B\u5F55, \u662F\u5426\u7EE7\u7EED?",logOutConfirm:"\u786E\u5B9A",logOutCancel:"\u53D6\u6D88",logOutExit:"\u9000\u51FA\u4E2D",logOutSuccess:"\u5B89\u5168\u9000\u51FA\u6210\u529F\uFF01"},tagsView:{refresh:"\u5237\u65B0",close:"\u5173\u95ED",closeOther:"\u5173\u95ED\u5176\u5B83",closeAll:"\u5168\u90E8\u5173\u95ED",fullscreen:"\u5F53\u524D\u9875\u5168\u5C4F",closeFullscreen:"\u5173\u95ED\u5168\u5C4F"},notFound:{foundTitle:"\u5730\u5740\u8F93\u5165\u9519\u8BEF\uFF0C\u8BF7\u91CD\u65B0\u8F93\u5165\u5730\u5740~",foundMsg:"\u60A8\u53EF\u4EE5\u5148\u68C0\u67E5\u7F51\u5740\uFF0C\u7136\u540E\u91CD\u65B0\u8F93\u5165\u6216\u7ED9\u6211\u4EEC\u53CD\u9988\u95EE\u9898\u3002",foundBtn:"\u8FD4\u56DE\u9996\u9875"},noAccess:{accessTitle:"\u60A8\u672A\u88AB\u6388\u6743\uFF0C\u6CA1\u6709\u64CD\u4F5C\u6743\u9650~",accessMsg:"\u8054\u7CFB\u65B9\u5F0F\uFF1A\u52A0QQ\u7FA4\u63A2\u8BA8 665452019",accessBtn:"\u91CD\u65B0\u6388\u6743"},layout:{configTitle:"\u5E03\u5C40\u914D\u7F6E",oneTitle:"\u5168\u5C40\u4E3B\u9898",twoTopTitle:"\u9876\u680F\u8BBE\u7F6E",twoMenuTitle:"\u83DC\u5355\u8BBE\u7F6E",twoColumnsTitle:"\u5206\u680F\u8BBE\u7F6E",twoTopBar:"\u9876\u680F\u80CC\u666F",twoTopBarColor:"\u9876\u680F\u9ED8\u8BA4\u5B57\u4F53\u989C\u8272",twoIsTopBarColorGradual:"\u9876\u680F\u80CC\u666F\u6E10\u53D8",twoMenuBar:"\u83DC\u5355\u80CC\u666F",twoMenuBarColor:"\u83DC\u5355\u9ED8\u8BA4\u5B57\u4F53\u989C\u8272",twoIsMenuBarColorGradual:"\u83DC\u5355\u80CC\u666F\u6E10\u53D8",twoColumnsMenuBar:"\u5206\u680F\u83DC\u5355\u80CC\u666F",twoColumnsMenuBarColor:"\u5206\u680F\u83DC\u5355\u9ED8\u8BA4\u5B57\u4F53\u989C\u8272",twoIsColumnsMenuBarColorGradual:"\u5206\u680F\u83DC\u5355\u80CC\u666F\u6E10\u53D8",threeTitle:"\u754C\u9762\u8BBE\u7F6E",threeIsCollapse:"\u83DC\u5355\u6C34\u5E73\u6298\u53E0",threeIsUniqueOpened:"\u83DC\u5355\u624B\u98CE\u7434",threeIsFixedHeader:"\u56FA\u5B9A Header",threeIsClassicSplitMenu:"\u7ECF\u5178\u5E03\u5C40\u5206\u5272\u83DC\u5355",threeIsLockScreen:"\u5F00\u542F\u9501\u5C4F",threeLockScreenTime:"\u81EA\u52A8\u9501\u5C4F(s/\u79D2)",fourTitle:"\u754C\u9762\u663E\u793A",fourIsShowLogo:"\u4FA7\u8FB9\u680F Logo",fourIsBreadcrumb:"\u5F00\u542F Breadcrumb",fourIsBreadcrumbIcon:"\u5F00\u542F Breadcrumb \u56FE\u6807",fourIsTagsview:"\u5F00\u542F Tagsview",fourIsTagsviewIcon:"\u5F00\u542F Tagsview \u56FE\u6807",fourIsCacheTagsView:"\u5F00\u542F TagsView \u7F13\u5B58",fourIsSortableTagsView:"\u5F00\u542F TagsView \u62D6\u62FD",fourIsShareTagsView:"\u5F00\u542F TagsView \u5171\u7528",fourIsFooter:"\u5F00\u542F Footer",fourIsGrayscale:"\u7070\u8272\u6A21\u5F0F",fourIsInvert:"\u8272\u5F31\u6A21\u5F0F",fourIsDark:"\u6DF1\u8272\u6A21\u5F0F",fourIsWartermark:"\u5F00\u542F\u6C34\u5370",fourWartermarkText:"\u6C34\u5370\u6587\u6848",fiveTitle:"\u5176\u5B83\u8BBE\u7F6E",fiveTagsStyle:"Tagsview \u98CE\u683C",fiveAnimation:"\u4E3B\u9875\u9762\u5207\u6362\u52A8\u753B",fiveColumnsAsideStyle:"\u5206\u680F\u9AD8\u4EAE\u98CE\u683C",fiveColumnsAsideLayout:"\u5206\u680F\u5E03\u5C40\u98CE\u683C",sixTitle:"\u5E03\u5C40\u5207\u6362",sixDefaults:"\u9ED8\u8BA4",sixClassic:"\u7ECF\u5178",sixTransverse:"\u6A2A\u5411",sixColumns:"\u5206\u680F",tipText:"\u70B9\u51FB\u4E0B\u65B9\u6309\u94AE\uFF0C\u590D\u5236\u5E03\u5C40\u914D\u7F6E\u53BB `src/store/modules/themeConfig.ts` \u4E2D\u4FEE\u6539\u3002",copyText:"\u4E00\u952E\u590D\u5236\u914D\u7F6E",resetText:"\u4E00\u952E\u6062\u590D\u9ED8\u8BA4",copyTextSuccess:"\u590D\u5236\u6210\u529F\uFF01",copyTextError:"\u590D\u5236\u5931\u8D25\uFF01"}},nextEn={router:{home:"home",system:"system",systemMenu:"systemMenu",systemRole:"systemRole",systemUser:"systemUser",systemDept:"systemDept",systemDic:"systemDic",limits:"limits",limitsFrontEnd:"FrontEnd",limitsFrontEndPage:"FrontEndPage",limitsFrontEndBtn:"FrontEndBtn",limitsBackEnd:"BackEnd",limitsBackEndEndPage:"BackEndEndPage",menu:"menu",menu1:"menu1",menu11:"menu11",menu12:"menu12",menu121:"menu121",menu122:"menu122",menu13:"menu13",menu2:"menu2",funIndex:"function",funTagsView:"funTagsView",funCountup:"countup",funWangEditor:"wangEditor",funCropper:"cropper",funQrcode:"qrcode",funEchartsMap:"EchartsMap",funPrintJs:"PrintJs",funClipboard:"Copy cut",funGridLayout:"Drag layout",funSplitpanes:"Pane splitter",funDragVerify:"Validator",pagesIndex:"pages",pagesFiltering:"Filtering",pagesFilteringDetails:"FilteringDetails",pagesFilteringDetails1:"FilteringDetails1",pagesIocnfont:"iconfont icon",pagesElement:"element icon",pagesAwesome:"awesome icon",pagesFormAdapt:"FormAdapt",pagesTableRules:"pagesTableRules",pagesFormI18n:"FormI18n",pagesFormRules:"Multi form validation",pagesDynamicForm:"Dynamic complex form",pagesWorkflow:"Workflow",pagesListAdapt:"ListAdapt",pagesWaterfall:"Waterfall",pagesSteps:"Steps",pagesPreview:"Large preview",pagesWaves:"Wave effect",pagesTree:"tree alter table",pagesDrag:"Drag command",pagesLazyImg:"Image lazy loading",makeIndex:"makeIndex",makeSelector:"Icon selector",makeNoticeBar:"notification bar",makeSvgDemo:"Svgicon demo",paramsIndex:"Routing parameters",paramsCommon:"General routing",paramsDynamic:"Dynamic routing",paramsCommonDetails:"General routing details",paramsDynamicDetails:"Dynamic routing details",chartIndex:"chartIndex",visualizingIndex:"visualizingIndex",visualizingLinkDemo1:"visualizingLinkDemo1",visualizingLinkDemo2:"visualizingLinkDemo2",personal:"personal",tools:"tools",layoutLinkView:"LinkView",layoutIfameView:"IfameView"},staticRoutes:{signIn:"signIn",notFound:"notFound",noPower:"noPower"},user:{title0:"Component size",title1:"Language switching",title2:"Menu search",title3:"Layout configuration",title4:"news",title5:"Full screen on",title6:"Full screen off",dropdownLarge:"large",dropdownDefault:"default",dropdownSmall:"small",dropdown1:"home page",dropdown2:"Personal Center",dropdown3:"404",dropdown4:"401",dropdown5:"Log out",dropdown6:"Code warehouse",searchPlaceholder:"Menu search: support Chinese, routing path",newTitle:"notice",newBtn:"All read",newGo:"Go to the notification center",newDesc:"No notice",logOutTitle:"Tips",logOutMessage:"This operation will log out. Do you want to continue?",logOutConfirm:"determine",logOutCancel:"cancel",logOutExit:"Exiting",logOutSuccess:"Exit successfully!"},tagsView:{refresh:"refresh",close:"close",closeOther:"closeOther",closeAll:"closeAll",fullscreen:"fullscreen",closeFullscreen:"closeFullscreen"},notFound:{foundTitle:"Wrong address input, please re-enter the address~",foundMsg:"You can check the web address first, and then re-enter or give us feedback.",foundBtn:"Back to home page"},noAccess:{accessTitle:"You are not authorized to operate~",accessMsg:"Contact information: add QQ group discussion 665452019",accessBtn:"Reauthorization"},layout:{configTitle:"Layout configuration",oneTitle:"Global Themes",twoTopTitle:"top bar set up",twoMenuTitle:"Menu set up",twoColumnsTitle:"Columns set up",twoTopBar:"Top bar background",twoTopBarColor:"Top bar default font color",twoIsTopBarColorGradual:"Top bar gradient",twoMenuBar:"Menu background",twoMenuBarColor:"Menu default font color",twoIsMenuBarColorGradual:"Menu gradient",twoColumnsMenuBar:"Column menu background",twoColumnsMenuBarColor:"Default font color bar menu",twoIsColumnsMenuBarColorGradual:"Column gradient",threeTitle:"Interface settings",threeIsCollapse:"Menu horizontal collapse",threeIsUniqueOpened:"Menu accordion",threeIsFixedHeader:"Fixed header",threeIsClassicSplitMenu:"Classic layout split menu",threeIsLockScreen:"Open the lock screen",threeLockScreenTime:"screen locking(s/s)",fourTitle:"Interface display",fourIsShowLogo:"Sidebar logo",fourIsBreadcrumb:"Open breadcrumb",fourIsBreadcrumbIcon:"Open breadcrumb icon",fourIsTagsview:"Open tagsview",fourIsTagsviewIcon:"Open tagsview Icon",fourIsCacheTagsView:"Enable tagsview cache",fourIsSortableTagsView:"Enable tagsview drag",fourIsShareTagsView:"Enable tagsview sharing",fourIsFooter:"Open footer",fourIsGrayscale:"Grey model",fourIsInvert:"Color weak mode",fourIsDark:"Dark Mode",fourIsWartermark:"Turn on watermark",fourWartermarkText:"Watermark copy",fiveTitle:"Other settings",fiveTagsStyle:"Tagsview style",fiveAnimation:"page animation",fiveColumnsAsideStyle:"Column style",fiveColumnsAsideLayout:"Column layout",sixTitle:"Layout switch",sixDefaults:"One",sixClassic:"Two",sixTransverse:"Three",sixColumns:"Four",tipText:"Click the button below to copy the layout configuration to `/src/store/modules/themeConfig.ts` It has been modified in.",copyText:"replication configuration",resetText:"restore default",copyTextSuccess:"Copy succeeded!",copyTextError:"Copy failed!"}},nextZhtw={router:{home:"\u9996\u9801",system:"\u7CFB\u7D71\u8A2D\u7F6E",systemMenu:"\u9078\u55AE\u7BA1\u7406",systemRole:"\u89D2\u8272\u7BA1\u7406",systemUser:"\u7528\u6236\u7BA1\u7406",systemDept:"\u90E8\u9580\u7BA1\u7406",systemDic:"\u5B57\u5178\u7BA1\u7406",limits:"\u8A31\u53EF\u6B0A\u7BA1\u7406",limitsFrontEnd:"\u524D\u7AEF\u63A7\u5236",limitsFrontEndPage:"\u9801\u9762\u8A31\u53EF\u6B0A",limitsFrontEndBtn:"\u6309\u9215\u8A31\u53EF\u6B0A",limitsBackEnd:"\u5F8C\u7AEF\u63A7\u5236",limitsBackEndEndPage:"\u9801\u9762\u8A31\u53EF\u6B0A",menu:"\u9078\u55AE\u5D4C\u5957",menu1:"\u9078\u55AE1",menu11:"\u9078\u55AE11",menu12:"\u9078\u55AE12",menu121:"\u9078\u55AE121",menu122:"\u9078\u55AE122",menu13:"\u9078\u55AE13",menu2:"\u9078\u55AE2",funIndex:"\u529F\u80FD",funTagsView:"tagsView \u64CD\u4F5C",funCountup:"\u6578\u4F4D\u6EFE\u52D5",funWangEditor:"Editor \u7DE8\u8F2F\u5668",funCropper:"\u5716\u7247\u88C1\u526A",funQrcode:"\u4E8C\u7DAD\u78BC\u751F\u6210",funEchartsMap:"\u5730\u7406\u5EA7\u6A19/\u5730\u5716",funPrintJs:"\u9801\u9762\u5217\u5370",funClipboard:"\u8907\u88FD\u526A\u5207",funGridLayout:"\u62D6\u62FD\u4F48\u5C40",funSplitpanes:"\u7A97\u683C\u6298\u958B\u5668",funDragVerify:"\u9A57\u8B49\u5668",pagesIndex:"\u9801\u9762",pagesFiltering:"\u904E\u6FFE\u7BE9\u9078\u7D44\u4EF6",pagesFilteringDetails:"\u904E\u6FFE\u7BE9\u9078\u7D44\u4EF6\u8A73\u60C5",pagesFilteringDetails1:"\u904E\u6FFE\u7BE9\u9078\u7D44\u4EF6\u8A73\u60C5111",pagesIocnfont:"ali \u5B57\u9AD4\u5716\u6A19",pagesElement:"ele \u5B57\u9AD4\u5716\u6A19",pagesAwesome:"awe \u5B57\u9AD4\u5716\u6A19",pagesFormAdapt:"\u8868\u55AE\u81EA\u6211\u8ABF\u6574",pagesTableRules:"\u8868\u55AE\u8868\u683C\u9A57\u8B49",pagesFormI18n:"\u8868\u55AE\u570B\u969B\u5316",pagesFormRules:"\u591A\u8868\u55AE\u9A57\u8B49",pagesDynamicForm:"\u52D5\u614B\u8907\u96DC\u8868\u55AE",pagesWorkflow:"\u5DE5\u4F5C\u6D41",pagesListAdapt:"\u6E05\u55AE\u81EA\u6211\u8ABF\u6574",pagesWaterfall:"\u7011\u5E03\u5C4F",pagesSteps:"\u6B65\u9A5F\u689D",pagesPreview:"\u5927\u5716\u9810\u89BD",pagesWaves:"\u6CE2\u6D6A\u6548\u679C",pagesTree:"\u6A39\u5F62\u6539\u8868\u683C",pagesDrag:"\u62D6\u52D5\u6307\u4EE4",pagesLazyImg:"\u5716\u7247\u61F6\u52A0\u8F09",makeIndex:"\u7D44\u4EF6\u5C01\u88DD",makeSelector:"\u5716\u6A19\u9078\u64C7\u5668",makeNoticeBar:"\u6EFE\u52D5\u901A\u77E5\u6B04",makeSvgDemo:"svgIcon \u6F14\u793A",paramsIndex:"\u8DEF\u7531\u53C3\u6578",paramsCommon:"\u666E\u901A\u8DEF\u7531",paramsDynamic:"\u52D5\u614B\u8DEF\u7531",paramsCommonDetails:"\u666E\u901A\u8DEF\u7531\u8A73\u60C5",paramsDynamicDetails:"\u52D5\u614B\u8DEF\u7531\u8A73\u60C5",chartIndex:"\u5927\u8CC7\u6599\u5716\u8868",visualizingIndex:"\u6578\u64DA\u8996\u89BA\u5316",visualizingLinkDemo1:"\u6578\u64DA\u8996\u89BA\u5316\u6F14\u793A1",visualizingLinkDemo2:"\u6578\u64DA\u8996\u89BA\u5316\u6F14\u793A2",personal:"\u500B\u4EBA\u4E2D\u5FC3",tools:"\u5DE5\u5177\u985E\u96C6\u5408",layoutLinkView:"\u5916\u93C8",layoutIfameView:"\u5185\u5D4C iframe"},staticRoutes:{signIn:"\u767B\u5165",notFound:"\u627E\u4E0D\u5230\u6B64\u9801\u9762",noPower:"\u6C92\u6709\u8A31\u53EF\u6B0A"},user:{title0:"\u7D44\u4EF6\u5927\u5C0F",title1:"\u8A9E\u8A00\u5207\u63DB",title2:"\u9078\u55AE\u8490\u7D22",title3:"\u4F48\u5C40\u914D\u5BD8",title4:"\u6D88\u606F",title5:"\u958B\u5168\u5C4F",title6:"\u95DC\u5168\u5C4F",dropdownLarge:"\u5927\u578B",dropdownDefault:"\u9ED8\u8A8D",dropdownSmall:"\u5C0F\u578B",dropdown1:"\u9996\u9801",dropdown2:"\u500B\u4EBA\u4E2D\u5FC3",dropdown3:"404",dropdown4:"401",dropdown5:"\u767B\u51FA",dropdown6:"\u7A0B\u5F0F\u78BC\u5009\u5EAB",searchPlaceholder:"\u9078\u55AE\u8490\u7D22\uFF1A\u652F\u63F4\u4E2D\u6587\u3001\u8DEF\u7531\u8DEF\u5F91",newTitle:"\u901A\u77E5",newBtn:"\u5168\u90E8\u5DF2\u8B80",newGo:"\u524D\u5F80\u901A\u77E5\u4E2D\u5FC3",newDesc:"\u66AB\u7121\u901A\u77E5",logOutTitle:"\u63D0\u793A",logOutMessage:"\u6B64\u64CD\u4F5C\u5C07\u767B\u51FA\uFF0C\u662F\u5426\u7E7C\u7E8C\uFF1F",logOutConfirm:"\u78BA\u5B9A",logOutCancel:"\u53D6\u6D88",logOutExit:"\u9000\u51FA\u4E2D",logOutSuccess:"\u5B89\u5168\u9000\u51FA\u6210\u529F\uFF01"},tagsView:{refresh:"\u91CD\u7E6A",close:"\u95DC\u9589",closeOther:"\u95DC\u9589\u5176\u5B83",closeAll:"\u5168\u90E8\u95DC\u9589",fullscreen:"\u7576\u524D\u9801\u5168\u5C4F",closeFullscreen:"\u95DC\u9589\u5168\u5C4F"},notFound:{foundTitle:"\u5730\u5740\u8F38\u5165\u932F\u8AA4\uFF0C\u8ACB\u91CD\u65B0\u8F38\u5165\u5730\u5740~",foundMsg:"\u60A8\u53EF\u4EE5\u5148\u6AA2\u67E5\u7DB2\u5740\uFF0C\u7136\u5F8C\u91CD\u65B0\u8F38\u5165\u6216\u7D66\u6211\u5011\u8FF4\u97FF\u554F\u984C\u3002",foundBtn:"\u8FD4\u56DE\u9996\u9801"},noAccess:{accessTitle:"\u60A8\u672A\u88AB\u6388\u6B0A\uFF0C\u6C92\u6709\u64CD\u4F5C\u8A31\u53EF\u6B0A~",accessMsg:"\u806F\u7E6B\u65B9\u5F0F\uFF1A\u52A0QQ\u7FA4\u63A2\u8A0E665452019",accessBtn:"\u91CD\u65B0\u6388\u6B0A"},layout:{configTitle:"\u4F48\u5C40\u914D\u5BD8",oneTitle:"\u5168\u57DF\u4E3B\u984C",twoTopTitle:"\u9802\u6B04\u8A2D\u5B9A",twoMenuTitle:"\u9078\u55AE\u8A2D\u5B9A",twoColumnsTitle:"\u5206\u6B04\u8A2D\u5B9A",twoTopBar:"\u9802\u6B04\u80CC\u666F",twoTopBarColor:"\u9802\u6B04\u9ED8\u8A8D\u5B57\u9AD4\u984F\u8272",twoIsTopBarColorGradual:"\u9802\u6B04\u80CC\u666F\u6F38\u8B8A",twoMenuBar:"\u9078\u55AE\u80CC\u666F",twoMenuBarColor:"\u9078\u55AE\u9ED8\u8A8D\u5B57\u9AD4\u984F\u8272",twoIsMenuBarColorGradual:"\u9078\u55AE\u80CC\u666F\u6F38\u8B8A",twoColumnsMenuBar:"\u5206\u6B04\u9078\u55AE\u80CC\u666F",twoColumnsMenuBarColor:"\u5206\u6B04\u9078\u55AE\u9ED8\u8A8D\u5B57\u9AD4\u984F\u8272",twoIsColumnsMenuBarColorGradual:"\u5206\u6B04\u9078\u55AE\u80CC\u666F\u6F38\u8B8A",threeTitle:"\u4ECB\u9762\u8A2D\u5B9A",threeIsCollapse:"\u9078\u55AE\u6C34\u51C6\u6298\u758A",threeIsUniqueOpened:"\u9078\u55AE\u624B\u98A8\u7434",threeIsFixedHeader:"\u56FA\u5B9A Header",threeIsClassicSplitMenu:"\u7D93\u5178\u4F48\u5C40\u5206\u5272\u9078\u55AE",threeIsLockScreen:"\u958B\u555F\u9396\u5C4F",threeLockScreenTime:"\u81EA\u52D5\u9396\u5C4F(s/\u79D2)",fourTitle:"\u4ECB\u9762\u986F\u793A",fourIsShowLogo:"\u5074\u908A\u6B04 Logo",fourIsBreadcrumb:"\u958B\u555F Breadcrumb",fourIsBreadcrumbIcon:"\u958B\u555F Breadcrumb \u5716\u6A19",fourIsTagsview:"\u958B\u555F Tagsview",fourIsTagsviewIcon:"\u958B\u555F Tagsview \u5716\u6A19",fourIsCacheTagsView:"\u958B\u555F TagsView \u7DE9\u5B58",fourIsSortableTagsView:"\u958B\u555F TagsView \u62D6\u62FD",fourIsShareTagsView:"\u958B\u555F TagsView \u5171\u7528",fourIsFooter:"\u958B\u555F Footer",fourIsGrayscale:"\u7070\u8272\u6A21\u5F0F",fourIsInvert:"\u8272\u5F31\u6A21\u5F0F",fourIsDark:"\u6DF1\u8272\u6A21\u5F0F",fourIsWartermark:"\u958B\u555F\u6D6E\u6C34\u5370",fourWartermarkText:"\u6D6E\u6C34\u5370\u6587\u6848",fiveTitle:"\u5176\u5B83\u8A2D\u5B9A",fiveTagsStyle:"Tagsview \u98A8\u683C",fiveAnimation:"\u4E3B\u9801\u9762\u5207\u63DB\u52D5\u756B",fiveColumnsAsideStyle:"\u5206\u6B04\u9AD8\u4EAE\u98A8\u683C",fiveColumnsAsideLayout:"\u5206\u6B04\u4F48\u5C40\u98A8\u683C",sixTitle:"\u4F48\u5C40\u5207\u63DB",sixDefaults:"\u9ED8\u8A8D",sixClassic:"\u7D93\u5178",sixTransverse:"\u6A6B\u5411",sixColumns:"\u5206\u6B04",tipText:"\u9EDE\u64CA\u4E0B\u65B9\u6309\u9215\uFF0C\u8907\u88FD\u4F48\u5C40\u914D\u5BD8\u53BB`src/store/modules/themeConfig.ts`\u4E2D\u4FEE\u6539\u3002",copyText:"\u4E00\u9375\u8907\u88FD\u914D\u5BD8",resetText:"\u4E00\u9375\u6062\u5FA9\u9ED8\u8A8D",copyTextSuccess:"\u8907\u88FD\u6210\u529F\uFF01",copyTextError:"\u8907\u88FD\u5931\u6557\uFF01"}},pagesLoginZhcn={label:{one1:"\u7528\u6237\u540D\u767B\u5F55",two2:"\u624B\u673A\u53F7\u767B\u5F55"},link:{one3:"\u7B2C\u4E09\u65B9\u767B\u5F55",two4:"\u53CB\u60C5\u94FE\u63A5"},account:{accountPlaceholder1:"\u8BF7\u8F93\u5165\u7528\u6237\u540D",accountPlaceholder2:"\u8BF7\u8F93\u5165\u5BC6\u7801",accountPlaceholder3:"\u8BF7\u8F93\u5165\u9A8C\u8BC1\u7801",accountBtnText:"\u767B \u5F55"},mobile:{placeholder1:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7",placeholder2:"\u8BF7\u8F93\u5165\u9A8C\u8BC1\u7801",codeText:"\u83B7\u53D6\u9A8C\u8BC1\u7801",btnText:"\u767B \u5F55",msgText:"* \u6E29\u99A8\u63D0\u793A\uFF1A\u5EFA\u8BAE\u4F7F\u7528\u8C37\u6B4C\u3001Microsoft Edge\uFF0C\u7248\u672C 79.0.1072.62 \u53CA\u4EE5\u4E0A\u6D4F\u89C8\u5668\uFF0C360\u6D4F\u89C8\u5668\u8BF7\u4F7F\u7528\u6781\u901F\u6A21\u5F0F"},scan:{text:"\u6253\u5F00\u624B\u673A\u626B\u4E00\u626B\uFF0C\u5FEB\u901F\u767B\u5F55/\u6CE8\u518C"},signInText:"\u6B22\u8FCE\u56DE\u6765\uFF01"},pagesLoginEn={label:{one1:"User name login",two2:"Mobile number"},link:{one3:"Third party login",two4:"Links"},account:{accountPlaceholder1:"The user name admin or not is common",accountPlaceholder2:"Password: 123456",accountPlaceholder3:"Please enter the verification code",accountBtnText:"Sign in"},mobile:{placeholder1:"Please input mobile phone number",placeholder2:"Please enter the verification code",codeText:"Get code",btnText:"Sign in",msgText:"Warm tip: it is recommended to use Google, Microsoft edge, version 79.0.1072.62 and above browsers, and 360 browser, please use speed mode"},scan:{text:"Open the mobile phone to scan and quickly log in / register"},signInText:"welcome back!"},pagesLoginZhtw={label:{one1:"\u7528\u6236\u540D\u767B\u5165",two2:"\u624B\u6A5F\u865F\u767B\u5165"},link:{one3:"\u5354\u529B\u5EE0\u5546\u767B\u5165",two4:"\u53CB\u60C5\u9023\u7D50"},account:{accountPlaceholder1:"\u7528\u6236\u540Dadmin\u6216\u4E0D\u8F38\u5747\u70BAcommon",accountPlaceholder2:"\u5BC6\u78BC\uFF1A123456",accountPlaceholder3:"\u8ACB\u8F38\u5165\u9A57\u8B49\u78BC",accountBtnText:"\u767B\u5165"},mobile:{placeholder1:"\u8ACB\u8F38\u5165\u624B\u6A5F\u865F",placeholder2:"\u8ACB\u8F38\u5165\u9A57\u8B49\u78BC",codeText:"\u7372\u53D6\u9A57\u8B49\u78BC",btnText:"\u767B\u5165",msgText:"* \u6EAB\u99A8\u63D0\u793A\uFF1A\u5EFA\u8B70\u4F7F\u7528\u7A40\u6B4C\u3001Microsoft Edge\uFF0C\u7248\u672C79.0.1072.62\u53CA\u4EE5\u4E0A\u700F\u89BD\u5668\uFF0C360\u700F\u89BD\u5668\u8ACB\u4F7F\u7528\u6975\u901F\u6A21\u5F0F"},scan:{text:"\u6253\u958B\u624B\u6A5F\u6383\u4E00\u6383\uFF0C\u5FEB\u901F\u767B\u9304/\u6CE8\u518C"},signInText:"\u6B61\u8FCE\u56DE\u4F86\uFF01"},pagesFormI18nZhcn={formI18nLabel:{name:"\u59D3\u540D",email:"\u7528\u6237\u5F52\u5C5E\u90E8\u95E8",autograph:"\u767B\u9646\u8D26\u6237\u540D"},formI18nPlaceholder:{name:"\u8BF7\u8F93\u5165\u59D3\u540D",email:"\u8BF7\u8F93\u5165\u7528\u6237\u5F52\u5C5E\u90E8\u95E8",autograph:"\u8BF7\u8F93\u5165\u767B\u9646\u8D26\u6237\u540D"}},pagesFormI18nEn={formI18nLabel:{name:"name",email:"email",autograph:"autograph"},formI18nPlaceholder:{name:"Please enter your name",email:"Please enter the users Department",autograph:"Please enter the login account name"}},pagesFormI18nZhtw={formI18nLabel:{name:"\u59D3\u540D",email:"\u7528\u6236\u6B78\u5C6C\u90E8\u9580",autograph:"\u767B\u5165\u5E33\u6236\u540D"},formI18nPlaceholder:{name:"\u8ACB\u8F38\u5165\u59D3\u540D",email:"\u8ACB\u8F38\u5165\u7528\u6236\u6B78\u5C6C\u90E8\u9580",autograph:"\u8ACB\u8F38\u5165\u767B\u5165\u5E33\u6236\u540D"}};const messages={[zhcnLocale.name]:{...zhcnLocale,message:{...nextZhcn,...pagesLoginZhcn,...pagesFormI18nZhcn}},[enLocale.name]:{...enLocale,message:{...nextEn,...pagesLoginEn,...pagesFormI18nEn}},[zhtwLocale.name]:{...zhtwLocale,message:{...nextZhtw,...pagesLoginZhtw,...pagesFormI18nZhtw}}},i18n=createI18n_1({locale:store.state.themeConfig.themeConfig.globalI18n,fallbackLocale:zhcnLocale.name,messages}),_sfc_main$5={name:"svgIcon",props:{name:{type:String},size:{type:Number,default:()=>14},color:{type:String}},setup(e){var g;const t=["https","http","/src","/assets","/"],n=`font-size: ${e.size}px;color: ${e.color}`,r=`width: ${e.size}px;height: ${e.size}px`,i={class:"el-icon",style:n};return(g=e.name)!=null&&g.startsWith("ele-")?()=>h$1("i",i,[e.name==="ele-"?"":h$1(resolveComponent(e.name))]):t.find($=>{var y;return(y=e.name)==null?void 0:y.startsWith($)})?()=>h$1("img",{src:e.name,style:r}):()=>h$1("i",{class:e.name,style:n})}};function elSvg(e){const t=svg;for(const n in t)e.component(`ele-${t[n].name}`,t[n]);e.component("SvgIcon",_sfc_main$5)}function useTitle(){nextTick(()=>{var n,r;let e="",t=JSON.parse(localStorage.sysinfo||"{}").systemName||"";router.currentRoute.value.path==="/login"?e=(n=router.currentRoute.value.meta)==null?void 0:n.title:e=i18n.global.t((r=router.currentRoute.value.meta)==null?void 0:r.title),document.title=`${e} - ${t||""}`||t})}const lazyImg=(e,t)=>{const n=new IntersectionObserver(r=>{r.forEach(i=>{if(i.isIntersecting){const{img:g,key:$}=i.target.dataset;i.target.src=g,i.target.onload=()=>{n.unobserve(i.target),t[$].loading=!1}}})});nextTick(()=>{document.querySelectorAll(e).forEach(r=>n.observe(r))})};var di,fi;const globalComponentSize=((di=Local.get("themeConfig"))==null?void 0:di.globalComponentSize)||((fi=store.state.themeConfig.themeConfig)==null?void 0:fi.globalComponentSize);function deepClone(e){let t;try{t=e.push?[]:{}}catch{t={}}for(let n in e)typeof e[n]=="object"?t[n]=deepClone(e[n]):t[n]=e[n];return t}function isMobile(){return!!navigator.userAgent.match(/('phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone')/i)}function handleEmpty(e){const t=[];for(const n in e){const r=[];for(const g in e[n])r.push(e[n][g]);r.filter(g=>g==="").length!==r.length&&t.push(e[n])}return t}const other={elSvg:e=>{elSvg(e)},useTitle:()=>{useTitle()},lazyImg:(e,t)=>{lazyImg(e,t)},globalComponentSize,deepClone:e=>{deepClone(e)},isMobile:()=>isMobile(),handleEmpty:e=>handleEmpty(e)},cssCdnUrlList=["//at.alicdn.com/t/font_2298093_y6u00apwst.css","//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"],jsCdnUrlList=[];function setCssCdn(){if(cssCdnUrlList.length<=0)return!1;cssCdnUrlList.map(e=>{let t=document.createElement("link");t.rel="stylesheet",t.href=e,t.crossOrigin="anonymous",document.getElementsByTagName("head")[0].appendChild(t)})}function setJsCdn(){if(jsCdnUrlList.length<=0)return!1;jsCdnUrlList.map(e=>{let t=document.createElement("script");t.src=e,document.body.appendChild(t)})}const setIntroduction={cssCdn:()=>{setCssCdn()},jsCdn:()=>{setJsCdn()}};function formatDate(e,t){let n=e.getDay(),r=getWeek(e),i=Math.floor((e.getMonth()+3)/3).toString();const g={"Y+":e.getFullYear().toString(),"m+":(e.getMonth()+1).toString(),"d+":e.getDate().toString(),"H+":e.getHours().toString(),"M+":e.getMinutes().toString(),"S+":e.getSeconds().toString(),"q+":i},$={0:"\u65E5",1:"\u4E00",2:"\u4E8C",3:"\u4E09",4:"\u56DB",5:"\u4E94",6:"\u516D"},y={1:"\u4E00",2:"\u4E8C",3:"\u4E09",4:"\u56DB"};/(W+)/.test(t)&&(t=t.replace(RegExp.$1,RegExp.$1.length>1?RegExp.$1.length>2?"\u661F\u671F"+$[n]:"\u5468"+$[n]:$[n])),/(Q+)/.test(t)&&(t=t.replace(RegExp.$1,RegExp.$1.length==4?"\u7B2C"+y[i]+"\u5B63\u5EA6":y[i])),/(Z+)/.test(t)&&(t=t.replace(RegExp.$1,RegExp.$1.length==3?"\u7B2C"+r+"\u5468":r+""));for(let k in g){let j=new RegExp("("+k+")").exec(t);j&&(t=t.replace(j[1],RegExp.$1.length==1?g[k]:g[k].padStart(RegExp.$1.length,"0")))}return t}function getWeek(e){let t=new Date(e.getTime()),n=t.getDay()||7;t.setDate(t.getDate()-n+1+5);let r=new Date(t.getFullYear(),0,1),i=r.getDay(),g=1;i!=0&&(g=7-i+1),r=new Date(t.getFullYear(),0,1+g);let $=Math.ceil((t.valueOf()-r.valueOf())/864e5);return Math.ceil($/7)}function formatAxis(e){let t=new Date(e).getHours();return t<6?"\u51CC\u6668\u597D":t<9?"\u65E9\u4E0A\u597D":t<12?"\u4E0A\u5348\u597D":t<14?"\u4E2D\u5348\u597D":t<17?"\u4E0B\u5348\u597D":t<19?"\u508D\u665A\u597D":t<22?"\u665A\u4E0A\u597D":"\u591C\u91CC\u597D"}var index_vue_vue_type_style_index_0_scoped_true_lang$1="",_export_sfc=(e,t)=>{const n=e.__vccOpts||e;for(const[r,i]of t)n[r]=i;return n};const _sfc_main$4=defineComponent({name:"layoutLockScreen",setup(){const{proxy:e}=getCurrentInstance(),t=ref(),n=useStore$1(),r=reactive({transparency:1,downClientY:0,moveDifference:0,isShowLoockLogin:!1,isFlags:!1,querySelectorEl:"",time:{hm:"",s:"",mdq:""},setIntervalTime:0,isShowLockScreen:!1,isShowLockScreenIntervalTime:0,lockScreenPassword:""}),i=oe=>{r.isFlags=!0,r.downClientY=oe.touches?oe.touches[0].clientY:oe.clientY},g=oe=>{if(r.isFlags){const re=r.querySelectorEl,ie=r.transparency-=1/200;if(oe.touches?r.moveDifference=oe.touches[0].clientY-r.downClientY:r.moveDifference=oe.clientY-r.downClientY,r.moveDifference>=0)return!1;re.setAttribute("style",`top:${r.moveDifference}px;cursor:pointer;opacity:${ie};`),r.moveDifference<-400&&(re.setAttribute("style",`top:${-re.clientHeight}px;cursor:pointer;transition:all 0.3s ease;`),r.moveDifference=-re.clientHeight,setTimeout(()=>{var ae;re&&((ae=re.parentNode)==null||ae.removeChild(re))},300)),r.moveDifference===-re.clientHeight&&(r.isShowLoockLogin=!0,t.value.focus())}},$=()=>{r.isFlags=!1,r.transparency=1,r.moveDifference>=-400&&r.querySelectorEl.setAttribute("style","top:0px;opacity:1;transition:all 0.3s ease;")},y=()=>{nextTick(()=>{r.querySelectorEl=e.$refs.layoutLockScreenDateRef})},k=()=>{r.time.hm=formatDate(new Date,"HH:MM"),r.time.s=formatDate(new Date,"SS"),r.time.mdq=formatDate(new Date,"mm\u6708dd\u65E5\uFF0CWWW")},j=()=>{k(),r.setIntervalTime=window.setInterval(()=>{k()},1e3)},L=()=>{n.state.themeConfig.themeConfig.isLockScreen?r.isShowLockScreenIntervalTime=window.setInterval(()=>{if(n.state.themeConfig.themeConfig.lockScreenTime<=1)return r.isShowLockScreen=!0,V(),!1;n.state.themeConfig.themeConfig.lockScreenTime--},1e3):clearInterval(r.isShowLockScreenIntervalTime)},V=()=>{n.state.themeConfig.themeConfig.isDrawer=!1,Local.set("themeConfig",n.state.themeConfig.themeConfig)},z=()=>{n.state.themeConfig.themeConfig.isLockScreen=!1,n.state.themeConfig.themeConfig.lockScreenTime=30,V()};return onMounted(()=>{y(),j(),L()}),onUnmounted(()=>{window.clearInterval(r.setIntervalTime),window.clearInterval(r.isShowLockScreenIntervalTime)}),{layoutLockScreenInputRef:t,onDown:i,onMove:g,onEnd:$,onLockScreenSubmit:z,...toRefs(r)}}}),_withScopeId$1=e=>(pushScopeId("data-v-126dfd22"),e=e(),popScopeId(),e),_hoisted_1$2=_withScopeId$1(()=>createBaseVNode("div",{class:"layout-lock-screen-mask"},null,-1)),_hoisted_2$2={class:"layout-lock-screen"},_hoisted_3$1={class:"layout-lock-screen-date-box"},_hoisted_4$1={class:"layout-lock-screen-date-box-time"},_hoisted_5$1={class:"layout-lock-screen-date-box-minutes"},_hoisted_6$1={class:"layout-lock-screen-date-box-info"},_hoisted_7$1={class:"layout-lock-screen-date-top"},_hoisted_8$1=_withScopeId$1(()=>createBaseVNode("div",{class:"layout-lock-screen-date-top-text"},"\u4E0A\u6ED1\u89E3\u9501",-1)),_hoisted_9$1={class:"layout-lock-screen-login"},_hoisted_10$1={class:"layout-lock-screen-login-box"},_hoisted_11$1=_withScopeId$1(()=>createBaseVNode("div",{class:"layout-lock-screen-login-box-img"},[createBaseVNode("img",{src:"https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=1813762643,1914315241&fm=26&gp=0.jpg"})],-1)),_hoisted_12$1=_withScopeId$1(()=>createBaseVNode("div",{class:"layout-lock-screen-login-box-name"},"Administrator",-1)),_hoisted_13$1={class:"layout-lock-screen-login-box-value"},_hoisted_14$1={class:"layout-lock-screen-login-icon"};function _sfc_render$4(e,t,n,r,i,g){const $=resolveComponent("SvgIcon"),y=resolveComponent("ele-Right"),k=resolveComponent("el-icon"),j=resolveComponent("el-button"),L=resolveComponent("el-input");return withDirectives((openBlock(),createElementBlock("div",null,[_hoisted_1$2,createBaseVNode("div",{class:normalizeClass(["layout-lock-screen-img",{"layout-lock-screen-filter":e.isShowLoockLogin}])},null,2),createBaseVNode("div",_hoisted_2$2,[createBaseVNode("div",{class:"layout-lock-screen-date",ref:"layoutLockScreenDateRef",onMousedown:t[0]||(t[0]=(...V)=>e.onDown&&e.onDown(...V)),onMousemove:t[1]||(t[1]=(...V)=>e.onMove&&e.onMove(...V)),onMouseup:t[2]||(t[2]=(...V)=>e.onEnd&&e.onEnd(...V)),onTouchstart:t[3]||(t[3]=withModifiers((...V)=>e.onDown&&e.onDown(...V),["stop"])),onTouchmove:t[4]||(t[4]=withModifiers((...V)=>e.onMove&&e.onMove(...V),["stop"])),onTouchend:t[5]||(t[5]=withModifiers((...V)=>e.onEnd&&e.onEnd(...V),["stop"]))},[createBaseVNode("div",_hoisted_3$1,[createBaseVNode("div",_hoisted_4$1,[createTextVNode(toDisplayString$1(e.time.hm),1),createBaseVNode("span",_hoisted_5$1,toDisplayString$1(e.time.s),1)]),createBaseVNode("div",_hoisted_6$1,toDisplayString$1(e.time.mdq),1)]),createBaseVNode("div",_hoisted_7$1,[createVNode($,{name:"ele-Top"}),_hoisted_8$1])],544),createVNode(Transition,{name:"el-zoom-in-center"},{default:withCtx(()=>[withDirectives(createBaseVNode("div",_hoisted_9$1,[createBaseVNode("div",_hoisted_10$1,[_hoisted_11$1,_hoisted_12$1,createBaseVNode("div",_hoisted_13$1,[createVNode(L,{placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801",ref:"layoutLockScreenInputRef",modelValue:e.lockScreenPassword,"onUpdate:modelValue":t[6]||(t[6]=V=>e.lockScreenPassword=V),onKeyup:t[7]||(t[7]=withKeys(withModifiers(V=>e.onLockScreenSubmit(),["stop"]),["enter","native"]))},{append:withCtx(()=>[createVNode(j,{onClick:e.onLockScreenSubmit},{default:withCtx(()=>[createVNode(k,{class:"el-input__icon"},{default:withCtx(()=>[createVNode(y)]),_:1})]),_:1},8,["onClick"])]),_:1},8,["modelValue"])])]),createBaseVNode("div",_hoisted_14$1,[createVNode($,{name:"ele-Microphone"}),createVNode($,{name:"ele-AlarmClock"}),createVNode($,{name:"ele-SwitchButton"})])],512),[[vShow,e.isShowLoockLogin]])]),_:1})])],512)),[[vShow,e.isShowLockScreen]])}var LockScreen=_export_sfc(_sfc_main$4,[["render",_sfc_render$4],["__scopeId","data-v-126dfd22"]]);function hexToRgb(e){let t="";if(!/^\#?[0-9A-Fa-f]{6}$/.test(e))return ElMessage.warning("\u8F93\u5165\u9519\u8BEF\u7684hex");e=e.replace("#",""),t=e.match(/../g);for(let r=0;r<3;r++)t[r]=parseInt(t[r],16);return t}function rgbToHex(e,t,n){let r=/^\d{1,3}$/;if(!r.test(e)||!r.test(t)||!r.test(n))return ElMessage.warning("\u8F93\u5165\u9519\u8BEF\u7684rgb\u989C\u8272\u503C");let i=[e.toString(16),t.toString(16),n.toString(16)];for(let g=0;g<3;g++)i[g].length==1&&(i[g]=`0${i[g]}`);return`#${i.join("")}`}function getDarkColor(e,t){if(!/^\#?[0-9A-Fa-f]{6}$/.test(e))return ElMessage.warning("\u8F93\u5165\u9519\u8BEF\u7684hex\u989C\u8272\u503C");let r=hexToRgb(e);for(let i=0;i<3;i++)r[i]=Math.floor(r[i]*(1-t));return rgbToHex(r[0],r[1],r[2])}function getLightColor(e,t){if(!/^\#?[0-9A-Fa-f]{6}$/.test(e))return ElMessage.warning("\u8F93\u5165\u9519\u8BEF\u7684hex\u989C\u8272\u503C");let r=hexToRgb(e);for(let i=0;i<3;i++)r[i]=Math.floor((255-r[i])*t+r[i]);return rgbToHex(r[0],r[1],r[2])}function verifyAndSpace(e){return e.replace(/(^\s*)|(\s*$)/g,"")}const setWatermark=e=>{const t="1.23452384164.123412416";document.getElementById(t)!==null&&document.body.removeChild(document.getElementById(t));const n=document.createElement("canvas");n.width=200,n.height=130;const r=n.getContext("2d");r.rotate(-20*Math.PI/180),r.font="12px Vedana",r.fillStyle="rgba(200, 200, 200, 0.30)",r.textBaseline="Middle",r.fillText(e,n.width/10,n.height/2);const i=document.createElement("div");return i.id=t,i.style.pointerEvents="none",i.style.top="15px",i.style.left="0px",i.style.position="fixed",i.style.zIndex="10000000",i.style.width=`${document.documentElement.clientWidth}px`,i.style.height=`${document.documentElement.clientHeight}px`,i.style.background=`url(${n.toDataURL("image/png")}) left top repeat`,document.body.appendChild(i),t},watermark={set:e=>{let t=setWatermark(e);document.getElementById(t)===null&&(t=setWatermark(e))},del:()=>{let e="1.23452384164.123412416";document.getElementById(e)!==null&&document.body.removeChild(document.getElementById(e))}};var dist={},clipboard$1={exports:{}};/*! +* clipboard.js v2.0.11 +* https://clipboardjs.com/ +* +* Licensed MIT © Zeno Rocha +*/(function(e,t){(function(r,i){e.exports=i()})(commonjsGlobal$1,function(){return function(){var n={686:function(g,$,y){y.d($,{default:function(){return wn}});var k=y(279),j=y.n(k),L=y(370),V=y.n(L),z=y(817),oe=y.n(z);function re(_n){try{return document.execCommand(_n)}catch{return!1}}var ie=function(vn){var Cn=oe()(vn);return re("cut"),Cn},ae=ie;function le(_n){var vn=document.documentElement.getAttribute("dir")==="rtl",Cn=document.createElement("textarea");Cn.style.fontSize="12pt",Cn.style.border="0",Cn.style.padding="0",Cn.style.margin="0",Cn.style.position="absolute",Cn.style[vn?"right":"left"]="-9999px";var xn=window.pageYOffset||document.documentElement.scrollTop;return Cn.style.top="".concat(xn,"px"),Cn.setAttribute("readonly",""),Cn.value=_n,Cn}var de=function(vn,Cn){var xn=le(vn);Cn.container.appendChild(xn);var En=oe()(xn);return re("copy"),xn.remove(),En},pe=function(vn){var Cn=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body},xn="";return typeof vn=="string"?xn=de(vn,Cn):vn instanceof HTMLInputElement&&!["text","search","url","tel","password"].includes(vn==null?void 0:vn.type)?xn=de(vn.value,Cn):(xn=oe()(vn),re("copy")),xn},he=pe;function ue(_n){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?ue=function(Cn){return typeof Cn}:ue=function(Cn){return Cn&&typeof Symbol=="function"&&Cn.constructor===Symbol&&Cn!==Symbol.prototype?"symbol":typeof Cn},ue(_n)}var _e=function(){var vn=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Cn=vn.action,xn=Cn===void 0?"copy":Cn,En=vn.container,Sn=vn.target,Bn=vn.text;if(xn!=="copy"&&xn!=="cut")throw new Error('Invalid "action" value, use either "copy" or "cut"');if(Sn!==void 0)if(Sn&&ue(Sn)==="object"&&Sn.nodeType===1){if(xn==="copy"&&Sn.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if(xn==="cut"&&(Sn.hasAttribute("readonly")||Sn.hasAttribute("disabled")))throw new Error(`Invalid "target" attribute. You can't cut text from elements with "readonly" or "disabled" attributes`)}else throw new Error('Invalid "target" value, use a valid Element');if(Bn)return he(Bn,{container:En});if(Sn)return xn==="cut"?ae(Sn):he(Sn,{container:En})},Ie=_e;function Ce(_n){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Ce=function(Cn){return typeof Cn}:Ce=function(Cn){return Cn&&typeof Symbol=="function"&&Cn.constructor===Symbol&&Cn!==Symbol.prototype?"symbol":typeof Cn},Ce(_n)}function Oe(_n,vn){if(!(_n instanceof vn))throw new TypeError("Cannot call a class as a function")}function $e(_n,vn){for(var Cn=0;Cn0&&arguments[0]!==void 0?arguments[0]:{};this.action=typeof En.action=="function"?En.action:this.defaultAction,this.target=typeof En.target=="function"?En.target:this.defaultTarget,this.text=typeof En.text=="function"?En.text:this.defaultText,this.container=Ce(En.container)==="object"?En.container:document.body}},{key:"listenClick",value:function(En){var Sn=this;this.listener=V()(En,"click",function(Bn){return Sn.onClick(Bn)})}},{key:"onClick",value:function(En){var Sn=En.delegateTarget||En.currentTarget,Bn=this.action(Sn)||"copy",An=Ie({action:Bn,container:this.container,target:this.target(Sn),text:this.text(Sn)});this.emit(An?"success":"error",{action:Bn,text:An,trigger:Sn,clearSelection:function(){Sn&&Sn.focus(),window.getSelection().removeAllRanges()}})}},{key:"defaultAction",value:function(En){return hn("action",En)}},{key:"defaultTarget",value:function(En){var Sn=hn("target",En);if(Sn)return document.querySelector(Sn)}},{key:"defaultText",value:function(En){return hn("text",En)}},{key:"destroy",value:function(){this.listener.destroy()}}],[{key:"copy",value:function(En){var Sn=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body};return he(En,Sn)}},{key:"cut",value:function(En){return ae(En)}},{key:"isSupported",value:function(){var En=arguments.length>0&&arguments[0]!==void 0?arguments[0]:["copy","cut"],Sn=typeof En=="string"?[En]:En,Bn=!!document.queryCommandSupported;return Sn.forEach(function(An){Bn=Bn&&!!document.queryCommandSupported(An)}),Bn}}]),Cn}(j()),wn=Dt},828:function(g){var $=9;if(typeof Element!="undefined"&&!Element.prototype.matches){var y=Element.prototype;y.matches=y.matchesSelector||y.mozMatchesSelector||y.msMatchesSelector||y.oMatchesSelector||y.webkitMatchesSelector}function k(j,L){for(;j&&j.nodeType!==$;){if(typeof j.matches=="function"&&j.matches(L))return j;j=j.parentNode}}g.exports=k},438:function(g,$,y){var k=y(828);function j(z,oe,re,ie,ae){var le=V.apply(this,arguments);return z.addEventListener(re,le,ae),{destroy:function(){z.removeEventListener(re,le,ae)}}}function L(z,oe,re,ie,ae){return typeof z.addEventListener=="function"?j.apply(null,arguments):typeof re=="function"?j.bind(null,document).apply(null,arguments):(typeof z=="string"&&(z=document.querySelectorAll(z)),Array.prototype.map.call(z,function(le){return j(le,oe,re,ie,ae)}))}function V(z,oe,re,ie){return function(ae){ae.delegateTarget=k(ae.target,oe),ae.delegateTarget&&ie.call(z,ae)}}g.exports=L},879:function(g,$){$.node=function(y){return y!==void 0&&y instanceof HTMLElement&&y.nodeType===1},$.nodeList=function(y){var k=Object.prototype.toString.call(y);return y!==void 0&&(k==="[object NodeList]"||k==="[object HTMLCollection]")&&"length"in y&&(y.length===0||$.node(y[0]))},$.string=function(y){return typeof y=="string"||y instanceof String},$.fn=function(y){var k=Object.prototype.toString.call(y);return k==="[object Function]"}},370:function(g,$,y){var k=y(879),j=y(438);function L(re,ie,ae){if(!re&&!ie&&!ae)throw new Error("Missing required arguments");if(!k.string(ie))throw new TypeError("Second argument must be a String");if(!k.fn(ae))throw new TypeError("Third argument must be a Function");if(k.node(re))return V(re,ie,ae);if(k.nodeList(re))return z(re,ie,ae);if(k.string(re))return oe(re,ie,ae);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function V(re,ie,ae){return re.addEventListener(ie,ae),{destroy:function(){re.removeEventListener(ie,ae)}}}function z(re,ie,ae){return Array.prototype.forEach.call(re,function(le){le.addEventListener(ie,ae)}),{destroy:function(){Array.prototype.forEach.call(re,function(le){le.removeEventListener(ie,ae)})}}}function oe(re,ie,ae){return j(document.body,re,ie,ae)}g.exports=L},817:function(g){function $(y){var k;if(y.nodeName==="SELECT")y.focus(),k=y.value;else if(y.nodeName==="INPUT"||y.nodeName==="TEXTAREA"){var j=y.hasAttribute("readonly");j||y.setAttribute("readonly",""),y.select(),y.setSelectionRange(0,y.value.length),j||y.removeAttribute("readonly"),k=y.value}else{y.hasAttribute("contenteditable")&&y.focus();var L=window.getSelection(),V=document.createRange();V.selectNodeContents(y),L.removeAllRanges(),L.addRange(V),k=L.toString()}return k}g.exports=$},279:function(g){function $(){}$.prototype={on:function(y,k,j){var L=this.e||(this.e={});return(L[y]||(L[y]=[])).push({fn:k,ctx:j}),this},once:function(y,k,j){var L=this;function V(){L.off(y,V),k.apply(j,arguments)}return V._=k,this.on(y,V,j)},emit:function(y){var k=[].slice.call(arguments,1),j=((this.e||(this.e={}))[y]||[]).slice(),L=0,V=j.length;for(L;LV?`${V}%`:"-",dateFormatYMD:(j,L,V)=>V?formatDate(new Date(V),"YYYY-mm-dd"):"-",dateFormatYMDHMS:(j,L,V)=>V?formatDate(new Date(V),"YYYY-mm-dd HH:MM:SS"):"-",dateFormatHMS:(j,L,V)=>{if(!V)return"-";let z=0;return typeof j=="number"&&(z=j),typeof V=="number"&&(z=V),formatDate(new Date(z*1e3),"HH:MM:SS")},scaleFormat:(j=0,L=4)=>Number.parseFloat(j).toFixed(L),scale2Format:(j=0)=>Number.parseFloat(j).toFixed(2),copyText:j=>new Promise((L,V)=>{try{t(j),ElMessage.success(e("message.layout.copyTextSuccess")),L(j)}catch(z){ElMessage.error(e("message.layout.copyTextError")),V(z)}})}}var setings_vue_vue_type_style_index_0_scoped_true_lang="";const _sfc_main$3=defineComponent({name:"layoutBreadcrumbSeting",setup(){const{proxy:e}=getCurrentInstance(),t=useStore$1(),{copyText:n}=commonFunction(),r=reactive({isMobile:!1}),i=computed(()=>t.state.themeConfig.themeConfig),g=()=>{document.documentElement.style.setProperty("--el-color-primary-dark-2",`${getDarkColor(i.value.primary,.1)}`),document.documentElement.style.setProperty("--el-color-primary",i.value.primary);for(let Pt=1;Pt<=9;Pt++)document.documentElement.style.setProperty(`--el-color-primary-light-${Pt}`,`${getLightColor(i.value.primary,Pt/10)}`);$e()},$=Pt=>{document.documentElement.style.setProperty(`--next-bg-${Pt}`,i.value[Pt]),y(),k(),j(),$e()},y=()=>{L(".layout-navbars-breadcrumb-index",i.value.isTopBarColorGradual,i.value.topBar)},k=()=>{L(".layout-container .el-aside",i.value.isMenuBarColorGradual,i.value.menuBar)},j=()=>{L(".layout-container .layout-columns-aside",i.value.isColumnsMenuBarColorGradual,i.value.columnsMenuBar)},L=(Pt,jt,bn)=>{setTimeout(()=>{let hn=document.querySelector(Pt);if(!hn)return!1;document.documentElement.style.setProperty("--el-menu-bg-color",document.documentElement.style.getPropertyValue("--next-bg-menuBar")),jt?hn.setAttribute("style",`background:linear-gradient(to bottom left , ${bn}, ${getLightColor(bn,.6)}) !important;`):hn.setAttribute("style",""),qe()},200)},V=()=>{$e()},z=()=>{i.value.isFixedHeaderChange=!i.value.isFixedHeader,qe()},oe=()=>{i.value.isBreadcrumb=!1,qe(),e.mittBus.emit("getBreadcrumbIndexSetFilterRoutes")},re=()=>{i.value.isShowLogoChange=!i.value.isShowLogo,qe()},ie=()=>{i.value.layout==="classic"&&(i.value.isClassicSplitMenu=!1),qe()},ae=()=>{e.mittBus.emit("openOrCloseSortable"),qe()},le=()=>{e.mittBus.emit("openShareTagsView"),qe()},de=Pt=>{Pt==="grayscale"?i.value.isGrayscale&&(i.value.isInvert=!1):i.value.isInvert&&(i.value.isGrayscale=!1);const jt=Pt==="grayscale"?`grayscale(${i.value.isGrayscale?1:0})`:`invert(${i.value.isInvert?"80%":"0%"})`;document.body.setAttribute("style",`filter: ${jt}`),qe()},pe=()=>{const Pt=document.documentElement;i.value.isIsDark?(Pt.setAttribute("data-theme","dark"),document.querySelector("html").className="dark"):(Pt.setAttribute("data-theme",""),document.querySelector("html").className="")},he=()=>{i.value.isWartermark?watermark.set(i.value.wartermarkText):watermark.del(),qe()},ue=Pt=>{if(i.value.wartermarkText=verifyAndSpace(Pt),i.value.wartermarkText==="")return!1;i.value.isWartermark&&watermark.set(i.value.wartermarkText),qe()},_e=Pt=>{if(Local.set("oldLayout",Pt),i.value.layout===Pt)return!1;i.value.layout=Pt,i.value.isDrawer=!1,Ie()},Ie=()=>{$("menuBar"),$("menuBarColor"),$("topBar"),$("topBarColor"),$("columnsMenuBar"),$("columnsMenuBarColor")},Ce=()=>{i.value.isFixedHeaderChange=!1,i.value.isShowLogoChange=!1,i.value.isDrawer=!1,qe()},Oe=()=>{i.value.isDrawer=!0},$e=()=>{qe(),ze()},qe=()=>{Local.remove("themeConfig"),Local.set("themeConfig",i.value)},ze=()=>{Local.set("themeConfigStyle",document.documentElement.style.cssText)},Ue=()=>{let Pt=Local.get("themeConfig");Pt.isDrawer=!1,n(JSON.stringify(Pt)).then(()=>{i.value.isDrawer=!1})},kt=()=>{Local.clear(),window.location.reload()},At=()=>{y(),k(),j()};return onMounted(()=>{nextTick(()=>{Local.get("frequency")||Ie(),Local.set("frequency",1),e.mittBus.on("layoutMobileResize",Pt=>{i.value.layout=Pt.layout,i.value.isDrawer=!1,Ie(),r.isMobile=other.isMobile()}),setTimeout(()=>{i.value.isGrayscale&&de("grayscale"),i.value.isInvert&&de("invert"),i.value.isIsDark&&pe(),he(),Local.get("themeConfig")&&(e.$i18n.locale=Local.get("themeConfig").globalI18n),At()},100)})}),onUnmounted(()=>{e.mittBus.off("layoutMobileResize")}),{openDrawer:Oe,onColorPickerChange:g,onBgColorPickerChange:$,onTopBarGradualChange:y,onMenuBarGradualChange:k,onColumnsMenuBarGradualChange:j,onThemeConfigChange:V,onIsFixedHeaderChange:z,onIsShowLogoChange:re,getThemeConfig:i,onDrawerClose:Ce,onAddFilterChange:de,onAddDarkChange:pe,onWartermarkChange:he,onWartermarkTextInput:ue,onSetLayout:_e,setLocalThemeConfig:qe,onClassicSplitMenuChange:oe,onIsBreadcrumbChange:ie,onSortableTagsViewChange:ae,onShareTagsViewChange:le,onCopyConfigClick:Ue,onResetConfigClick:kt,...toRefs(r)}}}),_withScopeId=e=>(pushScopeId("data-v-f2bad874"),e=e(),popScopeId(),e),_hoisted_1$1={class:"layout-breadcrumb-seting"},_hoisted_2$1={class:"layout-breadcrumb-seting-bar-flex"},_hoisted_3=_withScopeId(()=>createBaseVNode("div",{class:"layout-breadcrumb-seting-bar-flex-label"},"primary",-1)),_hoisted_4={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_5={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_6={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_7={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_8={class:"layout-breadcrumb-seting-bar-flex"},_hoisted_9={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_10={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_11={class:"layout-breadcrumb-seting-bar-flex"},_hoisted_12={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_13={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_14={class:"layout-breadcrumb-seting-bar-flex mt10"},_hoisted_15={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_16={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_17={class:"layout-breadcrumb-seting-bar-flex"},_hoisted_18={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_19={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_20={class:"layout-breadcrumb-seting-bar-flex"},_hoisted_21={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_22={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_23={class:"layout-breadcrumb-seting-bar-flex mt14"},_hoisted_24={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_25={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_26={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_27={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_28={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_29={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_30={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_31={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_32={class:"layout-breadcrumb-seting-bar-flex"},_hoisted_33={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_34={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_35={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_36={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_37={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_38={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_39={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_40={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_41={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_42={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_43={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_44={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_45={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_46={class:"layout-breadcrumb-seting-bar-flex mt11"},_hoisted_47={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_48={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_49={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_50={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_51={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_52={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_53={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_54={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_55={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_56={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_57={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_58={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_59={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_60={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_61={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_62={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_63={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_64={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_65={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_66={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_67={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_68={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_69={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_70={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_71={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_72={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_73={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_74={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_75={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_76={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_77={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_78={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_79={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_80={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_81={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_82={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_83={class:"layout-breadcrumb-seting-bar-flex mt14"},_hoisted_84={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_85={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_86={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_87={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_88={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_89={class:"layout-breadcrumb-seting-bar-flex mt15"},_hoisted_90={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_91={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_92={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_93={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_94={class:"layout-breadcrumb-seting-bar-flex-label"},_hoisted_95={class:"layout-breadcrumb-seting-bar-flex-value"},_hoisted_96={class:"layout-drawer-content-flex"},_hoisted_97=_withScopeId(()=>createBaseVNode("aside",{class:"el-aside",style:{width:"20px"}},null,-1)),_hoisted_98=_withScopeId(()=>createBaseVNode("section",{class:"el-container is-vertical"},[createBaseVNode("header",{class:"el-header",style:{height:"10px"}}),createBaseVNode("main",{class:"el-main"})],-1)),_hoisted_99=[_hoisted_97,_hoisted_98],_hoisted_100={class:"layout-tips-box"},_hoisted_101={class:"layout-tips-txt"},_hoisted_102=_withScopeId(()=>createBaseVNode("header",{class:"el-header",style:{height:"10px"}},null,-1)),_hoisted_103=_withScopeId(()=>createBaseVNode("section",{class:"el-container"},[createBaseVNode("aside",{class:"el-aside",style:{width:"20px"}}),createBaseVNode("section",{class:"el-container is-vertical"},[createBaseVNode("main",{class:"el-main"})])],-1)),_hoisted_104=[_hoisted_102,_hoisted_103],_hoisted_105={class:"layout-tips-box"},_hoisted_106={class:"layout-tips-txt"},_hoisted_107=_withScopeId(()=>createBaseVNode("header",{class:"el-header",style:{height:"10px"}},null,-1)),_hoisted_108=_withScopeId(()=>createBaseVNode("section",{class:"el-container"},[createBaseVNode("section",{class:"el-container is-vertical"},[createBaseVNode("main",{class:"el-main"})])],-1)),_hoisted_109=[_hoisted_107,_hoisted_108],_hoisted_110={class:"layout-tips-box"},_hoisted_111={class:"layout-tips-txt"},_hoisted_112=_withScopeId(()=>createBaseVNode("aside",{class:"el-aside-dark",style:{width:"10px"}},null,-1)),_hoisted_113=_withScopeId(()=>createBaseVNode("aside",{class:"el-aside",style:{width:"20px"}},null,-1)),_hoisted_114=_withScopeId(()=>createBaseVNode("section",{class:"el-container is-vertical"},[createBaseVNode("header",{class:"el-header",style:{height:"10px"}}),createBaseVNode("main",{class:"el-main"})],-1)),_hoisted_115=[_hoisted_112,_hoisted_113,_hoisted_114],_hoisted_116={class:"layout-tips-box"},_hoisted_117={class:"layout-tips-txt"},_hoisted_118={class:"copy-config"};function _sfc_render$3(e,t,n,r,i,g){const $=resolveComponent("el-divider"),y=resolveComponent("el-color-picker"),k=resolveComponent("el-switch"),j=resolveComponent("el-input-number"),L=resolveComponent("el-input"),V=resolveComponent("el-option"),z=resolveComponent("el-select"),oe=resolveComponent("el-alert"),re=resolveComponent("ele-CopyDocument"),ie=resolveComponent("el-icon"),ae=resolveComponent("el-button"),le=resolveComponent("ele-RefreshRight"),de=resolveComponent("el-scrollbar"),pe=resolveComponent("el-drawer");return openBlock(),createElementBlock("div",_hoisted_1$1,[createVNode(pe,{title:e.$t("message.layout.configTitle"),modelValue:e.getThemeConfig.isDrawer,"onUpdate:modelValue":t[47]||(t[47]=he=>e.getThemeConfig.isDrawer=he),direction:"rtl","destroy-on-close":"",size:"260px",onClose:e.onDrawerClose},{default:withCtx(()=>[createVNode(de,{class:"layout-breadcrumb-seting-bar"},{default:withCtx(()=>[createVNode($,{"content-position":"left"},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.$t("message.layout.oneTitle")),1)]),_:1}),createBaseVNode("div",_hoisted_2$1,[_hoisted_3,createBaseVNode("div",_hoisted_4,[createVNode(y,{modelValue:e.getThemeConfig.primary,"onUpdate:modelValue":t[0]||(t[0]=he=>e.getThemeConfig.primary=he),size:"default",onChange:e.onColorPickerChange},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_5,[createBaseVNode("div",_hoisted_6,toDisplayString$1(e.$t("message.layout.fourIsDark")),1),createBaseVNode("div",_hoisted_7,[createVNode(k,{modelValue:e.getThemeConfig.isIsDark,"onUpdate:modelValue":t[1]||(t[1]=he=>e.getThemeConfig.isIsDark=he),size:"small",onChange:e.onAddDarkChange},null,8,["modelValue","onChange"])])]),createVNode($,{"content-position":"left"},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.$t("message.layout.twoTopTitle")),1)]),_:1}),createBaseVNode("div",_hoisted_8,[createBaseVNode("div",_hoisted_9,toDisplayString$1(e.$t("message.layout.twoTopBar")),1),createBaseVNode("div",_hoisted_10,[createVNode(y,{modelValue:e.getThemeConfig.topBar,"onUpdate:modelValue":t[2]||(t[2]=he=>e.getThemeConfig.topBar=he),size:"default",onChange:t[3]||(t[3]=he=>e.onBgColorPickerChange("topBar"))},null,8,["modelValue"])])]),createBaseVNode("div",_hoisted_11,[createBaseVNode("div",_hoisted_12,toDisplayString$1(e.$t("message.layout.twoTopBarColor")),1),createBaseVNode("div",_hoisted_13,[createVNode(y,{modelValue:e.getThemeConfig.topBarColor,"onUpdate:modelValue":t[4]||(t[4]=he=>e.getThemeConfig.topBarColor=he),size:"default",onChange:t[5]||(t[5]=he=>e.onBgColorPickerChange("topBarColor"))},null,8,["modelValue"])])]),createBaseVNode("div",_hoisted_14,[createBaseVNode("div",_hoisted_15,toDisplayString$1(e.$t("message.layout.twoIsTopBarColorGradual")),1),createBaseVNode("div",_hoisted_16,[createVNode(k,{modelValue:e.getThemeConfig.isTopBarColorGradual,"onUpdate:modelValue":t[6]||(t[6]=he=>e.getThemeConfig.isTopBarColorGradual=he),size:"small",onChange:e.onTopBarGradualChange},null,8,["modelValue","onChange"])])]),createVNode($,{"content-position":"left"},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.$t("message.layout.twoMenuTitle")),1)]),_:1}),createBaseVNode("div",_hoisted_17,[createBaseVNode("div",_hoisted_18,toDisplayString$1(e.$t("message.layout.twoMenuBar")),1),createBaseVNode("div",_hoisted_19,[createVNode(y,{modelValue:e.getThemeConfig.menuBar,"onUpdate:modelValue":t[7]||(t[7]=he=>e.getThemeConfig.menuBar=he),size:"default",onChange:t[8]||(t[8]=he=>e.onBgColorPickerChange("menuBar"))},null,8,["modelValue"])])]),createBaseVNode("div",_hoisted_20,[createBaseVNode("div",_hoisted_21,toDisplayString$1(e.$t("message.layout.twoMenuBarColor")),1),createBaseVNode("div",_hoisted_22,[createVNode(y,{modelValue:e.getThemeConfig.menuBarColor,"onUpdate:modelValue":t[9]||(t[9]=he=>e.getThemeConfig.menuBarColor=he),size:"default",onChange:t[10]||(t[10]=he=>e.onBgColorPickerChange("menuBarColor"))},null,8,["modelValue"])])]),createBaseVNode("div",_hoisted_23,[createBaseVNode("div",_hoisted_24,toDisplayString$1(e.$t("message.layout.twoIsMenuBarColorGradual")),1),createBaseVNode("div",_hoisted_25,[createVNode(k,{modelValue:e.getThemeConfig.isMenuBarColorGradual,"onUpdate:modelValue":t[11]||(t[11]=he=>e.getThemeConfig.isMenuBarColorGradual=he),size:"small",onChange:e.onMenuBarGradualChange},null,8,["modelValue","onChange"])])]),createVNode($,{"content-position":"left",style:normalizeStyle({opacity:e.getThemeConfig.layout!=="columns"?.5:1})},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.$t("message.layout.twoColumnsTitle")),1)]),_:1},8,["style"]),createBaseVNode("div",{class:"layout-breadcrumb-seting-bar-flex",style:normalizeStyle({opacity:e.getThemeConfig.layout!=="columns"?.5:1})},[createBaseVNode("div",_hoisted_26,toDisplayString$1(e.$t("message.layout.twoColumnsMenuBar")),1),createBaseVNode("div",_hoisted_27,[createVNode(y,{modelValue:e.getThemeConfig.columnsMenuBar,"onUpdate:modelValue":t[12]||(t[12]=he=>e.getThemeConfig.columnsMenuBar=he),size:"default",onChange:t[13]||(t[13]=he=>e.onBgColorPickerChange("columnsMenuBar")),disabled:e.getThemeConfig.layout!=="columns"},null,8,["modelValue","disabled"])])],4),createBaseVNode("div",{class:"layout-breadcrumb-seting-bar-flex",style:normalizeStyle({opacity:e.getThemeConfig.layout!=="columns"?.5:1})},[createBaseVNode("div",_hoisted_28,toDisplayString$1(e.$t("message.layout.twoColumnsMenuBarColor")),1),createBaseVNode("div",_hoisted_29,[createVNode(y,{modelValue:e.getThemeConfig.columnsMenuBarColor,"onUpdate:modelValue":t[14]||(t[14]=he=>e.getThemeConfig.columnsMenuBarColor=he),size:"default",onChange:t[15]||(t[15]=he=>e.onBgColorPickerChange("columnsMenuBarColor")),disabled:e.getThemeConfig.layout!=="columns"},null,8,["modelValue","disabled"])])],4),createBaseVNode("div",{class:"layout-breadcrumb-seting-bar-flex mt14",style:normalizeStyle({opacity:e.getThemeConfig.layout!=="columns"?.5:1})},[createBaseVNode("div",_hoisted_30,toDisplayString$1(e.$t("message.layout.twoIsColumnsMenuBarColorGradual")),1),createBaseVNode("div",_hoisted_31,[createVNode(k,{modelValue:e.getThemeConfig.isColumnsMenuBarColorGradual,"onUpdate:modelValue":t[16]||(t[16]=he=>e.getThemeConfig.isColumnsMenuBarColorGradual=he),size:"small",onChange:e.onColumnsMenuBarGradualChange,disabled:e.getThemeConfig.layout!=="columns"},null,8,["modelValue","onChange","disabled"])])],4),createVNode($,{"content-position":"left"},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.$t("message.layout.threeTitle")),1)]),_:1}),createBaseVNode("div",_hoisted_32,[createBaseVNode("div",_hoisted_33,toDisplayString$1(e.$t("message.layout.threeIsCollapse")),1),createBaseVNode("div",_hoisted_34,[createVNode(k,{modelValue:e.getThemeConfig.isCollapse,"onUpdate:modelValue":t[17]||(t[17]=he=>e.getThemeConfig.isCollapse=he),size:"small",onChange:e.onThemeConfigChange},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_35,[createBaseVNode("div",_hoisted_36,toDisplayString$1(e.$t("message.layout.threeIsUniqueOpened")),1),createBaseVNode("div",_hoisted_37,[createVNode(k,{modelValue:e.getThemeConfig.isUniqueOpened,"onUpdate:modelValue":t[18]||(t[18]=he=>e.getThemeConfig.isUniqueOpened=he),size:"small",onChange:e.setLocalThemeConfig},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_38,[createBaseVNode("div",_hoisted_39,toDisplayString$1(e.$t("message.layout.threeIsFixedHeader")),1),createBaseVNode("div",_hoisted_40,[createVNode(k,{modelValue:e.getThemeConfig.isFixedHeader,"onUpdate:modelValue":t[19]||(t[19]=he=>e.getThemeConfig.isFixedHeader=he),size:"small",onChange:e.onIsFixedHeaderChange},null,8,["modelValue","onChange"])])]),createBaseVNode("div",{class:"layout-breadcrumb-seting-bar-flex mt15",style:normalizeStyle({opacity:e.getThemeConfig.layout!=="classic"?.5:1})},[createBaseVNode("div",_hoisted_41,toDisplayString$1(e.$t("message.layout.threeIsClassicSplitMenu")),1),createBaseVNode("div",_hoisted_42,[createVNode(k,{modelValue:e.getThemeConfig.isClassicSplitMenu,"onUpdate:modelValue":t[20]||(t[20]=he=>e.getThemeConfig.isClassicSplitMenu=he),disabled:e.getThemeConfig.layout!=="classic",size:"small",onChange:e.onClassicSplitMenuChange},null,8,["modelValue","disabled","onChange"])])],4),createBaseVNode("div",_hoisted_43,[createBaseVNode("div",_hoisted_44,toDisplayString$1(e.$t("message.layout.threeIsLockScreen")),1),createBaseVNode("div",_hoisted_45,[createVNode(k,{modelValue:e.getThemeConfig.isLockScreen,"onUpdate:modelValue":t[21]||(t[21]=he=>e.getThemeConfig.isLockScreen=he),size:"small",onChange:e.setLocalThemeConfig},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_46,[createBaseVNode("div",_hoisted_47,toDisplayString$1(e.$t("message.layout.threeLockScreenTime")),1),createBaseVNode("div",_hoisted_48,[createVNode(j,{modelValue:e.getThemeConfig.lockScreenTime,"onUpdate:modelValue":t[22]||(t[22]=he=>e.getThemeConfig.lockScreenTime=he),"controls-position":"right",min:1,max:9999,onChange:e.setLocalThemeConfig,size:"default",style:{width:"90px"}},null,8,["modelValue","onChange"])])]),createVNode($,{"content-position":"left"},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.$t("message.layout.fourTitle")),1)]),_:1}),createBaseVNode("div",_hoisted_49,[createBaseVNode("div",_hoisted_50,toDisplayString$1(e.$t("message.layout.fourIsShowLogo")),1),createBaseVNode("div",_hoisted_51,[createVNode(k,{modelValue:e.getThemeConfig.isShowLogo,"onUpdate:modelValue":t[23]||(t[23]=he=>e.getThemeConfig.isShowLogo=he),size:"small",onChange:e.onIsShowLogoChange},null,8,["modelValue","onChange"])])]),createBaseVNode("div",{class:"layout-breadcrumb-seting-bar-flex mt15",style:normalizeStyle({opacity:e.getThemeConfig.layout==="classic"||e.getThemeConfig.layout==="transverse"?.5:1})},[createBaseVNode("div",_hoisted_52,toDisplayString$1(e.$t("message.layout.fourIsBreadcrumb")),1),createBaseVNode("div",_hoisted_53,[createVNode(k,{modelValue:e.getThemeConfig.isBreadcrumb,"onUpdate:modelValue":t[24]||(t[24]=he=>e.getThemeConfig.isBreadcrumb=he),disabled:e.getThemeConfig.layout==="classic"||e.getThemeConfig.layout==="transverse",size:"small",onChange:e.onIsBreadcrumbChange},null,8,["modelValue","disabled","onChange"])])],4),createBaseVNode("div",_hoisted_54,[createBaseVNode("div",_hoisted_55,toDisplayString$1(e.$t("message.layout.fourIsBreadcrumbIcon")),1),createBaseVNode("div",_hoisted_56,[createVNode(k,{modelValue:e.getThemeConfig.isBreadcrumbIcon,"onUpdate:modelValue":t[25]||(t[25]=he=>e.getThemeConfig.isBreadcrumbIcon=he),size:"small",onChange:e.setLocalThemeConfig},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_57,[createBaseVNode("div",_hoisted_58,toDisplayString$1(e.$t("message.layout.fourIsTagsview")),1),createBaseVNode("div",_hoisted_59,[createVNode(k,{modelValue:e.getThemeConfig.isTagsview,"onUpdate:modelValue":t[26]||(t[26]=he=>e.getThemeConfig.isTagsview=he),size:"small",onChange:e.setLocalThemeConfig},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_60,[createBaseVNode("div",_hoisted_61,toDisplayString$1(e.$t("message.layout.fourIsTagsviewIcon")),1),createBaseVNode("div",_hoisted_62,[createVNode(k,{modelValue:e.getThemeConfig.isTagsviewIcon,"onUpdate:modelValue":t[27]||(t[27]=he=>e.getThemeConfig.isTagsviewIcon=he),size:"small",onChange:e.setLocalThemeConfig},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_63,[createBaseVNode("div",_hoisted_64,toDisplayString$1(e.$t("message.layout.fourIsCacheTagsView")),1),createBaseVNode("div",_hoisted_65,[createVNode(k,{modelValue:e.getThemeConfig.isCacheTagsView,"onUpdate:modelValue":t[28]||(t[28]=he=>e.getThemeConfig.isCacheTagsView=he),size:"small",onChange:e.setLocalThemeConfig},null,8,["modelValue","onChange"])])]),createBaseVNode("div",{class:"layout-breadcrumb-seting-bar-flex mt15",style:normalizeStyle({opacity:e.isMobile?.5:1})},[createBaseVNode("div",_hoisted_66,toDisplayString$1(e.$t("message.layout.fourIsSortableTagsView")),1),createBaseVNode("div",_hoisted_67,[createVNode(k,{modelValue:e.getThemeConfig.isSortableTagsView,"onUpdate:modelValue":t[29]||(t[29]=he=>e.getThemeConfig.isSortableTagsView=he),disabled:!!e.isMobile,size:"small",onChange:e.onSortableTagsViewChange},null,8,["modelValue","disabled","onChange"])])],4),createBaseVNode("div",_hoisted_68,[createBaseVNode("div",_hoisted_69,toDisplayString$1(e.$t("message.layout.fourIsShareTagsView")),1),createBaseVNode("div",_hoisted_70,[createVNode(k,{modelValue:e.getThemeConfig.isShareTagsView,"onUpdate:modelValue":t[30]||(t[30]=he=>e.getThemeConfig.isShareTagsView=he),size:"small",onChange:e.onShareTagsViewChange},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_71,[createBaseVNode("div",_hoisted_72,toDisplayString$1(e.$t("message.layout.fourIsFooter")),1),createBaseVNode("div",_hoisted_73,[createVNode(k,{modelValue:e.getThemeConfig.isFooter,"onUpdate:modelValue":t[31]||(t[31]=he=>e.getThemeConfig.isFooter=he),size:"small",onChange:e.setLocalThemeConfig},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_74,[createBaseVNode("div",_hoisted_75,toDisplayString$1(e.$t("message.layout.fourIsGrayscale")),1),createBaseVNode("div",_hoisted_76,[createVNode(k,{modelValue:e.getThemeConfig.isGrayscale,"onUpdate:modelValue":t[32]||(t[32]=he=>e.getThemeConfig.isGrayscale=he),size:"small",onChange:t[33]||(t[33]=he=>e.onAddFilterChange("grayscale"))},null,8,["modelValue"])])]),createBaseVNode("div",_hoisted_77,[createBaseVNode("div",_hoisted_78,toDisplayString$1(e.$t("message.layout.fourIsInvert")),1),createBaseVNode("div",_hoisted_79,[createVNode(k,{modelValue:e.getThemeConfig.isInvert,"onUpdate:modelValue":t[34]||(t[34]=he=>e.getThemeConfig.isInvert=he),size:"small",onChange:t[35]||(t[35]=he=>e.onAddFilterChange("invert"))},null,8,["modelValue"])])]),createBaseVNode("div",_hoisted_80,[createBaseVNode("div",_hoisted_81,toDisplayString$1(e.$t("message.layout.fourIsWartermark")),1),createBaseVNode("div",_hoisted_82,[createVNode(k,{modelValue:e.getThemeConfig.isWartermark,"onUpdate:modelValue":t[36]||(t[36]=he=>e.getThemeConfig.isWartermark=he),size:"small",onChange:e.onWartermarkChange},null,8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_83,[createBaseVNode("div",_hoisted_84,toDisplayString$1(e.$t("message.layout.fourWartermarkText")),1),createBaseVNode("div",_hoisted_85,[createVNode(L,{modelValue:e.getThemeConfig.wartermarkText,"onUpdate:modelValue":t[37]||(t[37]=he=>e.getThemeConfig.wartermarkText=he),size:"default",style:{width:"90px"},onInput:t[38]||(t[38]=he=>e.onWartermarkTextInput(he))},null,8,["modelValue"])])]),createVNode($,{"content-position":"left"},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.$t("message.layout.fiveTitle")),1)]),_:1}),createBaseVNode("div",_hoisted_86,[createBaseVNode("div",_hoisted_87,toDisplayString$1(e.$t("message.layout.fiveTagsStyle")),1),createBaseVNode("div",_hoisted_88,[createVNode(z,{modelValue:e.getThemeConfig.tagsStyle,"onUpdate:modelValue":t[39]||(t[39]=he=>e.getThemeConfig.tagsStyle=he),placeholder:"\u8BF7\u9009\u62E9",size:"default",style:{width:"90px"},onChange:e.setLocalThemeConfig},{default:withCtx(()=>[createVNode(V,{label:"\u98CE\u683C1",value:"tags-style-one"}),createVNode(V,{label:"\u98CE\u683C4",value:"tags-style-four"}),createVNode(V,{label:"\u98CE\u683C5",value:"tags-style-five"})]),_:1},8,["modelValue","onChange"])])]),createBaseVNode("div",_hoisted_89,[createBaseVNode("div",_hoisted_90,toDisplayString$1(e.$t("message.layout.fiveAnimation")),1),createBaseVNode("div",_hoisted_91,[createVNode(z,{modelValue:e.getThemeConfig.animation,"onUpdate:modelValue":t[40]||(t[40]=he=>e.getThemeConfig.animation=he),placeholder:"\u8BF7\u9009\u62E9",size:"default",style:{width:"90px"},onChange:e.setLocalThemeConfig},{default:withCtx(()=>[createVNode(V,{label:"slide-right",value:"slide-right"}),createVNode(V,{label:"slide-left",value:"slide-left"}),createVNode(V,{label:"opacitys",value:"opacitys"})]),_:1},8,["modelValue","onChange"])])]),createBaseVNode("div",{class:"layout-breadcrumb-seting-bar-flex mt15",style:normalizeStyle({opacity:e.getThemeConfig.layout!=="columns"?.5:1})},[createBaseVNode("div",_hoisted_92,toDisplayString$1(e.$t("message.layout.fiveColumnsAsideStyle")),1),createBaseVNode("div",_hoisted_93,[createVNode(z,{modelValue:e.getThemeConfig.columnsAsideStyle,"onUpdate:modelValue":t[41]||(t[41]=he=>e.getThemeConfig.columnsAsideStyle=he),placeholder:"\u8BF7\u9009\u62E9",size:"default",style:{width:"90px"},disabled:e.getThemeConfig.layout!=="columns",onChange:e.setLocalThemeConfig},{default:withCtx(()=>[createVNode(V,{label:"\u5706\u89D2",value:"columns-round"}),createVNode(V,{label:"\u5361\u7247",value:"columns-card"})]),_:1},8,["modelValue","disabled","onChange"])])],4),createBaseVNode("div",{class:"layout-breadcrumb-seting-bar-flex mt15 mb27",style:normalizeStyle({opacity:e.getThemeConfig.layout!=="columns"?.5:1})},[createBaseVNode("div",_hoisted_94,toDisplayString$1(e.$t("message.layout.fiveColumnsAsideLayout")),1),createBaseVNode("div",_hoisted_95,[createVNode(z,{modelValue:e.getThemeConfig.columnsAsideLayout,"onUpdate:modelValue":t[42]||(t[42]=he=>e.getThemeConfig.columnsAsideLayout=he),placeholder:"\u8BF7\u9009\u62E9",size:"default",style:{width:"90px"},disabled:e.getThemeConfig.layout!=="columns",onChange:e.setLocalThemeConfig},{default:withCtx(()=>[createVNode(V,{label:"\u6C34\u5E73",value:"columns-horizontal"}),createVNode(V,{label:"\u5782\u76F4",value:"columns-vertical"})]),_:1},8,["modelValue","disabled","onChange"])])],4),createVNode($,{"content-position":"left"},{default:withCtx(()=>[createTextVNode(toDisplayString$1(e.$t("message.layout.sixTitle")),1)]),_:1}),createBaseVNode("div",_hoisted_96,[createBaseVNode("div",{class:"layout-drawer-content-item",onClick:t[43]||(t[43]=he=>e.onSetLayout("defaults"))},[createBaseVNode("section",{class:normalizeClass(["el-container el-circular",{"drawer-layout-active":e.getThemeConfig.layout==="defaults"}])},_hoisted_99,2),createBaseVNode("div",{class:normalizeClass(["layout-tips-warp",{"layout-tips-warp-active":e.getThemeConfig.layout==="defaults"}])},[createBaseVNode("div",_hoisted_100,[createBaseVNode("p",_hoisted_101,toDisplayString$1(e.$t("message.layout.sixDefaults")),1)])],2)]),createBaseVNode("div",{class:"layout-drawer-content-item",onClick:t[44]||(t[44]=he=>e.onSetLayout("classic"))},[createBaseVNode("section",{class:normalizeClass(["el-container is-vertical el-circular",{"drawer-layout-active":e.getThemeConfig.layout==="classic"}])},_hoisted_104,2),createBaseVNode("div",{class:normalizeClass(["layout-tips-warp",{"layout-tips-warp-active":e.getThemeConfig.layout==="classic"}])},[createBaseVNode("div",_hoisted_105,[createBaseVNode("p",_hoisted_106,toDisplayString$1(e.$t("message.layout.sixClassic")),1)])],2)]),createBaseVNode("div",{class:"layout-drawer-content-item",onClick:t[45]||(t[45]=he=>e.onSetLayout("transverse"))},[createBaseVNode("section",{class:normalizeClass(["el-container is-vertical el-circular",{"drawer-layout-active":e.getThemeConfig.layout==="transverse"}])},_hoisted_109,2),createBaseVNode("div",{class:normalizeClass(["layout-tips-warp",{"layout-tips-warp-active":e.getThemeConfig.layout==="transverse"}])},[createBaseVNode("div",_hoisted_110,[createBaseVNode("p",_hoisted_111,toDisplayString$1(e.$t("message.layout.sixTransverse")),1)])],2)]),createBaseVNode("div",{class:"layout-drawer-content-item",onClick:t[46]||(t[46]=he=>e.onSetLayout("columns"))},[createBaseVNode("section",{class:normalizeClass(["el-container el-circular",{"drawer-layout-active":e.getThemeConfig.layout==="columns"}])},_hoisted_115,2),createBaseVNode("div",{class:normalizeClass(["layout-tips-warp",{"layout-tips-warp-active":e.getThemeConfig.layout==="columns"}])},[createBaseVNode("div",_hoisted_116,[createBaseVNode("p",_hoisted_117,toDisplayString$1(e.$t("message.layout.sixColumns")),1)])],2)])]),createBaseVNode("div",_hoisted_118,[createVNode(oe,{title:e.$t("message.layout.tipText"),type:"warning",closable:!1},null,8,["title"]),createVNode(ae,{size:"default",class:"copy-config-btn",type:"primary",ref:"copyConfigBtnRef",onClick:e.onCopyConfigClick},{default:withCtx(()=>[createVNode(ie,{class:"mr5"},{default:withCtx(()=>[createVNode(re)]),_:1}),createTextVNode(" "+toDisplayString$1(e.$t("message.layout.copyText")),1)]),_:1},8,["onClick"]),createVNode(ae,{size:"default",class:"copy-config-btn-reset",type:"info",onClick:e.onResetConfigClick},{default:withCtx(()=>[createVNode(ie,{class:"mr5"},{default:withCtx(()=>[createVNode(le)]),_:1}),createTextVNode(" "+toDisplayString$1(e.$t("message.layout.resetText")),1)]),_:1},8,["onClick"])])]),_:1})]),_:1},8,["title","modelValue","onClose"])])}var Setings=_export_sfc(_sfc_main$3,[["render",_sfc_render$3],["__scopeId","data-v-f2bad874"]]),closeFull_vue_vue_type_style_index_0_scoped_true_lang="";const _sfc_main$2=defineComponent({name:"layoutCloseFull",setup(){const e=useStore$1();return{isTagsViewCurrenFull:computed(()=>e.state.tagsViewRoutes.isTagsViewCurrenFull),onCloseFullscreen:()=>{e.dispatch("tagsViewRoutes/setCurrenFullscreen",!1)}}}}),_hoisted_1={key:0,class:"layout-navbars-close-full"},_hoisted_2=["title"];function _sfc_render$2(e,t,n,r,i,g){const $=resolveComponent("SvgIcon");return e.isTagsViewCurrenFull?(openBlock(),createElementBlock("div",_hoisted_1,[createBaseVNode("div",{class:"layout-navbars-close-full-box",title:e.$t("message.tagsView.closeFullscreen"),onClick:t[0]||(t[0]=(...y)=>e.onCloseFullscreen&&e.onCloseFullscreen(...y))},[createVNode($,{name:"ele-Close"})],8,_hoisted_2)])):createCommentVNode("",!0)}var CloseFull=_export_sfc(_sfc_main$2,[["render",_sfc_render$2],["__scopeId","data-v-66ce2742"]]);sessionStorage.setItem("comeTime",Date.now().toString());const _sfc_main$1=defineComponent({name:"app",components:{LockScreen,Setings,CloseFull},created(){api.sysinfo().then(e=>{localStorage.setItem("sysinfo",JSON.stringify(e))})},setup(){const{proxy:e}=getCurrentInstance(),t=ref(),n=useRoute(),r=useStore$1(),i=reactive({i18nLocale:null}),g=computed(()=>r.state.themeConfig.themeConfig),$=computed(()=>other.globalComponentSize),y=()=>{t.value.openDrawer()};return onBeforeMount(()=>{setIntroduction.cssCdn(),setIntroduction.jsCdn()}),onMounted(()=>{nextTick(()=>{e.mittBus.on("openSetingsDrawer",()=>{y()}),e.mittBus.on("getI18nConfig",k=>{i.i18nLocale=k}),Local.get("themeConfig")&&(r.dispatch("themeConfig/setThemeConfig",Local.get("themeConfig")),document.documentElement.style.cssText=Local.get("themeConfigStyle")),Session.get("isTagsViewCurrenFull")&&r.dispatch("tagsViewRoutes/setCurrenFullscreen",Session.get("isTagsViewCurrenFull"))})}),onUnmounted(()=>{e.mittBus.off("openSetingsDrawer",()=>{}),e.mittBus.off("getI18nConfig",()=>{})}),watch(()=>n.path,()=>{other.useTitle()}),{setingsRef:t,getThemeConfig:g,getGlobalComponentSize:$,...toRefs(i)}}});function _sfc_render$1(e,t,n,r,i,g){const $=resolveComponent("router-view"),y=resolveComponent("LockScreen"),k=resolveComponent("Setings"),j=resolveComponent("CloseFull"),L=resolveComponent("el-config-provider");return openBlock(),createBlock(L,{size:e.getGlobalComponentSize,locale:e.i18nLocale},{default:withCtx(()=>[withDirectives(createVNode($,null,null,512),[[vShow,e.getThemeConfig.lockScreenTime!==0]]),e.getThemeConfig.isLockScreen?(openBlock(),createBlock(y,{key:0})):createCommentVNode("",!0),withDirectives(createVNode(k,{ref:"setingsRef"},null,512),[[vShow,e.getThemeConfig.lockScreenTime!==0]]),createVNode(j)]),_:1},8,["size","locale"])}var App=_export_sfc(_sfc_main$1,[["render",_sfc_render$1]]);function smallInBig(e,t){return t.every(n=>e.includes(n))}function judementSameArr(e,t){let n=0;const r=t.length;for(let i in t)for(let g in e)t[i]===e[g]&&n++;return n===r}function isObjectValueEqual(e,t){if(!e||!t)return!1;let n=Object.getOwnPropertyNames(e),r=Object.getOwnPropertyNames(t);if(n.length!=r.length)return!1;for(let i=0;i{r.value.map(y=>{$===y&&(g=!0)})}),g||n.classList.add("v-disabled")}}),e.directive("auth-all",{mounted(n,r){const i=router.currentRoute.value.meta.buttons;i.includes(t)||!smallInBig(i,r.value)&&n.classList.add("v-disabled")}})}function colDirective(e){const t="*/*/*";e.directive("col",{mounted(n,r){const i=router.currentRoute.value.meta.columns;i.includes(t)||i.includes(r.value)||n.parentNode.removeChild(n)}}),e.directive("cols",{mounted(n,r){const i=router.currentRoute.value.meta.columns;if(i.includes(t))return;let g=!1;i.map($=>{r.value.map(y=>{$===y&&(g=!0)})}),g||n.parentNode.removeChild(n)}}),e.directive("col-all",{mounted(n,r){const i=router.currentRoute.value.meta.columns;i.includes(t)||!smallInBig(i,r.value)&&n.parentNode.removeChild(n)}})}function wavesDirective(e){e.directive("waves",{mounted(t,n){t.classList.add("waves-effect"),n.value&&t.classList.add(`waves-${n.value}`);function r(g){let $="";for(let y in g)g.hasOwnProperty(y)&&($+=`${y}:${g[y]};`);return $}function i(g){let $=document.createElement("div");$.classList.add("waves-ripple"),t.appendChild($);let y={left:`${g.layerX}px`,top:`${g.layerY}px`,opacity:1,transform:`scale(${t.clientWidth/100*10})`,"transition-duration":"750ms","transition-timing-function":"cubic-bezier(0.250, 0.460, 0.450, 0.940)"};$.setAttribute("style",r(y)),setTimeout(()=>{$.setAttribute("style",r({opacity:0,transform:y.transform,left:y.left,top:y.top})),setTimeout(()=>{$&&t.removeChild($)},750)},450)}t.addEventListener("mousedown",i,!1)},unmounted(t){t.addEventListener("mousedown",()=>{})}})}function dragDirective(e){e.directive("drag",{mounted(t,n){if(!n.value)return!1;const r=document.querySelector(n.value[0]),i=document.querySelector(n.value[1]);i.onmouseover=()=>i.style.cursor="move";function g(y,k){const j=k==="pc"?y.clientX-i.offsetLeft:y.touches[0].clientX-i.offsetLeft,L=k==="pc"?y.clientY-i.offsetTop:y.touches[0].clientY-i.offsetTop,V=document.body.clientWidth,z=document.documentElement.clientHeight,oe=r.offsetWidth,re=r.offsetHeight,ie=r.offsetLeft,ae=V-r.offsetLeft-oe,le=r.offsetTop,de=z-r.offsetTop-re;let pe=getComputedStyle(r).left,he=getComputedStyle(r).top;return pe.includes("%")?(pe=+document.body.clientWidth*(+pe.replace(/\%/g,"")/100),he=+document.body.clientHeight*(+he.replace(/\%/g,"")/100)):(pe=+pe.replace(/\px/g,""),he=+he.replace(/\px/g,"")),{disX:j,disY:L,minDragDomLeft:ie,maxDragDomLeft:ae,minDragDomTop:le,maxDragDomTop:de,styL:pe,styT:he}}function $(y,k,j){let{disX:L,disY:V,minDragDomLeft:z,maxDragDomLeft:oe,minDragDomTop:re,maxDragDomTop:ie,styL:ae,styT:le}=j,de=k==="pc"?y.clientX-L:y.touches[0].clientX-L,pe=k==="pc"?y.clientY-V:y.touches[0].clientY-V;-de>z?de=-z:de>oe&&(de=oe),-pe>re?pe=-re:pe>ie&&(pe=ie),r.style.cssText+=`;left:${de+ae}px;top:${pe+le}px;`}i.onmousedown=y=>{const k=g(y,"pc");document.onmousemove=j=>{$(j,"pc",k)},document.onmouseup=()=>{document.onmousemove=null,document.onmouseup=null}},i.ontouchstart=y=>{const k=g(y,"app");document.ontouchmove=j=>{$(j,"app",k)},document.ontouchend=()=>{document.ontouchmove=null,document.ontouchend=null}}}})}function directive(e){authDirective(e),colDirective(e),wavesDirective(e),dragDirective(e)}var index$2="",cssVars="",index$1="";function mitt(e){return{all:e=e||new Map,on:function(t,n){var r=e.get(t);r?r.push(n):e.set(t,[n])},off:function(t,n){var r=e.get(t);r&&(n?r.splice(r.indexOf(n)>>>0,1):e.set(t,[]))},emit:function(t,n){var r=e.get(t);r&&r.slice().map(function(i){i(n)}),(r=e.get("*"))&&r.slice().map(function(i){i(t,n)})}}}var vueGridLayout_common={exports:{}};/*! vue-grid-layout - 3.0.0-beta1 | (c) 2015, 2021 Gustavo Santos (JBay Solutions) (http://www.jbaysolutions.com) | https://github.com/jbaysolutions/vue-grid-layout */(function(e){e.exports=function(t){var n={};function r(i){if(n[i])return n[i].exports;var g=n[i]={i,l:!1,exports:{}};return t[i].call(g.exports,g,g.exports,r),g.l=!0,g.exports}return r.m=t,r.c=n,r.d=function(i,g,$){r.o(i,g)||Object.defineProperty(i,g,{enumerable:!0,get:$})},r.r=function(i){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(i,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(i,"__esModule",{value:!0})},r.t=function(i,g){if(g&1&&(i=r(i)),g&8||g&4&&typeof i=="object"&&i&&i.__esModule)return i;var $=Object.create(null);if(r.r($),Object.defineProperty($,"default",{enumerable:!0,value:i}),g&2&&typeof i!="string")for(var y in i)r.d($,y,function(k){return i[k]}.bind(null,y));return $},r.n=function(i){var g=i&&i.__esModule?function(){return i.default}:function(){return i};return r.d(g,"a",g),g},r.o=function(i,g){return Object.prototype.hasOwnProperty.call(i,g)},r.p="",r(r.s="fb15")}({"01f9":function(t,n,r){var i=r("2d00"),g=r("5ca1"),$=r("2aba"),y=r("32e9"),k=r("84f2"),j=r("41a0"),L=r("7f20"),V=r("38fd"),z=r("2b4c")("iterator"),oe=!([].keys&&"next"in[].keys()),re="@@iterator",ie="keys",ae="values",le=function(){return this};t.exports=function(de,pe,he,ue,_e,Ie,Ce){j(he,pe,ue);var Oe=function(wn){if(!oe&&wn in Ue)return Ue[wn];switch(wn){case ie:return function(){return new he(this,wn)};case ae:return function(){return new he(this,wn)}}return function(){return new he(this,wn)}},$e=pe+" Iterator",qe=_e==ae,ze=!1,Ue=de.prototype,kt=Ue[z]||Ue[re]||_e&&Ue[_e],At=kt||Oe(_e),Pt=_e?qe?Oe("entries"):At:void 0,jt=pe=="Array"&&Ue.entries||kt,bn,hn,Dt;if(jt&&(Dt=V(jt.call(new de)),Dt!==Object.prototype&&Dt.next&&(L(Dt,$e,!0),!i&&typeof Dt[z]!="function"&&y(Dt,z,le))),qe&&kt&&kt.name!==ae&&(ze=!0,At=function(){return kt.call(this)}),(!i||Ce)&&(oe||ze||!Ue[z])&&y(Ue,z,At),k[pe]=At,k[$e]=le,_e)if(bn={values:qe?At:Oe(ae),keys:Ie?At:Oe(ie),entries:Pt},Ce)for(hn in bn)hn in Ue||$(Ue,hn,bn[hn]);else g(g.P+g.F*(oe||ze),pe,bn);return bn}},"02f4":function(t,n,r){var i=r("4588"),g=r("be13");t.exports=function($){return function(y,k){var j=String(g(y)),L=i(k),V=j.length,z,oe;return L<0||L>=V?$?"":void 0:(z=j.charCodeAt(L),z<55296||z>56319||L+1===V||(oe=j.charCodeAt(L+1))<56320||oe>57343?$?j.charAt(L):z:$?j.slice(L,L+2):(z-55296<<10)+(oe-56320)+65536)}}},"0390":function(t,n,r){var i=r("02f4")(!0);t.exports=function(g,$,y){return $+(y?i(g,$).length:1)}},"083e":function(t,n,r){r("c541")},"0bfb":function(t,n,r){var i=r("cb7c");t.exports=function(){var g=i(this),$="";return g.global&&($+="g"),g.ignoreCase&&($+="i"),g.multiline&&($+="m"),g.unicode&&($+="u"),g.sticky&&($+="y"),$}},"0d58":function(t,n,r){var i=r("ce10"),g=r("e11e");t.exports=Object.keys||function(y){return i(y,g)}},"11e9":function(t,n,r){var i=r("52a7"),g=r("4630"),$=r("6821"),y=r("6a99"),k=r("69a8"),j=r("c69a"),L=Object.getOwnPropertyDescriptor;n.f=r("9e1e")?L:function(z,oe){if(z=$(z),oe=y(oe,!0),j)try{return L(z,oe)}catch{}if(k(z,oe))return g(!i.f.call(z,oe),z[oe])}},1495:function(t,n,r){var i=r("86cc"),g=r("cb7c"),$=r("0d58");t.exports=r("9e1e")?Object.defineProperties:function(k,j){g(k);for(var L=$(j),V=L.length,z=0,oe;V>z;)i.f(k,oe=L[z++],j[oe]);return k}},"18d2":function(t,n,r){var i=r("18e9");t.exports=function(g){g=g||{};var $=g.reporter,y=g.batchProcessor,k=g.stateHandler.getState;if(!$)throw new Error("Missing required dependency: reporter.");function j(re,ie){function ae(){ie(re)}if(i.isIE(8))k(re).object={proxy:ae},re.attachEvent("onresize",ae);else{var le=z(re);if(!le)throw new Error("Element is not detectable by this strategy.");le.contentDocument.defaultView.addEventListener("resize",ae)}}function L(re){var ie=g.important?" !important; ":"; ";return(re.join(ie)+ie).trim()}function V(re,ie,ae){ae||(ae=ie,ie=re,re=null),re=re||{},re.debug;function le(de,pe){var he=L(["display: block","position: absolute","top: 0","left: 0","width: 100%","height: 100%","border: none","padding: 0","margin: 0","opacity: 0","z-index: -1000","pointer-events: none"]),ue=!1,_e=window.getComputedStyle(de),Ie=de.offsetWidth,Ce=de.offsetHeight;k(de).startSize={width:Ie,height:Ce};function Oe(){function $e(){if(_e.position==="static"){de.style.setProperty("position","relative",re.important?"important":"");var Ue=function(kt,At,Pt,jt){function bn(Dt){return Dt.replace(/[^-\d\.]/g,"")}var hn=Pt[jt];hn!=="auto"&&bn(hn)!=="0"&&(kt.warn("An element that is positioned static has style."+jt+"="+hn+" which is ignored due to the static positioning. The element will need to be positioned relative, so the style."+jt+" will be set to 0. Element: ",At),At.style.setProperty(jt,"0",re.important?"important":""))};Ue($,de,_e,"top"),Ue($,de,_e,"right"),Ue($,de,_e,"bottom"),Ue($,de,_e,"left")}}function qe(){ue||$e();function Ue(At,Pt){if(!At.contentDocument){var jt=k(At);jt.checkForObjectDocumentTimeoutId&&window.clearTimeout(jt.checkForObjectDocumentTimeoutId),jt.checkForObjectDocumentTimeoutId=setTimeout(function(){jt.checkForObjectDocumentTimeoutId=0,Ue(At,Pt)},100);return}Pt(At.contentDocument)}var kt=this;Ue(kt,function(Pt){pe(de)})}_e.position!==""&&($e(),ue=!0);var ze=document.createElement("object");ze.style.cssText=he,ze.tabIndex=-1,ze.type="text/html",ze.setAttribute("aria-hidden","true"),ze.onload=qe,i.isIE()||(ze.data="about:blank"),k(de)&&(de.appendChild(ze),k(de).object=ze,i.isIE()&&(ze.data="about:blank"))}y?y.add(Oe):Oe()}i.isIE(8)?ae(ie):le(ie,ae)}function z(re){return k(re).object}function oe(re){if(!!k(re)){var ie=z(re);!ie||(i.isIE(8)?re.detachEvent("onresize",ie.proxy):re.removeChild(ie),k(re).checkForObjectDocumentTimeoutId&&window.clearTimeout(k(re).checkForObjectDocumentTimeoutId),delete k(re).object)}}return{makeDetectable:V,addListener:j,uninstall:oe}}},"18e9":function(t,n,r){var i=t.exports={};i.isIE=function(g){function $(){var k=navigator.userAgent.toLowerCase();return k.indexOf("msie")!==-1||k.indexOf("trident")!==-1||k.indexOf(" edge/")!==-1}if(!$())return!1;if(!g)return!0;var y=function(){var k,j=3,L=document.createElement("div"),V=L.getElementsByTagName("i");do L.innerHTML="";while(V[0]);return j>4?j:k}();return g===y},i.isLegacyOpera=function(){return!!window.opera}},"214f":function(t,n,r){r("b0c5");var i=r("2aba"),g=r("32e9"),$=r("79e5"),y=r("be13"),k=r("2b4c"),j=r("520a"),L=k("species"),V=!$(function(){var oe=/./;return oe.exec=function(){var re=[];return re.groups={a:"7"},re},"".replace(oe,"$")!=="7"}),z=function(){var oe=/(?:)/,re=oe.exec;oe.exec=function(){return re.apply(this,arguments)};var ie="ab".split(oe);return ie.length===2&&ie[0]==="a"&&ie[1]==="b"}();t.exports=function(oe,re,ie){var ae=k(oe),le=!$(function(){var Ie={};return Ie[ae]=function(){return 7},""[oe](Ie)!=7}),de=le?!$(function(){var Ie=!1,Ce=/a/;return Ce.exec=function(){return Ie=!0,null},oe==="split"&&(Ce.constructor={},Ce.constructor[L]=function(){return Ce}),Ce[ae](""),!Ie}):void 0;if(!le||!de||oe==="replace"&&!V||oe==="split"&&!z){var pe=/./[ae],he=ie(y,ae,""[oe],function(Ce,Oe,$e,qe,ze){return Oe.exec===j?le&&!ze?{done:!0,value:pe.call(Oe,$e,qe)}:{done:!0,value:Ce.call($e,Oe,qe)}:{done:!1}}),ue=he[0],_e=he[1];i(String.prototype,oe,ue),g(RegExp.prototype,ae,re==2?function(Ie,Ce){return _e.call(Ie,this,Ce)}:function(Ie){return _e.call(Ie,this)})}}},"230e":function(t,n,r){var i=r("d3f4"),g=r("7726").document,$=i(g)&&i(g.createElement);t.exports=function(y){return $?g.createElement(y):{}}},"23c6":function(t,n,r){var i=r("2d95"),g=r("2b4c")("toStringTag"),$=i(function(){return arguments}())=="Arguments",y=function(k,j){try{return k[j]}catch{}};t.exports=function(k){var j,L,V;return k===void 0?"Undefined":k===null?"Null":typeof(L=y(j=Object(k),g))=="string"?L:$?i(j):(V=i(j))=="Object"&&typeof j.callee=="function"?"Arguments":V}},"24fb":function(t,n,r){t.exports=function($){var y=[];return y.toString=function(){return this.map(function(j){var L=i(j,$);return j[2]?"@media ".concat(j[2]," {").concat(L,"}"):L}).join("")},y.i=function(k,j,L){typeof k=="string"&&(k=[[null,k,""]]);var V={};if(L)for(var z=0;z",ie;for(V.style.display="none",r("fab2").appendChild(V),V.src="javascript:",ie=V.contentWindow.document,ie.open(),ie.write(oe+"script"+re+"document.F=Object"+oe+"/script"+re),ie.close(),L=ie.F;z--;)delete L[j][$[z]];return L()};t.exports=Object.create||function(z,oe){var re;return z!==null?(k[j]=i(z),re=new k,k[j]=null,re[y]=z):re=L(),oe===void 0?re:g(re,oe)}},"2b4c":function(t,n,r){var i=r("5537")("wks"),g=r("ca5a"),$=r("7726").Symbol,y=typeof $=="function",k=t.exports=function(j){return i[j]||(i[j]=y&&$[j]||(y?$:g)("Symbol."+j))};k.store=i},"2cef":function(t,n,r){t.exports=function(){var i=1;function g(){return i++}return{generate:g}}},"2d00":function(t,n){t.exports=!1},"2d95":function(t,n){var r={}.toString;t.exports=function(i){return r.call(i).slice(8,-1)}},"2f21":function(t,n,r){var i=r("79e5");t.exports=function(g,$){return!!g&&i(function(){$?g.call(null,function(){},1):g.call(null)})}},"32e9":function(t,n,r){var i=r("86cc"),g=r("4630");t.exports=r("9e1e")?function($,y,k){return i.f($,y,g(1,k))}:function($,y,k){return $[y]=k,$}},"38fd":function(t,n,r){var i=r("69a8"),g=r("4bf8"),$=r("613b")("IE_PROTO"),y=Object.prototype;t.exports=Object.getPrototypeOf||function(k){return k=g(k),i(k,$)?k[$]:typeof k.constructor=="function"&&k instanceof k.constructor?k.constructor.prototype:k instanceof Object?y:null}},"41a0":function(t,n,r){var i=r("2aeb"),g=r("4630"),$=r("7f20"),y={};r("32e9")(y,r("2b4c")("iterator"),function(){return this}),t.exports=function(k,j,L){k.prototype=i(y,{next:g(1,L)}),$(k,j+" Iterator")}},"456d":function(t,n,r){var i=r("4bf8"),g=r("0d58");r("5eda")("keys",function(){return function(y){return g(i(y))}})},4588:function(t,n){var r=Math.ceil,i=Math.floor;t.exports=function(g){return isNaN(g=+g)?0:(g>0?i:r)(g)}},4630:function(t,n){t.exports=function(r,i){return{enumerable:!(r&1),configurable:!(r&2),writable:!(r&4),value:i}}},4917:function(t,n,r){var i=r("cb7c"),g=r("9def"),$=r("0390"),y=r("5f1b");r("214f")("match",1,function(k,j,L,V){return[function(oe){var re=k(this),ie=oe==null?void 0:oe[j];return ie!==void 0?ie.call(oe,re):new RegExp(oe)[j](String(re))},function(z){var oe=V(L,z,this);if(oe.done)return oe.value;var re=i(z),ie=String(this);if(!re.global)return y(re,ie);var ae=re.unicode;re.lastIndex=0;for(var le=[],de=0,pe;(pe=y(re,ie))!==null;){var he=String(pe[0]);le[de]=he,he===""&&(re.lastIndex=$(ie,g(re.lastIndex),ae)),de++}return de===0?null:le}]})},"493e":function(t,n,r){var i=r("24fb");n=i(!1),n.push([t.i,'.vue-grid-item{-webkit-transition:all .2s ease;transition:all .2s ease;-webkit-transition-property:left,top,right;transition-property:left,top,right}.vue-grid-item,.vue-grid-item.no-touch{-ms-touch-action:none;touch-action:none}.vue-grid-item.cssTransforms{-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;left:0;right:auto}.vue-grid-item.cssTransforms.render-rtl{left:auto;right:0}.vue-grid-item.resizing{opacity:.6;z-index:3}.vue-grid-item.vue-draggable-dragging{-webkit-transition:none;transition:none;z-index:3}.vue-grid-item.vue-grid-placeholder{background:red;opacity:.2;-webkit-transition-duration:.1s;transition-duration:.1s;z-index:2;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.vue-grid-item>.vue-resizable-handle{position:absolute;width:20px;height:20px;bottom:0;right:0;background:url("data:image/svg+xml;base64,PHN2ZyBzdHlsZT0iYmFja2dyb3VuZC1jb2xvcjojZmZmZmZmMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjYiIGhlaWdodD0iNiI+PHBhdGggZD0iTTYgNkgwVjQuMmg0LjJWMEg2djZ6IiBvcGFjaXR5PSIuMzAyIi8+PC9zdmc+");background-position:100% 100%;padding:0 3px 3px 0;background-repeat:no-repeat;background-origin:content-box;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:se-resize}.vue-grid-item>.vue-rtl-resizable-handle{bottom:0;left:0;background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTS0xLTFoMTJ2MTJILTF6Ii8+PGc+PHBhdGggc3Ryb2tlLWxpbmVjYXA9InVuZGVmaW5lZCIgc3Ryb2tlLWxpbmVqb2luPSJ1bmRlZmluZWQiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2U9IiMwMDAiIGZpbGw9Im5vbmUiIGQ9Ik0xNDQuODIxLTM4LjM5M2wtMjAuMzU3LTMxLjc4NSIvPjxwYXRoIHN0cm9rZT0iIzY2NiIgc3Ryb2tlLWxpbmVjYXA9InVuZGVmaW5lZCIgc3Ryb2tlLWxpbmVqb2luPSJ1bmRlZmluZWQiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIgZD0iTS45NDctLjAxOHY5LjEyNU0tLjY1NiA5aDEwLjczIi8+PC9nPjwvc3ZnPg==);background-position:0 100%;padding-left:3px;background-repeat:no-repeat;background-origin:content-box;cursor:sw-resize;right:auto}.vue-grid-item.disable-userselect{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}',""]),t.exports=n},"499e":function(t,n,r){r.r(n),r.d(n,"default",function(){return ie});function i(_e,Ie){for(var Ce=[],Oe={},$e=0;$eCe.parts.length&&(Oe.parts.length=Ce.parts.length)}else{for(var qe=[],$e=0;$e1&&$.call(le[0],ae,function(){for(de=1;deae;)for(var pe=j(arguments[ae++]),he=le?g(pe).concat(le(pe)):g(pe),ue=he.length,_e=0,Ie;ue>_e;)Ie=he[_e++],(!i||de.call(pe,Ie))&&(re[Ie]=pe[Ie]);return re}:L},7726:function(t,n){var r=t.exports=typeof window!="undefined"&&window.Math==Math?window:typeof self!="undefined"&&self.Math==Math?self:Function("return this")();typeof __g=="number"&&(__g=r)},"77f1":function(t,n,r){var i=r("4588"),g=Math.max,$=Math.min;t.exports=function(y,k){return y=i(y),y<0?g(y+k,0):$(y,k)}},"79e5":function(t,n){t.exports=function(r){try{return!!r()}catch{return!0}}},"7f20":function(t,n,r){var i=r("86cc").f,g=r("69a8"),$=r("2b4c")("toStringTag");t.exports=function(y,k,j){y&&!g(y=j?y:y.prototype,$)&&i(y,$,{configurable:!0,value:k})}},8378:function(t,n){var r=t.exports={version:"2.6.12"};typeof __e=="number"&&(__e=r)},"848e":function(t,n,r){var i=r("24fb");n=i(!1),n.push([t.i,".vue-grid-layout{position:relative;-webkit-transition:height .2s ease;transition:height .2s ease}",""]),t.exports=n},"84f2":function(t,n){t.exports={}},"86cc":function(t,n,r){var i=r("cb7c"),g=r("c69a"),$=r("6a99"),y=Object.defineProperty;n.f=r("9e1e")?Object.defineProperty:function(j,L,V){if(i(j),L=$(L,!0),i(V),g)try{return y(j,L,V)}catch{}if("get"in V||"set"in V)throw TypeError("Accessors not supported!");return"value"in V&&(j[L]=V.value),j}},8875:function(t,n,r){var i,g,$;(function(y,k){g=[],i=k,$=typeof i=="function"?i.apply(n,g):i,$!==void 0&&(t.exports=$)})(typeof self!="undefined"?self:this,function(){function y(){var k=Object.getOwnPropertyDescriptor(document,"currentScript");if(!k&&"currentScript"in document&&document.currentScript||k&&k.get!==y&&document.currentScript)return document.currentScript;try{throw new Error}catch(he){var j=/.*at [^(]*\((.*):(.+):(.+)\)$/ig,L=/@([^@]*):(\d+):(\d+)\s*$/ig,V=j.exec(he.stack)||L.exec(he.stack),z=V&&V[1]||!1,oe=V&&V[2]||!1,re=document.location.href.replace(document.location.hash,""),ie,ae,le,de=document.getElementsByTagName("script");z===re&&(ie=document.documentElement.outerHTML,ae=new RegExp("(?:[^\\n]+?\\n){0,"+(oe-2)+"}[^<]* + + + + + + +
      + + + \ No newline at end of file diff --git a/manifest/docker-compose/nginx/nginx.yaml b/manifest/docker-compose/nginx/nginx.yaml new file mode 100644 index 0000000..16a05c3 --- /dev/null +++ b/manifest/docker-compose/nginx/nginx.yaml @@ -0,0 +1,13 @@ +services: + nginx: + image: nginx:1.25.1 + restart: always + container_name: nginx + privileged: true + ports: + - 80:80 + - 443:443 + volumes: + - "./conf/nginx.conf:/etc/nginx/nginx.conf" + - "./html/:/usr/share/nginx/html/" + - "./logs/:/var/log/nginx/" diff --git a/manifest/docker-compose/redis/data/appendonlydir/appendonly.aof.1.base.rdb b/manifest/docker-compose/redis/data/appendonlydir/appendonly.aof.1.base.rdb deleted file mode 100644 index 31c3237..0000000 Binary files a/manifest/docker-compose/redis/data/appendonlydir/appendonly.aof.1.base.rdb and /dev/null differ diff --git a/manifest/docker-compose/redis/data/appendonlydir/appendonly.aof.1.incr.aof b/manifest/docker-compose/redis/data/appendonlydir/appendonly.aof.1.incr.aof deleted file mode 100644 index 3876f4c..0000000 --- a/manifest/docker-compose/redis/data/appendonlydir/appendonly.aof.1.incr.aof +++ /dev/null @@ -1,770539 +0,0 @@ -*2 -$6 -SELECT -$1 -0 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$32 -["sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$37 -SagooIOT_sysConfigTagsys.auto.run.job -$289 -{"configId":16,"configName":"是否自启定时任务","configKey":"sys.auto.run.job","configValue":"1","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 22:40:32","updateBy":1,"updatedAt":"2022-12-16 02:54:54","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690954498087 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$29 -["system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$53 -["device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$16 -SagooIOT_sysMenu -$39677 -[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:53:23","updatedBy":1,"updatedAt":"2022-12-09 23:58:36","deletedBy":0,"deletedAt":""},{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-07 23:31:31","updatedBy":1,"updatedAt":"2022-11-28 10:19:28","deletedBy":0,"deletedAt":""},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 04:51:33","updatedBy":1,"updatedAt":"2022-12-09 23:58:43","deletedBy":0,"deletedAt":""},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 20:49:57","updatedBy":1,"updatedAt":"2022-12-09 23:58:50","deletedBy":0,"deletedAt":""},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:52:35","updatedBy":1,"updatedAt":"2022-12-09 23:58:58","deletedBy":0,"deletedAt":""},{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-08 21:27:01","updatedBy":0,"updatedAt":"2023-04-08 21:27:01","deletedBy":0,"deletedAt":""},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 15:44:01","updatedBy":1,"updatedAt":"2022-12-08 23:04:17","deletedBy":0,"deletedAt":""},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:42:40","updatedBy":1,"updatedAt":"2023-05-22 21:44:16","deletedBy":0,"deletedAt":""},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-30 02:53:26","updatedBy":1,"updatedAt":"2022-12-09 23:40:36","deletedBy":0,"deletedAt":""},{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 09:09:30","updatedBy":1,"updatedAt":"2022-12-08 23:04:35","deletedBy":0,"deletedAt":""},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 20:48:36","updatedBy":1,"updatedAt":"2023-04-16 19:32:43","deletedBy":0,"deletedAt":""},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 06:20:26","updatedBy":1,"updatedAt":"2022-12-09 23:48:28","deletedBy":0,"deletedAt":""},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-08 23:11:42","updatedBy":1,"updatedAt":"2022-10-09 07:15:53","deletedBy":0,"deletedAt":""},{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 10:26:43","updatedBy":1,"updatedAt":"2023-02-09 21:49:18","deletedBy":0,"deletedAt":""},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:06:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:21","deletedBy":0,"deletedAt":""},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 06:50:33","updatedBy":1,"updatedAt":"2023-02-09 21:49:27","deletedBy":0,"deletedAt":""},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 07:54:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:57","deletedBy":0,"deletedAt":""},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:57:26","updatedBy":1,"updatedAt":"2022-12-09 23:51:54","deletedBy":0,"deletedAt":""},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-09 11:15:21","updatedBy":1,"updatedAt":"2023-02-09 21:49:38","deletedBy":0,"deletedAt":""},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-11 17:14:19","updatedBy":0,"updatedAt":"2022-10-11 17:14:19","deletedBy":0,"deletedAt":""},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:24","updatedBy":1,"updatedAt":"2022-12-08 23:04:43","deletedBy":0,"deletedAt":""},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-28 17:01:38","updatedBy":1,"updatedAt":"2023-02-09 21:49:47","deletedBy":0,"deletedAt":""},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 22:13:54","updatedBy":1,"updatedAt":"2022-12-09 23:57:48","deletedBy":0,"deletedAt":""},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 06:59:54","updatedBy":1,"updatedAt":"2022-12-09 23:59:06","deletedBy":0,"deletedAt":""},{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/square-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 16:13:33","updatedBy":1,"updatedAt":"2022-12-09 23:51:15","deletedBy":0,"deletedAt":""},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-05 06:15:26","updatedBy":1,"updatedAt":"2022-12-10 00:01:38","deletedBy":0,"deletedAt":""},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:40:07","updatedBy":1,"updatedAt":"2022-12-09 23:51:23","deletedBy":0,"deletedAt":""},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:54:55","updatedBy":1,"updatedAt":"2022-12-10 00:01:45","deletedBy":0,"deletedAt":""},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-20 23:40:21","updatedBy":1,"updatedAt":"2023-03-20 23:45:02","deletedBy":0,"deletedAt":""},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:11:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:44","deletedBy":0,"deletedAt":""},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:08:47","updatedBy":1,"updatedAt":"2022-12-09 23:50:36","deletedBy":0,"deletedAt":""},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-25 18:41:55","updatedBy":1,"updatedAt":"2022-12-10 00:11:45","deletedBy":0,"deletedAt":""},{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-21 12:50:32","updatedBy":1,"updatedAt":"2022-12-08 22:57:15","deletedBy":0,"deletedAt":""},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 12:31:06","updatedBy":1,"updatedAt":"2023-06-05 07:08:02","deletedBy":0,"deletedAt":""},{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-10 09:16:37","updatedBy":1,"updatedAt":"2022-12-09 23:57:32","deletedBy":0,"deletedAt":""},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-12 11:50:16","updatedBy":1,"updatedAt":"2022-12-08 22:57:30","deletedBy":0,"deletedAt":""},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-11 07:50:06","updatedBy":1,"updatedAt":"2022-12-09 23:54:21","deletedBy":0,"deletedAt":""},{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:24","updatedBy":1,"updatedAt":"2022-12-09 23:54:34","deletedBy":0,"deletedAt":""},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:33:09","updatedBy":1,"updatedAt":"2022-12-09 23:54:42","deletedBy":0,"deletedAt":""},{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 05:59:08","updatedBy":1,"updatedAt":"2022-12-09 23:53:00","deletedBy":0,"deletedAt":""},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-14 22:01:07","updatedBy":1,"updatedAt":"2022-12-09 23:53:07","deletedBy":0,"deletedAt":""},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-29 08:23:03","updatedBy":1,"updatedAt":"2023-01-29 08:24:17","deletedBy":0,"deletedAt":""},{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:08:05","updatedBy":1,"updatedAt":"2023-03-02 13:11:39","deletedBy":0,"deletedAt":""},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:16:40","updatedBy":1,"updatedAt":"2023-03-02 13:11:55","deletedBy":0,"deletedAt":""},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-02 13:10:46","updatedBy":1,"updatedAt":"2023-03-02 13:17:21","deletedBy":0,"deletedAt":""},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:05:48","updatedBy":1,"updatedAt":"2023-04-06 21:39:21","deletedBy":0,"deletedAt":""},{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:08:29","updatedBy":1,"updatedAt":"2023-04-09 20:49:11","deletedBy":0,"deletedAt":""},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-14 22:59:56","updatedBy":1,"updatedAt":"2023-04-14 23:27:00","deletedBy":0,"deletedAt":""},{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:44:01","updatedBy":0,"updatedAt":"2023-05-22 21:44:01","deletedBy":0,"deletedAt":""},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 11:45:53","updatedBy":1,"updatedAt":"2023-06-05 07:07:43","deletedBy":0,"deletedAt":""},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 05:59:18","updatedBy":1,"updatedAt":"2022-12-10 00:11:30","deletedBy":0,"deletedAt":""},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 14:53:36","updatedBy":1,"updatedAt":"2022-12-10 00:00:39","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 22:55:17","updatedBy":1,"updatedAt":"2022-12-09 23:59:48","deletedBy":0,"deletedAt":""},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 07:01:59","updatedBy":1,"updatedAt":"2022-12-09 23:59:57","deletedBy":0,"deletedAt":""},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 15:04:21","updatedBy":1,"updatedAt":"2022-12-10 00:02:00","deletedBy":0,"deletedAt":""},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 02:21:34","updatedBy":1,"updatedAt":"2022-12-10 00:02:25","deletedBy":0,"deletedAt":""},{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 15:44:43","updatedBy":1,"updatedAt":"2022-12-09 23:49:20","deletedBy":0,"deletedAt":""},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 08:02:39","updatedBy":1,"updatedAt":"2022-12-10 00:03:36","deletedBy":0,"deletedAt":""},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:11:36","updatedBy":1,"updatedAt":"2022-12-09 23:51:38","deletedBy":0,"deletedAt":""},{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 16:57:23","updatedBy":1,"updatedAt":"2022-12-10 00:04:05","deletedBy":0,"deletedAt":""},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:10:38","updatedBy":1,"updatedAt":"2022-12-08 23:04:50","deletedBy":0,"deletedAt":""},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:36","updatedBy":1,"updatedAt":"2022-12-10 00:04:16","deletedBy":0,"deletedAt":""},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:54:33","updatedBy":1,"updatedAt":"2022-12-10 00:04:23","deletedBy":0,"deletedAt":""},{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 21:01:00","updatedBy":1,"updatedAt":"2022-12-09 23:52:18","deletedBy":0,"deletedAt":""},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 05:02:15","updatedBy":1,"updatedAt":"2022-12-09 23:52:33","deletedBy":0,"deletedAt":""},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 21:20:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:00","deletedBy":0,"deletedAt":""},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:48:19","updatedBy":1,"updatedAt":"2022-12-09 23:43:55","deletedBy":0,"deletedAt":""},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 06:43:34","updatedBy":1,"updatedAt":"2022-12-10 00:11:38","deletedBy":0,"deletedAt":""},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-14 20:25:37","updatedBy":1,"updatedAt":"2022-12-10 00:00:50","deletedBy":0,"deletedAt":""},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-15 06:40:43","updatedBy":1,"updatedAt":"2022-12-10 00:00:58","deletedBy":0,"deletedAt":""},{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 12:12:59","updatedBy":1,"updatedAt":"2022-12-08 23:09:21","deletedBy":0,"deletedAt":""},{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 21:33:48","updatedBy":1,"updatedAt":"2022-12-08 23:10:27","deletedBy":0,"deletedAt":""},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 07:30:33","updatedBy":1,"updatedAt":"2022-12-10 00:05:11","deletedBy":0,"deletedAt":""},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 19:37:24","updatedBy":1,"updatedAt":"2022-12-10 00:05:52","deletedBy":0,"deletedAt":""},{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-31 02:55:36","updatedBy":1,"updatedAt":"2022-12-09 23:40:55","deletedBy":0,"deletedAt":""},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-01 07:05:44","updatedBy":1,"updatedAt":"2022-12-09 23:43:40","deletedBy":0,"deletedAt":""},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 18:10:41","updatedBy":1,"updatedAt":"2022-12-09 23:43:48","deletedBy":0,"deletedAt":""},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 02:31:20","updatedBy":1,"updatedAt":"2022-12-09 23:41:05","deletedBy":0,"deletedAt":""},{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-05 10:36:11","updatedBy":1,"updatedAt":"2022-12-09 23:46:49","deletedBy":0,"deletedAt":""},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 16:21:10","updatedBy":1,"updatedAt":"2022-12-09 23:46:56","deletedBy":0,"deletedAt":""},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:46:52","updatedBy":1,"updatedAt":"2022-12-09 23:47:02","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuButton -$33936 -[{"id":10,"parentId":-1,"menuId":34,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-13 04:55:53","updatedBy":1,"updatedAt":"2022-08-14 22:17:55","deletedBy":0,"deletedAt":""},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-13 12:55:57","updatedBy":1,"updatedAt":"2022-08-14 22:17:53","deletedBy":0,"deletedAt":""},{"id":12,"parentId":-1,"menuId":34,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-13 20:55:59","updatedBy":1,"updatedAt":"2022-08-14 22:17:47","deletedBy":0,"deletedAt":""},{"id":13,"parentId":-1,"menuId":34,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-14 20:56:02","updatedBy":0,"updatedAt":"2022-08-14 20:56:02","deletedBy":0,"deletedAt":""},{"id":14,"parentId":-1,"menuId":34,"name":"导入","types":"upload","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-14 20:56:04","updatedBy":0,"updatedAt":"2022-08-14 20:56:04","deletedBy":0,"deletedAt":""},{"id":15,"parentId":-1,"menuId":34,"name":"导出","types":"dwonload","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-14 20:56:06","updatedBy":0,"updatedAt":"2022-08-14 20:56:06","deletedBy":0,"deletedAt":""},{"id":16,"parentId":-1,"menuId":35,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-14 21:14:48","updatedBy":0,"updatedAt":"2022-08-14 21:14:48","deletedBy":0,"deletedAt":""},{"id":17,"parentId":-1,"menuId":15,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-19 06:17:58","updatedBy":1,"updatedAt":"2022-08-19 23:27:07","deletedBy":0,"deletedAt":""},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-19 06:18:02","updatedBy":1,"updatedAt":"2022-08-19 23:27:42","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"menuId":15,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-19 22:18:04","updatedBy":0,"updatedAt":"2022-08-19 22:18:04","deletedBy":0,"deletedAt":""},{"id":21,"parentId":-1,"menuId":15,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-19 22:36:06","updatedBy":0,"updatedAt":"2022-08-19 22:36:06","deletedBy":0,"deletedAt":""},{"id":25,"parentId":-1,"menuId":13,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:03:46","updatedBy":0,"updatedAt":"2022-11-03 00:03:46","deletedBy":0,"deletedAt":""},{"id":26,"parentId":-1,"menuId":13,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:03:48","updatedBy":0,"updatedAt":"2022-11-03 00:03:48","deletedBy":0,"deletedAt":""},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:03:51","updatedBy":0,"updatedAt":"2022-11-03 00:03:51","deletedBy":0,"deletedAt":""},{"id":28,"parentId":-1,"menuId":37,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:00:38","updatedBy":0,"updatedAt":"2022-11-03 11:00:38","deletedBy":0,"deletedAt":""},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:00:41","updatedBy":0,"updatedAt":"2022-11-03 11:00:41","deletedBy":0,"deletedAt":""},{"id":30,"parentId":-1,"menuId":37,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:00:42","updatedBy":0,"updatedAt":"2022-11-03 11:00:42","deletedBy":0,"deletedAt":""},{"id":31,"parentId":-1,"menuId":37,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:00:44","updatedBy":0,"updatedAt":"2022-11-03 11:00:44","deletedBy":0,"deletedAt":""},{"id":32,"parentId":-1,"menuId":37,"name":"复制","types":"copy","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 03:04:35","updatedBy":1,"updatedAt":"2022-11-03 11:04:50","deletedBy":0,"deletedAt":""},{"id":33,"parentId":-1,"menuId":12,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:04:31","updatedBy":0,"updatedAt":"2022-11-03 20:04:31","deletedBy":0,"deletedAt":""},{"id":34,"parentId":-1,"menuId":12,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:04:33","updatedBy":0,"updatedAt":"2022-11-03 20:04:33","deletedBy":0,"deletedAt":""},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:04:36","updatedBy":0,"updatedAt":"2022-11-03 20:04:36","deletedBy":0,"deletedAt":""},{"id":36,"parentId":-1,"menuId":14,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:10:54","updatedBy":0,"updatedAt":"2022-11-03 20:10:54","deletedBy":0,"deletedAt":""},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:10:57","updatedBy":0,"updatedAt":"2022-11-03 20:10:57","deletedBy":0,"deletedAt":""},{"id":38,"parentId":-1,"menuId":14,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:10:59","updatedBy":0,"updatedAt":"2022-11-03 20:10:59","deletedBy":0,"deletedAt":""},{"id":39,"parentId":-1,"menuId":10,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:30:49","updatedBy":0,"updatedAt":"2022-11-03 20:30:49","deletedBy":0,"deletedAt":""},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:30:50","updatedBy":0,"updatedAt":"2022-11-03 20:30:50","deletedBy":0,"deletedAt":""},{"id":41,"parentId":-1,"menuId":10,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:30:53","updatedBy":0,"updatedAt":"2022-11-03 20:30:53","deletedBy":0,"deletedAt":""},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","types":"role-premission","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:31:17","updatedBy":0,"updatedAt":"2022-11-03 20:31:17","deletedBy":0,"deletedAt":""},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","types":"data-premission","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:31:31","updatedBy":0,"updatedAt":"2022-11-03 20:31:31","deletedBy":0,"deletedAt":""},{"id":44,"parentId":-1,"menuId":18,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:35:13","updatedBy":0,"updatedAt":"2022-11-03 20:35:13","deletedBy":0,"deletedAt":""},{"id":45,"parentId":-1,"menuId":49,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:35:35","updatedBy":0,"updatedAt":"2022-11-03 20:35:35","deletedBy":0,"deletedAt":""},{"id":46,"parentId":-1,"menuId":49,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:42:52","updatedBy":0,"updatedAt":"2022-11-03 20:42:52","deletedBy":0,"deletedAt":""},{"id":47,"parentId":-1,"menuId":50,"name":"强退","types":"out","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:48:01","updatedBy":0,"updatedAt":"2022-11-03 20:48:01","deletedBy":0,"deletedAt":""},{"id":48,"parentId":-1,"menuId":110,"name":"启用","types":"start","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:01:05","updatedBy":0,"updatedAt":"2022-11-03 21:01:05","deletedBy":0,"deletedAt":""},{"id":49,"parentId":-1,"menuId":110,"name":"停用","types":"stop","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:01:12","updatedBy":0,"updatedAt":"2022-11-03 21:01:12","deletedBy":0,"deletedAt":""},{"id":50,"parentId":-1,"menuId":32,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:41:08","updatedBy":0,"updatedAt":"2022-11-03 21:41:08","deletedBy":0,"deletedAt":""},{"id":51,"parentId":-1,"menuId":2,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:41:20","updatedBy":0,"updatedAt":"2022-11-03 21:41:20","deletedBy":0,"deletedAt":""},{"id":78,"parentId":-1,"menuId":39,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:44:42","updatedBy":0,"updatedAt":"2022-11-06 09:44:42","deletedBy":0,"deletedAt":""},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:44:44","updatedBy":0,"updatedAt":"2022-11-06 09:44:44","deletedBy":0,"deletedAt":""},{"id":80,"parentId":-1,"menuId":39,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:44:45","updatedBy":0,"updatedAt":"2022-11-06 09:44:45","deletedBy":0,"deletedAt":""},{"id":81,"parentId":-1,"menuId":39,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:44:47","updatedBy":0,"updatedAt":"2022-11-06 09:44:47","deletedBy":0,"deletedAt":""},{"id":82,"parentId":-1,"menuId":39,"name":"复制","types":"copy","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:46:46","updatedBy":0,"updatedAt":"2022-11-06 09:46:46","deletedBy":0,"deletedAt":""},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","types":"record","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:47:41","updatedBy":0,"updatedAt":"2022-11-06 09:47:41","deletedBy":0,"deletedAt":""},{"id":84,"parentId":-1,"menuId":61,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:52:32","updatedBy":0,"updatedAt":"2022-11-06 09:52:32","deletedBy":0,"deletedAt":""},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:52:33","updatedBy":0,"updatedAt":"2022-11-06 09:52:33","deletedBy":0,"deletedAt":""},{"id":86,"parentId":-1,"menuId":61,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:52:38","updatedBy":0,"updatedAt":"2022-11-06 09:52:38","deletedBy":0,"deletedAt":""},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","types":"pro-status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:54:09","updatedBy":0,"updatedAt":"2022-11-06 09:54:09","deletedBy":0,"deletedAt":""},{"id":88,"parentId":-1,"menuId":64,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:58:15","updatedBy":0,"updatedAt":"2022-11-06 09:58:15","deletedBy":0,"deletedAt":""},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:58:16","updatedBy":0,"updatedAt":"2022-11-06 09:58:16","deletedBy":0,"deletedAt":""},{"id":90,"parentId":-1,"menuId":64,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:58:18","updatedBy":0,"updatedAt":"2022-11-06 09:58:18","deletedBy":0,"deletedAt":""},{"id":91,"parentId":-1,"menuId":64,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:58:21","updatedBy":0,"updatedAt":"2022-11-06 09:58:21","deletedBy":0,"deletedAt":""},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:13","updatedBy":0,"updatedAt":"2022-11-06 10:13:13","deletedBy":0,"deletedAt":""},{"id":93,"parentId":-1,"menuId":35,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:14","updatedBy":0,"updatedAt":"2022-11-06 10:13:14","deletedBy":0,"deletedAt":""},{"id":94,"parentId":-1,"menuId":36,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:44","updatedBy":1,"updatedAt":"2023-05-17 22:31:02","deletedBy":0,"deletedAt":""},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:46","updatedBy":0,"updatedAt":"2022-11-06 10:13:46","deletedBy":0,"deletedAt":""},{"id":96,"parentId":-1,"menuId":36,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:48","updatedBy":0,"updatedAt":"2022-11-06 10:13:48","deletedBy":0,"deletedAt":""},{"id":97,"parentId":-1,"menuId":36,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:49","updatedBy":0,"updatedAt":"2022-11-06 10:13:49","deletedBy":0,"deletedAt":""},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","types":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:15:15","updatedBy":0,"updatedAt":"2022-11-06 10:15:15","deletedBy":0,"deletedAt":""},{"id":100,"parentId":-1,"menuId":66,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-05 15:42:25","updatedBy":1,"updatedAt":"2022-11-11 15:14:45","deletedBy":0,"deletedAt":""},{"id":101,"parentId":-1,"menuId":66,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 23:43:23","updatedBy":0,"updatedAt":"2022-11-06 23:43:23","deletedBy":0,"deletedAt":""},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 23:43:26","updatedBy":0,"updatedAt":"2022-11-06 23:43:26","deletedBy":0,"deletedAt":""},{"id":103,"parentId":-1,"menuId":66,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-05 15:45:29","updatedBy":1,"updatedAt":"2022-11-11 15:14:47","deletedBy":0,"deletedAt":""},{"id":104,"parentId":105,"menuId":66,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 15:46:02","updatedBy":1,"updatedAt":"2022-12-12 22:38:08","deletedBy":0,"deletedAt":""},{"id":105,"parentId":-1,"menuId":66,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 07:46:18","updatedBy":1,"updatedAt":"2022-11-11 15:13:45","deletedBy":0,"deletedAt":""},{"id":106,"parentId":105,"menuId":66,"name":"启用","types":"on","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-05 23:46:34","updatedBy":1,"updatedAt":"2022-12-12 22:37:51","deletedBy":0,"deletedAt":""},{"id":107,"parentId":105,"menuId":66,"name":"禁用","types":"off","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 15:46:48","updatedBy":1,"updatedAt":"2022-12-12 22:38:01","deletedBy":0,"deletedAt":""},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:20:17","updatedBy":0,"updatedAt":"2022-11-07 21:20:17","deletedBy":0,"deletedAt":""},{"id":109,"parentId":-1,"menuId":2,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:20:19","updatedBy":0,"updatedAt":"2022-11-07 21:20:19","deletedBy":0,"deletedAt":""},{"id":110,"parentId":-1,"menuId":2,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:20:47","updatedBy":0,"updatedAt":"2022-11-07 21:20:47","deletedBy":0,"deletedAt":""},{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","types":"btn","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:22:22","updatedBy":0,"updatedAt":"2022-11-07 21:22:22","deletedBy":0,"deletedAt":""},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","types":"list","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:22:35","updatedBy":0,"updatedAt":"2022-11-07 21:22:35","deletedBy":0,"deletedAt":""},{"id":113,"parentId":-1,"menuId":16,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:28:48","updatedBy":0,"updatedAt":"2022-11-07 21:28:48","deletedBy":0,"deletedAt":""},{"id":114,"parentId":-1,"menuId":16,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:28:50","updatedBy":0,"updatedAt":"2022-11-07 21:28:50","deletedBy":0,"deletedAt":""},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:28:58","updatedBy":0,"updatedAt":"2022-11-07 21:28:58","deletedBy":0,"deletedAt":""},{"id":116,"parentId":-1,"menuId":21,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:47:20","updatedBy":0,"updatedAt":"2022-11-07 21:47:20","deletedBy":0,"deletedAt":""},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:47:22","updatedBy":0,"updatedAt":"2022-11-07 21:47:22","deletedBy":0,"deletedAt":""},{"id":118,"parentId":-1,"menuId":21,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:47:24","updatedBy":0,"updatedAt":"2022-11-07 21:47:24","deletedBy":0,"deletedAt":""},{"id":119,"parentId":-1,"menuId":22,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:56:01","updatedBy":0,"updatedAt":"2022-11-07 21:56:01","deletedBy":0,"deletedAt":""},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:56:05","updatedBy":0,"updatedAt":"2022-11-07 21:56:05","deletedBy":0,"deletedAt":""},{"id":121,"parentId":-1,"menuId":22,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:56:07","updatedBy":0,"updatedAt":"2022-11-07 21:56:07","deletedBy":0,"deletedAt":""},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:00:53","updatedBy":0,"updatedAt":"2022-11-07 22:00:53","deletedBy":0,"deletedAt":""},{"id":123,"parentId":-1,"menuId":32,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:00:55","updatedBy":0,"updatedAt":"2022-11-07 22:00:55","deletedBy":0,"deletedAt":""},{"id":124,"parentId":-1,"menuId":32,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:00:57","updatedBy":0,"updatedAt":"2022-11-07 22:00:57","deletedBy":0,"deletedAt":""},{"id":125,"parentId":-1,"menuId":46,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:38:32","updatedBy":0,"updatedAt":"2022-11-07 22:38:32","deletedBy":0,"deletedAt":""},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:38:33","updatedBy":0,"updatedAt":"2022-11-07 22:38:33","deletedBy":0,"deletedAt":""},{"id":127,"parentId":-1,"menuId":46,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:38:35","updatedBy":0,"updatedAt":"2022-11-07 22:38:35","deletedBy":0,"deletedAt":""},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","types":"do","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:38:43","updatedBy":0,"updatedAt":"2022-11-07 22:38:43","deletedBy":0,"deletedAt":""},{"id":129,"parentId":-1,"menuId":48,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:22","updatedBy":0,"updatedAt":"2022-11-07 22:44:22","deletedBy":0,"deletedAt":""},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:23","updatedBy":0,"updatedAt":"2022-11-07 22:44:23","deletedBy":0,"deletedAt":""},{"id":131,"parentId":-1,"menuId":48,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:25","updatedBy":0,"updatedAt":"2022-11-07 22:44:25","deletedBy":0,"deletedAt":""},{"id":132,"parentId":-1,"menuId":85,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:47:24","updatedBy":0,"updatedAt":"2022-11-07 22:47:24","deletedBy":0,"deletedAt":""},{"id":134,"parentId":-1,"menuId":85,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:47:28","updatedBy":0,"updatedAt":"2022-11-07 22:47:28","deletedBy":0,"deletedAt":""},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:48:43","updatedBy":0,"updatedAt":"2022-11-07 22:48:43","deletedBy":0,"deletedAt":""},{"id":136,"parentId":-1,"menuId":35,"name":"描述","types":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 09:44:20","updatedBy":0,"updatedAt":"2022-11-10 09:44:20","deletedBy":0,"deletedAt":""},{"id":137,"parentId":-1,"menuId":70,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:34:48","updatedBy":0,"updatedAt":"2022-11-11 17:34:48","deletedBy":0,"deletedAt":""},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:34:57","updatedBy":0,"updatedAt":"2022-11-11 17:34:57","deletedBy":0,"deletedAt":""},{"id":139,"parentId":-1,"menuId":70,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:35:06","updatedBy":0,"updatedAt":"2022-11-11 17:35:06","deletedBy":0,"deletedAt":""},{"id":140,"parentId":139,"menuId":70,"name":"启用","types":"on","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 09:35:23","updatedBy":1,"updatedAt":"2022-12-12 22:39:12","deletedBy":0,"deletedAt":""},{"id":141,"parentId":139,"menuId":70,"name":"禁用","types":"off","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 09:35:35","updatedBy":1,"updatedAt":"2022-12-12 22:39:18","deletedBy":0,"deletedAt":""},{"id":142,"parentId":139,"menuId":70,"name":"删除","types":"delete","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 09:35:50","updatedBy":1,"updatedAt":"2022-12-12 22:39:06","deletedBy":0,"deletedAt":""},{"id":143,"parentId":-1,"menuId":70,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:36:51","updatedBy":0,"updatedAt":"2022-11-11 17:36:51","deletedBy":0,"deletedAt":""},{"id":144,"parentId":-1,"menuId":70,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:36:56","updatedBy":0,"updatedAt":"2022-11-11 17:36:56","deletedBy":0,"deletedAt":""},{"id":145,"parentId":-1,"menuId":85,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:45:25","updatedBy":0,"updatedAt":"2022-11-11 17:45:25","deletedBy":0,"deletedAt":""},{"id":146,"parentId":-1,"menuId":85,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:45:38","updatedBy":0,"updatedAt":"2022-11-11 17:45:38","deletedBy":0,"deletedAt":""},{"id":147,"parentId":-1,"menuId":37,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:53:40","updatedBy":0,"updatedAt":"2022-11-11 22:53:40","deletedBy":0,"deletedAt":""},{"id":148,"parentId":-1,"menuId":37,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:54:02","updatedBy":0,"updatedAt":"2022-11-11 22:54:02","deletedBy":0,"deletedAt":""},{"id":149,"parentId":-1,"menuId":115,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:44:01","updatedBy":0,"updatedAt":"2022-11-15 14:44:01","deletedBy":0,"deletedAt":""},{"id":150,"parentId":-1,"menuId":115,"name":"处理","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 06:44:11","updatedBy":1,"updatedAt":"2022-11-15 14:44:21","deletedBy":0,"deletedAt":""},{"id":151,"parentId":-1,"menuId":114,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:27:50","updatedBy":0,"updatedAt":"2022-11-23 10:27:50","deletedBy":0,"deletedAt":""},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:27:53","updatedBy":0,"updatedAt":"2022-11-23 10:27:53","deletedBy":0,"deletedAt":""},{"id":153,"parentId":-1,"menuId":114,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:28:01","updatedBy":0,"updatedAt":"2022-11-23 10:28:01","deletedBy":0,"deletedAt":""},{"id":154,"parentId":-1,"menuId":114,"name":"状态","types":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:29:26","updatedBy":0,"updatedAt":"2022-11-23 10:29:26","deletedBy":0,"deletedAt":""},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","types":"level","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:30:07","updatedBy":0,"updatedAt":"2022-11-23 10:30:07","deletedBy":0,"deletedAt":""},{"id":156,"parentId":-1,"menuId":92,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:20:53","updatedBy":0,"updatedAt":"2022-11-28 10:20:53","deletedBy":0,"deletedAt":""},{"id":157,"parentId":-1,"menuId":92,"name":"处理","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:21:11","updatedBy":0,"updatedAt":"2022-11-28 10:21:11","deletedBy":0,"deletedAt":""},{"id":158,"parentId":-1,"menuId":41,"name":"管理","types":"setting","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:36:08","updatedBy":0,"updatedAt":"2022-12-07 14:36:08","deletedBy":0,"deletedAt":""},{"id":159,"parentId":-1,"menuId":41,"name":"配置","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:36:23","updatedBy":0,"updatedAt":"2022-12-07 14:36:23","deletedBy":0,"deletedAt":""},{"id":160,"parentId":-1,"menuId":42,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 20:19:34","updatedBy":0,"updatedAt":"2022-12-15 20:19:34","deletedBy":0,"deletedAt":""},{"id":161,"parentId":-1,"menuId":42,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-16 13:58:00","updatedBy":0,"updatedAt":"2022-12-16 13:58:00","deletedBy":0,"deletedAt":""},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","types":"change-status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-20 21:27:06","updatedBy":0,"updatedAt":"2022-12-20 21:27:06","deletedBy":0,"deletedAt":""},{"id":163,"parentId":-1,"menuId":119,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:38","updatedBy":0,"updatedAt":"2023-02-03 10:11:38","deletedBy":0,"deletedAt":""},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:42","updatedBy":0,"updatedAt":"2023-02-03 10:11:42","deletedBy":0,"deletedAt":""},{"id":165,"parentId":-1,"menuId":119,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:45","updatedBy":0,"updatedAt":"2023-02-03 10:11:45","deletedBy":0,"deletedAt":""},{"id":166,"parentId":-1,"menuId":119,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:49","updatedBy":0,"updatedAt":"2023-02-03 10:11:49","deletedBy":0,"deletedAt":""},{"id":167,"parentId":-1,"menuId":119,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:53","updatedBy":0,"updatedAt":"2023-02-03 10:11:53","deletedBy":0,"deletedAt":""},{"id":168,"parentId":165,"menuId":119,"name":"开启","types":"on","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:13:12","updatedBy":0,"updatedAt":"2023-02-03 10:13:12","deletedBy":0,"deletedAt":""},{"id":169,"parentId":165,"menuId":119,"name":"禁用","types":"off","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:13:52","updatedBy":0,"updatedAt":"2023-02-03 10:13:52","deletedBy":0,"deletedAt":""},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","types":"juhe","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-22 11:39:45","updatedBy":0,"updatedAt":"2023-02-22 11:39:45","deletedBy":0,"deletedAt":""},{"id":183,"parentId":-1,"menuId":131,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:29:28","updatedBy":0,"updatedAt":"2023-04-10 08:29:28","deletedBy":0,"deletedAt":""},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:29:30","updatedBy":0,"updatedAt":"2023-04-10 08:29:30","deletedBy":0,"deletedAt":""},{"id":185,"parentId":-1,"menuId":131,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:29:33","updatedBy":0,"updatedAt":"2023-04-10 08:29:33","deletedBy":0,"deletedAt":""},{"id":186,"parentId":-1,"menuId":131,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:29:55","updatedBy":0,"updatedAt":"2023-04-10 08:29:55","deletedBy":0,"deletedAt":""},{"id":188,"parentId":-1,"menuId":131,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:30:43","updatedBy":0,"updatedAt":"2023-04-10 08:30:43","deletedBy":0,"deletedAt":""},{"id":189,"parentId":-1,"menuId":133,"name":"保存","types":"save","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 20:44:19","updatedBy":0,"updatedAt":"2023-04-10 20:44:19","deletedBy":0,"deletedAt":""},{"id":190,"parentId":-1,"menuId":110,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-16 00:04:47","updatedBy":0,"updatedAt":"2023-04-16 00:04:47","deletedBy":0,"deletedAt":""},{"id":191,"parentId":-1,"menuId":110,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-16 00:04:50","updatedBy":0,"updatedAt":"2023-04-16 00:04:50","deletedBy":0,"deletedAt":""},{"id":192,"parentId":-1,"menuId":51,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-17 22:19:03","updatedBy":1,"updatedAt":"2023-05-21 22:17:47","deletedBy":0,"deletedAt":""},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","types":"mutipleBind","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-17 22:23:05","updatedBy":1,"updatedAt":"2023-05-21 22:17:49","deletedBy":0,"deletedAt":""},{"id":196,"parentId":-1,"menuId":34,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:28:58","updatedBy":0,"updatedAt":"2023-06-19 11:28:58","deletedBy":0,"deletedAt":""},{"id":197,"parentId":-1,"menuId":34,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:29:14","updatedBy":0,"updatedAt":"2023-06-19 11:29:14","deletedBy":0,"deletedAt":""},{"id":198,"parentId":-1,"menuId":136,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:32:32","updatedBy":0,"updatedAt":"2023-06-19 11:32:32","deletedBy":0,"deletedAt":""},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:32:36","updatedBy":0,"updatedAt":"2023-06-19 11:32:36","deletedBy":0,"deletedAt":""},{"id":200,"parentId":-1,"menuId":136,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:32:38","updatedBy":0,"updatedAt":"2023-06-19 11:32:38","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuColumn -$49729 -[{"id":1,"parentId":-1,"menuId":34,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 21:57:56","updatedBy":1,"updatedAt":"2022-11-06 10:06:24","deletedBy":0,"deletedAt":""},{"id":3,"parentId":-1,"menuId":34,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 06:13:48","updatedBy":1,"updatedAt":"2022-11-06 10:06:35","deletedBy":0,"deletedAt":""},{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:05:00","updatedBy":0,"updatedAt":"2022-11-03 00:05:00","deletedBy":0,"deletedAt":""},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","code":"number","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:05:24","updatedBy":0,"updatedAt":"2022-11-03 00:05:24","deletedBy":0,"deletedAt":""},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:05:47","updatedBy":0,"updatedAt":"2022-11-03 00:05:47","deletedBy":0,"deletedAt":""},{"id":11,"parentId":-1,"menuId":13,"name":"排序","code":"orderNum","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:06:11","updatedBy":0,"updatedAt":"2022-11-03 00:06:11","deletedBy":0,"deletedAt":""},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:06:28","updatedBy":0,"updatedAt":"2022-11-03 00:06:28","deletedBy":0,"deletedAt":""},{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","code":"userName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:19:30","updatedBy":0,"updatedAt":"2022-11-03 00:19:30","deletedBy":0,"deletedAt":""},{"id":14,"parentId":-1,"menuId":15,"name":"角色","code":"rolesNames","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:23:49","updatedBy":0,"updatedAt":"2022-11-03 00:23:49","deletedBy":0,"deletedAt":""},{"id":15,"parentId":-1,"menuId":15,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:24:08","updatedBy":0,"updatedAt":"2022-11-03 00:24:08","deletedBy":0,"deletedAt":""},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:24:28","updatedBy":0,"updatedAt":"2022-11-03 00:24:28","deletedBy":0,"deletedAt":""},{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:10:18","updatedBy":0,"updatedAt":"2022-11-03 11:10:18","deletedBy":0,"deletedAt":""},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","code":"from","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:10:27","updatedBy":0,"updatedAt":"2022-11-03 11:10:27","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"menuId":37,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:10:37","updatedBy":0,"updatedAt":"2022-11-03 11:10:37","deletedBy":0,"deletedAt":""},{"id":20,"parentId":-1,"menuId":37,"name":"ID","code":"sourceId","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:11:36","updatedBy":0,"updatedAt":"2022-11-03 11:11:36","deletedBy":0,"deletedAt":""},{"id":21,"parentId":-1,"menuId":15,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:05:26","updatedBy":0,"updatedAt":"2022-11-03 20:05:26","deletedBy":0,"deletedAt":""},{"id":22,"parentId":-1,"menuId":13,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:06:26","updatedBy":0,"updatedAt":"2022-11-03 20:06:26","deletedBy":0,"deletedAt":""},{"id":23,"parentId":-1,"menuId":12,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:06:55","updatedBy":0,"updatedAt":"2022-11-03 20:06:55","deletedBy":0,"deletedAt":""},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:07:46","updatedBy":0,"updatedAt":"2022-11-03 20:07:46","deletedBy":0,"deletedAt":""},{"id":25,"parentId":-1,"menuId":12,"name":"排序","code":"orderNum","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:08:00","updatedBy":0,"updatedAt":"2022-11-03 20:08:00","deletedBy":0,"deletedAt":""},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:08:25","updatedBy":0,"updatedAt":"2022-11-03 20:08:25","deletedBy":0,"deletedAt":""},{"id":27,"parentId":-1,"menuId":14,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:20:47","updatedBy":0,"updatedAt":"2022-11-03 20:20:47","deletedBy":0,"deletedAt":""},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:20:51","updatedBy":0,"updatedAt":"2022-11-03 20:20:51","deletedBy":0,"deletedAt":""},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:21:46","updatedBy":0,"updatedAt":"2022-11-03 20:21:46","deletedBy":0,"deletedAt":""},{"id":30,"parentId":-1,"menuId":14,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:26:21","updatedBy":0,"updatedAt":"2022-11-03 20:26:21","deletedBy":0,"deletedAt":""},{"id":31,"parentId":-1,"menuId":14,"name":"排序","code":"postSort","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:26:35","updatedBy":0,"updatedAt":"2022-11-03 20:26:35","deletedBy":0,"deletedAt":""},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","code":"postName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:27:21","updatedBy":0,"updatedAt":"2022-11-03 20:27:21","deletedBy":0,"deletedAt":""},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","code":"postCode","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:27:32","updatedBy":0,"updatedAt":"2022-11-03 20:27:32","deletedBy":0,"deletedAt":""},{"id":34,"parentId":-1,"menuId":10,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:19","updatedBy":0,"updatedAt":"2022-11-03 20:32:19","deletedBy":0,"deletedAt":""},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:20","updatedBy":0,"updatedAt":"2022-11-03 20:32:20","deletedBy":0,"deletedAt":""},{"id":36,"parentId":-1,"menuId":10,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:21","updatedBy":0,"updatedAt":"2022-11-03 20:32:21","deletedBy":0,"deletedAt":""},{"id":37,"parentId":-1,"menuId":10,"name":"排序","code":"listOrder","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:34","updatedBy":0,"updatedAt":"2022-11-03 20:32:34","deletedBy":0,"deletedAt":""},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:44","updatedBy":0,"updatedAt":"2022-11-03 20:32:44","deletedBy":0,"deletedAt":""},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:54","updatedBy":0,"updatedAt":"2022-11-03 20:32:54","deletedBy":0,"deletedAt":""},{"id":40,"parentId":-1,"menuId":18,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:39:18","updatedBy":0,"updatedAt":"2022-11-03 20:39:18","deletedBy":0,"deletedAt":""},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","code":"loginLocation","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:39:34","updatedBy":0,"updatedAt":"2022-11-03 20:39:34","deletedBy":0,"deletedAt":""},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","code":"msg","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:39:50","updatedBy":0,"updatedAt":"2022-11-03 20:39:50","deletedBy":0,"deletedAt":""},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","code":"loginTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 12:40:03","updatedBy":1,"updatedAt":"2022-11-03 20:40:23","deletedBy":0,"deletedAt":""},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","code":"module","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:40:15","updatedBy":0,"updatedAt":"2022-11-03 20:40:15","deletedBy":0,"deletedAt":""},{"id":45,"parentId":-1,"menuId":49,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:43:02","updatedBy":0,"updatedAt":"2022-11-03 20:43:02","deletedBy":0,"deletedAt":""},{"id":46,"parentId":-1,"menuId":49,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:43:15","updatedBy":0,"updatedAt":"2022-11-03 20:43:15","deletedBy":0,"deletedAt":""},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","code":"operatorType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:44:09","updatedBy":0,"updatedAt":"2022-11-03 20:44:09","deletedBy":0,"deletedAt":""},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","code":"operName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:45:06","updatedBy":0,"updatedAt":"2022-11-03 20:45:06","deletedBy":0,"deletedAt":""},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","code":"operLocation","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:45:20","updatedBy":0,"updatedAt":"2022-11-03 20:45:20","deletedBy":0,"deletedAt":""},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","code":"operTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:45:31","updatedBy":0,"updatedAt":"2022-11-03 20:45:31","deletedBy":0,"deletedAt":""},{"id":51,"parentId":-1,"menuId":50,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:48:09","updatedBy":0,"updatedAt":"2022-11-03 20:48:09","deletedBy":0,"deletedAt":""},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","code":"userName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:49:36","updatedBy":0,"updatedAt":"2022-11-03 20:49:36","deletedBy":0,"deletedAt":""},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","code":"ip","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:49:45","updatedBy":0,"updatedAt":"2022-11-03 20:49:45","deletedBy":0,"deletedAt":""},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","code":"os","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:49:53","updatedBy":0,"updatedAt":"2022-11-03 20:49:53","deletedBy":0,"deletedAt":""},{"id":55,"parentId":-1,"menuId":110,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:01:29","updatedBy":0,"updatedAt":"2022-11-03 21:01:29","deletedBy":0,"deletedAt":""},{"id":56,"parentId":-1,"menuId":110,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:01:57","updatedBy":0,"updatedAt":"2022-11-03 21:01:57","deletedBy":0,"deletedAt":""},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","code":"author","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:02:05","updatedBy":0,"updatedAt":"2022-11-03 21:02:05","deletedBy":0,"deletedAt":""},{"id":58,"parentId":-1,"menuId":110,"name":"说明","code":"description","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:02:13","updatedBy":1,"updatedAt":"2023-04-16 00:03:16","deletedBy":0,"deletedAt":""},{"id":59,"parentId":-1,"menuId":110,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:02:21","updatedBy":0,"updatedAt":"2022-11-03 21:02:21","deletedBy":0,"deletedAt":""},{"id":110,"parentId":-1,"menuId":39,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:49:11","updatedBy":0,"updatedAt":"2022-11-06 09:49:11","deletedBy":0,"deletedAt":""},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:49:27","updatedBy":0,"updatedAt":"2022-11-06 09:49:27","deletedBy":0,"deletedAt":""},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:49:37","updatedBy":0,"updatedAt":"2022-11-06 09:49:37","deletedBy":0,"deletedAt":""},{"id":113,"parentId":-1,"menuId":39,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:49:40","updatedBy":0,"updatedAt":"2022-11-06 09:49:40","deletedBy":0,"deletedAt":""},{"id":114,"parentId":-1,"menuId":61,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:55:37","updatedBy":0,"updatedAt":"2022-11-06 09:55:37","deletedBy":0,"deletedAt":""},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-05 17:55:43","updatedBy":1,"updatedAt":"2022-11-06 09:55:59","deletedBy":0,"deletedAt":""},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:56:07","updatedBy":0,"updatedAt":"2022-11-06 09:56:07","deletedBy":0,"deletedAt":""},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","code":"dataType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:56:15","updatedBy":0,"updatedAt":"2022-11-06 09:56:15","deletedBy":0,"deletedAt":""},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","code":"value","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:56:22","updatedBy":0,"updatedAt":"2022-11-06 09:56:22","deletedBy":0,"deletedAt":""},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:56:31","updatedBy":0,"updatedAt":"2022-11-06 09:56:31","deletedBy":0,"deletedAt":""},{"id":120,"parentId":-1,"menuId":64,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:29","updatedBy":0,"updatedAt":"2022-11-06 10:01:29","deletedBy":0,"deletedAt":""},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:38","updatedBy":0,"updatedAt":"2022-11-06 10:01:38","deletedBy":0,"deletedAt":""},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:45","updatedBy":0,"updatedAt":"2022-11-06 10:01:45","deletedBy":0,"deletedAt":""},{"id":123,"parentId":-1,"menuId":64,"name":"类型","code":"dataType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:51","updatedBy":0,"updatedAt":"2022-11-06 10:01:51","deletedBy":0,"deletedAt":""},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","code":"from","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:59","updatedBy":0,"updatedAt":"2022-11-06 10:01:59","deletedBy":0,"deletedAt":""},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","code":"default","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:02:10","updatedBy":0,"updatedAt":"2022-11-06 10:02:10","deletedBy":0,"deletedAt":""},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","code":"value","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:02:17","updatedBy":0,"updatedAt":"2022-11-06 10:02:17","deletedBy":0,"deletedAt":""},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:02:24","updatedBy":0,"updatedAt":"2022-11-06 10:02:24","deletedBy":0,"deletedAt":""},{"id":128,"parentId":-1,"menuId":34,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:06:42","updatedBy":0,"updatedAt":"2022-11-06 10:06:42","deletedBy":0,"deletedAt":""},{"id":129,"parentId":-1,"menuId":34,"name":"分类","code":"categoryName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:06:49","updatedBy":0,"updatedAt":"2022-11-06 10:06:49","deletedBy":0,"deletedAt":""},{"id":130,"parentId":-1,"menuId":34,"name":"部门","code":"deptName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:06:56","updatedBy":0,"updatedAt":"2022-11-06 10:06:56","deletedBy":0,"deletedAt":""},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","code":"messageProtocol","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:07:11","updatedBy":0,"updatedAt":"2022-11-06 10:07:11","deletedBy":0,"deletedAt":""},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","code":"transportProtocol","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:07:23","updatedBy":0,"updatedAt":"2022-11-06 10:07:23","deletedBy":0,"deletedAt":""},{"id":133,"parentId":-1,"menuId":34,"name":"类型","code":"deviceType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:07:33","updatedBy":0,"updatedAt":"2022-11-06 10:07:33","deletedBy":0,"deletedAt":""},{"id":134,"parentId":-1,"menuId":34,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:07:41","updatedBy":0,"updatedAt":"2022-11-06 10:07:41","deletedBy":0,"deletedAt":""},{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:12:59","updatedBy":0,"updatedAt":"2022-11-06 10:12:59","deletedBy":0,"deletedAt":""},{"id":136,"parentId":-1,"menuId":35,"name":"描述","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 02:13:03","updatedBy":1,"updatedAt":"2022-11-08 23:46:21","deletedBy":0,"deletedAt":""},{"id":137,"parentId":-1,"menuId":36,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:15:48","updatedBy":0,"updatedAt":"2022-11-06 10:15:48","deletedBy":0,"deletedAt":""},{"id":138,"parentId":-1,"menuId":36,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:15:58","updatedBy":0,"updatedAt":"2022-11-06 10:15:58","deletedBy":0,"deletedAt":""},{"id":139,"parentId":-1,"menuId":36,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:16:06","updatedBy":0,"updatedAt":"2022-11-06 10:16:06","deletedBy":0,"deletedAt":""},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","code":"productName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:16:13","updatedBy":0,"updatedAt":"2022-11-06 10:16:13","deletedBy":0,"deletedAt":""},{"id":142,"parentId":-1,"menuId":36,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 02:16:30","updatedBy":1,"updatedAt":"2022-11-06 10:16:54","deletedBy":0,"deletedAt":""},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","code":"registryTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:16:38","updatedBy":0,"updatedAt":"2022-11-06 10:16:38","deletedBy":0,"deletedAt":""},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:16:47","updatedBy":0,"updatedAt":"2022-11-06 10:16:47","deletedBy":0,"deletedAt":""},{"id":145,"parentId":-1,"menuId":66,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 00:01:36","updatedBy":0,"updatedAt":"2022-11-07 00:01:36","deletedBy":0,"deletedAt":""},{"id":146,"parentId":-1,"menuId":66,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 00:01:52","updatedBy":0,"updatedAt":"2022-11-07 00:01:52","deletedBy":0,"deletedAt":""},{"id":147,"parentId":-1,"menuId":66,"name":"类型","code":"type","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 00:02:08","updatedBy":0,"updatedAt":"2022-11-07 00:02:08","deletedBy":0,"deletedAt":""},{"id":148,"parentId":-1,"menuId":66,"name":"地址","code":"address","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 00:02:21","updatedBy":0,"updatedAt":"2022-11-07 00:02:21","deletedBy":0,"deletedAt":""},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","code":"createTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 16:02:46","updatedBy":1,"updatedAt":"2022-11-07 00:02:55","deletedBy":0,"deletedAt":""},{"id":150,"parentId":-1,"menuId":2,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:23:51","updatedBy":0,"updatedAt":"2022-11-07 21:23:51","deletedBy":0,"deletedAt":""},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","code":"title","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:24:01","updatedBy":0,"updatedAt":"2022-11-07 21:24:01","deletedBy":0,"deletedAt":""},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","code":"path","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:02","updatedBy":0,"updatedAt":"2022-11-07 21:25:02","deletedBy":0,"deletedAt":""},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","code":"component","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:13","updatedBy":0,"updatedAt":"2022-11-07 21:25:13","deletedBy":0,"deletedAt":""},{"id":155,"parentId":-1,"menuId":2,"name":"排序","code":"weigh","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:20","updatedBy":0,"updatedAt":"2022-11-07 21:25:20","deletedBy":0,"deletedAt":""},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","code":"menuType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:34","updatedBy":0,"updatedAt":"2022-11-07 21:25:34","deletedBy":0,"deletedAt":""},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","code":"isHide","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:48","updatedBy":0,"updatedAt":"2022-11-07 21:25:48","deletedBy":0,"deletedAt":""},{"id":158,"parentId":-1,"menuId":16,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:42:05","updatedBy":0,"updatedAt":"2022-11-07 21:42:05","deletedBy":0,"deletedAt":""},{"id":159,"parentId":-1,"menuId":16,"name":"ID","code":"configId","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:42:35","updatedBy":0,"updatedAt":"2022-11-07 21:42:35","deletedBy":0,"deletedAt":""},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","code":"configName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:42:45","updatedBy":0,"updatedAt":"2022-11-07 21:42:45","deletedBy":0,"deletedAt":""},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","code":"configKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:42:57","updatedBy":0,"updatedAt":"2022-11-07 21:42:57","deletedBy":0,"deletedAt":""},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","code":"configValue","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:43:07","updatedBy":0,"updatedAt":"2022-11-07 21:43:07","deletedBy":0,"deletedAt":""},{"id":163,"parentId":-1,"menuId":16,"name":"备注","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:43:15","updatedBy":0,"updatedAt":"2022-11-07 21:43:15","deletedBy":0,"deletedAt":""},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","code":"configType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:43:26","updatedBy":0,"updatedAt":"2022-11-07 21:43:26","deletedBy":0,"deletedAt":""},{"id":165,"parentId":-1,"menuId":21,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:53:45","updatedBy":0,"updatedAt":"2022-11-07 21:53:45","deletedBy":0,"deletedAt":""},{"id":166,"parentId":-1,"menuId":21,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:53:49","updatedBy":0,"updatedAt":"2022-11-07 21:53:49","deletedBy":0,"deletedAt":""},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","code":"dictId","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:54:01","updatedBy":0,"updatedAt":"2022-11-07 21:54:01","deletedBy":0,"deletedAt":""},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","code":"dictName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:54:09","updatedBy":0,"updatedAt":"2022-11-07 21:54:09","deletedBy":0,"deletedAt":""},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","code":"dictType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:54:19","updatedBy":0,"updatedAt":"2022-11-07 21:54:19","deletedBy":0,"deletedAt":""},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:54:32","updatedBy":0,"updatedAt":"2022-11-07 21:54:32","deletedBy":0,"deletedAt":""},{"id":171,"parentId":-1,"menuId":22,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:56:33","updatedBy":0,"updatedAt":"2022-11-07 21:56:33","deletedBy":0,"deletedAt":""},{"id":172,"parentId":-1,"menuId":22,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:57:20","updatedBy":0,"updatedAt":"2022-11-07 21:57:20","deletedBy":0,"deletedAt":""},{"id":173,"parentId":-1,"menuId":22,"name":"备注","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:57:35","updatedBy":0,"updatedAt":"2022-11-07 21:57:35","deletedBy":0,"deletedAt":""},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","code":"dictSort","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:57:44","updatedBy":0,"updatedAt":"2022-11-07 21:57:44","deletedBy":0,"deletedAt":""},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","code":"dictValue","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:58:00","updatedBy":0,"updatedAt":"2022-11-07 21:58:00","deletedBy":0,"deletedAt":""},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","code":"dictLabel","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:58:11","updatedBy":0,"updatedAt":"2022-11-07 21:58:11","deletedBy":0,"deletedAt":""},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","code":"dictCode","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:58:20","updatedBy":0,"updatedAt":"2022-11-07 21:58:20","deletedBy":0,"deletedAt":""},{"id":178,"parentId":-1,"menuId":32,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:01:31","updatedBy":0,"updatedAt":"2022-11-07 22:01:31","deletedBy":0,"deletedAt":""},{"id":179,"parentId":-1,"menuId":32,"name":"名称","code":"title","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:01:40","updatedBy":0,"updatedAt":"2022-11-07 22:01:40","deletedBy":0,"deletedAt":""},{"id":180,"parentId":-1,"menuId":32,"name":"描述","code":"explain","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:01:48","updatedBy":0,"updatedAt":"2022-11-07 22:01:48","deletedBy":0,"deletedAt":""},{"id":181,"parentId":-1,"menuId":46,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:42:33","updatedBy":0,"updatedAt":"2022-11-07 22:42:33","deletedBy":0,"deletedAt":""},{"id":182,"parentId":-1,"menuId":46,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:42:34","updatedBy":0,"updatedAt":"2022-11-07 22:42:34","deletedBy":0,"deletedAt":""},{"id":183,"parentId":-1,"menuId":46,"name":"ID","code":"jobId","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:42:46","updatedBy":0,"updatedAt":"2022-11-07 22:42:46","deletedBy":0,"deletedAt":""},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","code":"jobName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:42:57","updatedBy":0,"updatedAt":"2022-11-07 22:42:57","deletedBy":0,"deletedAt":""},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:43:06","updatedBy":0,"updatedAt":"2022-11-07 22:43:06","deletedBy":0,"deletedAt":""},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","code":"jobGroup","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:43:13","updatedBy":0,"updatedAt":"2022-11-07 22:43:13","deletedBy":0,"deletedAt":""},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","code":"invokeTarget","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:43:24","updatedBy":0,"updatedAt":"2022-11-07 22:43:24","deletedBy":0,"deletedAt":""},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","code":"cronExpression","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:43:36","updatedBy":0,"updatedAt":"2022-11-07 22:43:36","deletedBy":0,"deletedAt":""},{"id":189,"parentId":-1,"menuId":48,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:56","updatedBy":0,"updatedAt":"2022-11-07 22:44:56","deletedBy":0,"deletedAt":""},{"id":190,"parentId":-1,"menuId":48,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:57","updatedBy":0,"updatedAt":"2022-11-07 22:44:57","deletedBy":0,"deletedAt":""},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:45:03","updatedBy":0,"updatedAt":"2022-11-07 22:45:03","deletedBy":0,"deletedAt":""},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","code":"address","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:45:13","updatedBy":0,"updatedAt":"2022-11-07 22:45:13","deletedBy":0,"deletedAt":""},{"id":193,"parentId":-1,"menuId":85,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:47:35","updatedBy":0,"updatedAt":"2022-11-07 22:47:35","deletedBy":0,"deletedAt":""},{"id":194,"parentId":-1,"menuId":85,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:48:56","updatedBy":0,"updatedAt":"2022-11-07 22:48:56","deletedBy":0,"deletedAt":""},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:48:57","updatedBy":0,"updatedAt":"2022-11-07 22:48:57","deletedBy":0,"deletedAt":""},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:49:11","updatedBy":0,"updatedAt":"2022-11-07 22:49:11","deletedBy":0,"deletedAt":""},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","code":"code","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:49:19","updatedBy":0,"updatedAt":"2022-11-07 22:49:19","deletedBy":0,"deletedAt":""},{"id":198,"parentId":-1,"menuId":39,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-08 23:38:11","updatedBy":0,"updatedAt":"2022-11-08 23:38:11","deletedBy":0,"deletedAt":""},{"id":199,"parentId":-1,"menuId":39,"name":"描述","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-08 23:38:21","updatedBy":0,"updatedAt":"2022-11-08 23:38:21","deletedBy":0,"deletedAt":""},{"id":200,"parentId":-1,"menuId":66,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:10:17","updatedBy":0,"updatedAt":"2022-11-11 15:10:17","deletedBy":0,"deletedAt":""},{"id":201,"parentId":-1,"menuId":66,"name":"操作","code":"auth","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:12:19","updatedBy":0,"updatedAt":"2022-11-11 15:12:19","deletedBy":0,"deletedAt":""},{"id":202,"parentId":-1,"menuId":70,"name":"操作","code":"auth","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:35:32","updatedBy":0,"updatedAt":"2022-11-11 15:35:32","deletedBy":0,"deletedAt":""},{"id":203,"parentId":-1,"menuId":70,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:02","updatedBy":0,"updatedAt":"2022-11-11 15:36:02","deletedBy":0,"deletedAt":""},{"id":204,"parentId":-1,"menuId":70,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:11","updatedBy":0,"updatedAt":"2022-11-11 15:36:11","deletedBy":0,"deletedAt":""},{"id":205,"parentId":-1,"menuId":70,"name":"类型","code":"types","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:22","updatedBy":0,"updatedAt":"2022-11-11 15:36:22","deletedBy":0,"deletedAt":""},{"id":206,"parentId":-1,"menuId":70,"name":"地址","code":"addr","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:32","updatedBy":0,"updatedAt":"2022-11-11 15:36:32","deletedBy":0,"deletedAt":""},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:51","updatedBy":0,"updatedAt":"2022-11-11 15:36:51","deletedBy":0,"deletedAt":""},{"id":208,"parentId":-1,"menuId":70,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:37:43","updatedBy":0,"updatedAt":"2022-11-11 15:37:43","deletedBy":0,"deletedAt":""},{"id":209,"parentId":-1,"menuId":37,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:12:39","updatedBy":1,"updatedAt":"2022-11-12 01:12:53","deletedBy":0,"deletedAt":""},{"id":210,"parentId":-1,"menuId":39,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-12 01:13:13","updatedBy":0,"updatedAt":"2022-11-12 01:13:13","deletedBy":0,"deletedAt":""},{"id":211,"parentId":-1,"menuId":115,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:10","updatedBy":0,"updatedAt":"2022-11-15 14:45:10","deletedBy":0,"deletedAt":""},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","code":"type","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:23","updatedBy":0,"updatedAt":"2022-11-15 14:45:23","deletedBy":0,"deletedAt":""},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","code":"ruleName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:34","updatedBy":0,"updatedAt":"2022-11-15 14:45:34","deletedBy":0,"deletedAt":""},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","code":"alarmLevel","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:41","updatedBy":0,"updatedAt":"2022-11-15 14:45:41","deletedBy":0,"deletedAt":""},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","code":"productKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:49","updatedBy":0,"updatedAt":"2022-11-15 14:45:49","deletedBy":0,"deletedAt":""},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","code":"deviceKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:57","updatedBy":0,"updatedAt":"2022-11-15 14:45:57","deletedBy":0,"deletedAt":""},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:46:06","updatedBy":0,"updatedAt":"2022-11-15 14:46:06","deletedBy":0,"deletedAt":""},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:46:15","updatedBy":0,"updatedAt":"2022-11-15 14:46:15","deletedBy":0,"deletedAt":""},{"id":219,"parentId":-1,"menuId":115,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:46:23","updatedBy":0,"updatedAt":"2022-11-15 14:46:23","deletedBy":0,"deletedAt":""},{"id":220,"parentId":-1,"menuId":114,"name":"图标","code":"image","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:31:35","updatedBy":0,"updatedAt":"2022-11-23 10:31:35","deletedBy":0,"deletedAt":""},{"id":221,"parentId":-1,"menuId":114,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:32:14","updatedBy":0,"updatedAt":"2022-11-23 10:32:14","deletedBy":0,"deletedAt":""},{"id":222,"parentId":-1,"menuId":114,"name":"属性","code":"alarm","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:33:14","updatedBy":0,"updatedAt":"2022-11-23 10:33:14","deletedBy":0,"deletedAt":""},{"id":223,"parentId":-1,"menuId":114,"name":"状态","code":"liststatus","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:33:36","updatedBy":0,"updatedAt":"2022-11-23 10:33:36","deletedBy":0,"deletedAt":""},{"id":224,"parentId":-1,"menuId":92,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:21:34","updatedBy":0,"updatedAt":"2022-11-28 10:21:34","deletedBy":0,"deletedAt":""},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","code":"type","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:21:46","updatedBy":0,"updatedAt":"2022-11-28 10:21:46","deletedBy":0,"deletedAt":""},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","code":"ruleName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:22:05","updatedBy":0,"updatedAt":"2022-11-28 10:22:05","deletedBy":0,"deletedAt":""},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","code":"alarmLevel","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:22:27","updatedBy":0,"updatedAt":"2022-11-28 10:22:27","deletedBy":0,"deletedAt":""},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","code":"productKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:22:52","updatedBy":0,"updatedAt":"2022-11-28 10:22:52","deletedBy":0,"deletedAt":""},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","code":"deviceKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:23:24","updatedBy":0,"updatedAt":"2022-11-28 10:23:24","deletedBy":0,"deletedAt":""},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:23:39","updatedBy":0,"updatedAt":"2022-11-28 10:23:39","deletedBy":0,"deletedAt":""},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 02:23:54","updatedBy":1,"updatedAt":"2022-11-28 10:24:01","deletedBy":0,"deletedAt":""},{"id":232,"parentId":-1,"menuId":92,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:24:14","updatedBy":0,"updatedAt":"2022-11-28 10:24:14","deletedBy":0,"deletedAt":""},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","code":"deptName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-04 21:57:22","updatedBy":0,"updatedAt":"2022-12-04 21:57:22","deletedBy":0,"deletedAt":""},{"id":234,"parentId":-1,"menuId":41,"name":"标题","code":"title","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:39:28","updatedBy":0,"updatedAt":"2022-12-07 14:39:28","deletedBy":0,"deletedAt":""},{"id":235,"parentId":-1,"menuId":41,"name":"描述","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:39:38","updatedBy":0,"updatedAt":"2022-12-07 14:39:38","deletedBy":0,"deletedAt":""},{"id":236,"parentId":-1,"menuId":41,"name":"图标","code":"image","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:40:56","updatedBy":0,"updatedAt":"2022-12-07 14:40:56","deletedBy":0,"deletedAt":""},{"id":237,"parentId":-1,"menuId":41,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:40:58","updatedBy":0,"updatedAt":"2022-12-07 14:40:58","deletedBy":0,"deletedAt":""},{"id":238,"parentId":-1,"menuId":42,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:00","updatedBy":1,"updatedAt":"2022-12-15 19:39:19","deletedBy":0,"deletedAt":""},{"id":239,"parentId":-1,"menuId":42,"name":"标题","code":"title","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:34","updatedBy":0,"updatedAt":"2022-12-15 19:39:34","deletedBy":0,"deletedAt":""},{"id":240,"parentId":-1,"menuId":42,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:54","updatedBy":0,"updatedAt":"2022-12-15 19:39:54","deletedBy":0,"deletedAt":""},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:56","updatedBy":0,"updatedAt":"2022-12-15 19:39:56","deletedBy":0,"deletedAt":""},{"id":242,"parentId":-1,"menuId":42,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:58","updatedBy":0,"updatedAt":"2022-12-15 19:39:58","deletedBy":0,"deletedAt":""},{"id":245,"parentId":-1,"menuId":39,"name":"类型","code":"typeName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-29 16:56:09","updatedBy":0,"updatedAt":"2023-01-29 16:56:09","deletedBy":0,"deletedAt":""},{"id":246,"parentId":-1,"menuId":119,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:33","updatedBy":0,"updatedAt":"2023-02-03 10:15:33","deletedBy":0,"deletedAt":""},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:35","updatedBy":0,"updatedAt":"2023-02-03 10:15:35","deletedBy":0,"deletedAt":""},{"id":248,"parentId":-1,"menuId":119,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:36","updatedBy":0,"updatedAt":"2023-02-03 10:15:36","deletedBy":0,"deletedAt":""},{"id":249,"parentId":-1,"menuId":119,"name":"ip","code":"ip","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:46","updatedBy":0,"updatedAt":"2023-02-03 10:15:46","deletedBy":0,"deletedAt":""},{"id":250,"parentId":-1,"menuId":119,"name":"备注","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:57","updatedBy":0,"updatedAt":"2023-02-03 10:15:57","deletedBy":0,"deletedAt":""},{"id":252,"parentId":-1,"menuId":35,"name":"排序","code":"sort","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-28 11:11:57","updatedBy":0,"updatedAt":"2023-03-28 11:11:57","deletedBy":0,"deletedAt":""},{"id":253,"parentId":-1,"menuId":131,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:31:51","updatedBy":0,"updatedAt":"2023-04-10 08:31:51","deletedBy":0,"deletedAt":""},{"id":254,"parentId":-1,"menuId":131,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:32:01","updatedBy":1,"updatedAt":"2023-04-10 08:33:21","deletedBy":0,"deletedAt":""},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:33:44","updatedBy":0,"updatedAt":"2023-04-10 08:33:44","deletedBy":0,"deletedAt":""},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","code":"standard","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:34:13","updatedBy":0,"updatedAt":"2023-04-10 08:34:13","deletedBy":0,"deletedAt":""},{"id":257,"parentId":-1,"menuId":131,"name":"说明","code":"description","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:34:35","updatedBy":0,"updatedAt":"2023-04-10 08:34:35","deletedBy":0,"deletedAt":""},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","code":"types","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-16 00:03:40","updatedBy":0,"updatedAt":"2023-04-16 00:03:40","deletedBy":0,"deletedAt":""},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","code":"handleType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-16 00:04:08","updatedBy":0,"updatedAt":"2023-04-16 00:04:08","deletedBy":0,"deletedAt":""},{"id":260,"parentId":-1,"menuId":36,"name":"说明","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-17 21:18:50","updatedBy":0,"updatedAt":"2023-05-17 21:18:50","deletedBy":0,"deletedAt":""},{"id":261,"parentId":-1,"menuId":51,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:23:00","updatedBy":0,"updatedAt":"2023-05-22 11:23:00","deletedBy":0,"deletedAt":""},{"id":262,"parentId":-1,"menuId":51,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:23:15","updatedBy":0,"updatedAt":"2023-05-22 11:23:15","deletedBy":0,"deletedAt":""},{"id":263,"parentId":-1,"menuId":51,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:23:36","updatedBy":0,"updatedAt":"2023-05-22 11:23:36","deletedBy":0,"deletedAt":""},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","code":"productName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:23:51","updatedBy":0,"updatedAt":"2023-05-22 11:23:51","deletedBy":0,"deletedAt":""},{"id":265,"parentId":-1,"menuId":51,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:24:06","updatedBy":0,"updatedAt":"2023-05-22 11:24:06","deletedBy":0,"deletedAt":""},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","code":"registryTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:24:35","updatedBy":0,"updatedAt":"2023-05-22 11:24:35","deletedBy":0,"deletedAt":""},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:24:55","updatedBy":0,"updatedAt":"2023-05-22 11:24:55","deletedBy":0,"deletedAt":""},{"id":268,"parentId":-1,"menuId":51,"name":"说明","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:25:12","updatedBy":0,"updatedAt":"2023-05-22 11:25:12","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$19 -SagooIOT_sysMenuApi -$34236 -[{"id":74,"menuId":100,"apiId":20,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:03:50","deletedBy":0,"deletedAt":""},{"id":109,"menuId":78,"apiId":50,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:24:04","deletedBy":0,"deletedAt":""},{"id":110,"menuId":78,"apiId":51,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:24:17","deletedBy":0,"deletedAt":""},{"id":111,"menuId":113,"apiId":52,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:00:06","deletedBy":0,"deletedAt":""},{"id":112,"menuId":76,"apiId":48,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:05:44","deletedBy":0,"deletedAt":""},{"id":113,"menuId":113,"apiId":48,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:05:44","deletedBy":0,"deletedAt":""},{"id":114,"menuId":113,"apiId":53,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:06:39","deletedBy":0,"deletedAt":""},{"id":116,"menuId":84,"apiId":55,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:09:21","deletedBy":0,"deletedAt":""},{"id":117,"menuId":84,"apiId":56,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:11:05","deletedBy":0,"deletedAt":""},{"id":118,"menuId":84,"apiId":57,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:11:34","deletedBy":0,"deletedAt":""},{"id":119,"menuId":84,"apiId":58,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:11:58","deletedBy":0,"deletedAt":""},{"id":127,"menuId":104,"apiId":59,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:28:13","deletedBy":0,"deletedAt":""},{"id":128,"menuId":105,"apiId":59,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:28:13","deletedBy":0,"deletedAt":""},{"id":129,"menuId":106,"apiId":59,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:28:13","deletedBy":0,"deletedAt":""},{"id":130,"menuId":107,"apiId":59,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:28:13","deletedBy":0,"deletedAt":""},{"id":131,"menuId":34,"apiId":59,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:28:13","deletedBy":0,"deletedAt":""},{"id":132,"menuId":34,"apiId":60,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:29:19","deletedBy":0,"deletedAt":""},{"id":133,"menuId":35,"apiId":60,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:29:19","deletedBy":0,"deletedAt":""},{"id":138,"menuId":25,"apiId":64,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:40:16","deletedBy":0,"deletedAt":""},{"id":139,"menuId":25,"apiId":62,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:40:23","deletedBy":0,"deletedAt":""},{"id":140,"menuId":25,"apiId":65,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:43:04","deletedBy":0,"deletedAt":""},{"id":141,"menuId":25,"apiId":66,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:43:27","deletedBy":0,"deletedAt":""},{"id":142,"menuId":25,"apiId":67,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:43:53","deletedBy":0,"deletedAt":""},{"id":143,"menuId":25,"apiId":68,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:45:04","deletedBy":0,"deletedAt":""},{"id":144,"menuId":25,"apiId":69,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:45:22","deletedBy":0,"deletedAt":""},{"id":145,"menuId":25,"apiId":70,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:45:42","deletedBy":0,"deletedAt":""},{"id":147,"menuId":25,"apiId":71,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:47:27","deletedBy":0,"deletedAt":""},{"id":148,"menuId":25,"apiId":72,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:47:53","deletedBy":0,"deletedAt":""},{"id":149,"menuId":25,"apiId":73,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:48:14","deletedBy":0,"deletedAt":""},{"id":150,"menuId":44,"apiId":74,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:49:20","deletedBy":0,"deletedAt":""},{"id":151,"menuId":44,"apiId":75,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:49:46","deletedBy":0,"deletedAt":""},{"id":152,"menuId":44,"apiId":76,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:50:04","deletedBy":0,"deletedAt":""},{"id":153,"menuId":44,"apiId":77,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:50:28","deletedBy":0,"deletedAt":""},{"id":154,"menuId":44,"apiId":78,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:51:03","deletedBy":0,"deletedAt":""},{"id":155,"menuId":44,"apiId":79,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:51:27","deletedBy":0,"deletedAt":""},{"id":156,"menuId":44,"apiId":80,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:51:47","deletedBy":0,"deletedAt":""},{"id":157,"menuId":89,"apiId":81,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:00:30","deletedBy":0,"deletedAt":""},{"id":158,"menuId":90,"apiId":81,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:00:30","deletedBy":0,"deletedAt":""},{"id":159,"menuId":89,"apiId":82,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:11:46","deletedBy":0,"deletedAt":""},{"id":160,"menuId":90,"apiId":82,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:11:46","deletedBy":0,"deletedAt":""},{"id":161,"menuId":15,"apiId":83,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:13:04","deletedBy":0,"deletedAt":""},{"id":162,"menuId":15,"apiId":84,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:13:39","deletedBy":0,"deletedAt":""},{"id":163,"menuId":15,"apiId":85,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:14:14","deletedBy":0,"deletedAt":""},{"id":164,"menuId":15,"apiId":86,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:14:34","deletedBy":0,"deletedAt":""},{"id":165,"menuId":15,"apiId":87,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:15:04","deletedBy":0,"deletedAt":""},{"id":166,"menuId":15,"apiId":88,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:15:39","deletedBy":0,"deletedAt":""},{"id":167,"menuId":15,"apiId":89,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:16:04","deletedBy":0,"deletedAt":""},{"id":168,"menuId":37,"apiId":91,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 11:13:53","deletedBy":0,"deletedAt":""},{"id":169,"menuId":35,"apiId":92,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 11:39:54","deletedBy":0,"deletedAt":""},{"id":170,"menuId":35,"apiId":93,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 11:40:25","deletedBy":0,"deletedAt":""},{"id":171,"menuId":35,"apiId":94,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 11:41:08","deletedBy":0,"deletedAt":""},{"id":172,"menuId":113,"apiId":95,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 12:03:49","deletedBy":0,"deletedAt":""},{"id":173,"menuId":34,"apiId":96,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:01:10","deletedBy":0,"deletedAt":""},{"id":174,"menuId":34,"apiId":97,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:01:37","deletedBy":0,"deletedAt":""},{"id":175,"menuId":34,"apiId":98,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:01:54","deletedBy":0,"deletedAt":""},{"id":176,"menuId":34,"apiId":99,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:02:10","deletedBy":0,"deletedAt":""},{"id":177,"menuId":34,"apiId":100,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:02:24","deletedBy":0,"deletedAt":""},{"id":178,"menuId":34,"apiId":101,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:02:41","deletedBy":0,"deletedAt":""},{"id":179,"menuId":34,"apiId":102,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:02:57","deletedBy":0,"deletedAt":""},{"id":180,"menuId":34,"apiId":103,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:03:17","deletedBy":0,"deletedAt":""},{"id":181,"menuId":34,"apiId":104,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:03:43","deletedBy":0,"deletedAt":""},{"id":182,"menuId":34,"apiId":105,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:04:19","deletedBy":0,"deletedAt":""},{"id":183,"menuId":36,"apiId":106,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:04:35","deletedBy":0,"deletedAt":""},{"id":184,"menuId":36,"apiId":107,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:04:58","deletedBy":0,"deletedAt":""},{"id":185,"menuId":36,"apiId":108,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:05:19","deletedBy":0,"deletedAt":""},{"id":186,"menuId":36,"apiId":109,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:05:34","deletedBy":0,"deletedAt":""},{"id":187,"menuId":36,"apiId":110,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:06:13","deletedBy":0,"deletedAt":""},{"id":188,"menuId":36,"apiId":111,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:06:30","deletedBy":0,"deletedAt":""},{"id":189,"menuId":51,"apiId":112,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:06:54","deletedBy":0,"deletedAt":""},{"id":190,"menuId":51,"apiId":113,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:07:11","deletedBy":0,"deletedAt":""},{"id":191,"menuId":51,"apiId":114,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:07:26","deletedBy":0,"deletedAt":""},{"id":192,"menuId":51,"apiId":115,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:07:43","deletedBy":0,"deletedAt":""},{"id":193,"menuId":51,"apiId":116,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:08:00","deletedBy":0,"deletedAt":""},{"id":194,"menuId":36,"apiId":117,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:08:18","deletedBy":0,"deletedAt":""},{"id":195,"menuId":36,"apiId":118,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:08:37","deletedBy":0,"deletedAt":""},{"id":196,"menuId":36,"apiId":119,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:09:01","deletedBy":0,"deletedAt":""},{"id":197,"menuId":51,"apiId":120,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:09:33","deletedBy":0,"deletedAt":""},{"id":198,"menuId":51,"apiId":121,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:09:49","deletedBy":0,"deletedAt":""},{"id":199,"menuId":36,"apiId":122,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:10:39","deletedBy":0,"deletedAt":""},{"id":200,"menuId":51,"apiId":123,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:10:55","deletedBy":0,"deletedAt":""},{"id":201,"menuId":51,"apiId":124,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:11:09","deletedBy":0,"deletedAt":""},{"id":202,"menuId":51,"apiId":125,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:11:30","deletedBy":0,"deletedAt":""},{"id":203,"menuId":51,"apiId":126,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:11:47","deletedBy":0,"deletedAt":""},{"id":204,"menuId":51,"apiId":127,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:12:01","deletedBy":0,"deletedAt":""},{"id":205,"menuId":51,"apiId":128,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:12:13","deletedBy":0,"deletedAt":""},{"id":206,"menuId":51,"apiId":129,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:12:26","deletedBy":0,"deletedAt":""},{"id":207,"menuId":51,"apiId":130,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:12:44","deletedBy":0,"deletedAt":""},{"id":208,"menuId":51,"apiId":131,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:01","deletedBy":0,"deletedAt":""},{"id":209,"menuId":51,"apiId":132,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:13","deletedBy":0,"deletedAt":""},{"id":210,"menuId":51,"apiId":133,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:25","deletedBy":0,"deletedAt":""},{"id":211,"menuId":51,"apiId":134,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:42","deletedBy":0,"deletedAt":""},{"id":212,"menuId":51,"apiId":135,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:59","deletedBy":0,"deletedAt":""},{"id":213,"menuId":51,"apiId":136,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:14:13","deletedBy":0,"deletedAt":""},{"id":214,"menuId":51,"apiId":137,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:14:28","deletedBy":0,"deletedAt":""},{"id":215,"menuId":51,"apiId":138,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:14:43","deletedBy":0,"deletedAt":""},{"id":216,"menuId":51,"apiId":139,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:14:58","deletedBy":0,"deletedAt":""},{"id":217,"menuId":37,"apiId":140,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:16:03","deletedBy":0,"deletedAt":""},{"id":218,"menuId":37,"apiId":141,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:16:16","deletedBy":0,"deletedAt":""},{"id":219,"menuId":61,"apiId":142,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:16:42","deletedBy":0,"deletedAt":""},{"id":220,"menuId":61,"apiId":143,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:16:59","deletedBy":0,"deletedAt":""},{"id":221,"menuId":37,"apiId":144,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:17:21","deletedBy":0,"deletedAt":""},{"id":222,"menuId":37,"apiId":145,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:17:37","deletedBy":0,"deletedAt":""},{"id":223,"menuId":37,"apiId":146,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:18:02","deletedBy":0,"deletedAt":""},{"id":224,"menuId":37,"apiId":147,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:18:17","deletedBy":0,"deletedAt":""},{"id":225,"menuId":37,"apiId":148,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:18:30","deletedBy":0,"deletedAt":""},{"id":226,"menuId":37,"apiId":149,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:18:47","deletedBy":0,"deletedAt":""},{"id":227,"menuId":37,"apiId":150,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:19:00","deletedBy":0,"deletedAt":""},{"id":228,"menuId":37,"apiId":151,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:19:28","deletedBy":0,"deletedAt":""},{"id":229,"menuId":37,"apiId":152,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:19:43","deletedBy":0,"deletedAt":""},{"id":230,"menuId":61,"apiId":153,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:20:00","deletedBy":0,"deletedAt":""},{"id":231,"menuId":61,"apiId":154,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:20:15","deletedBy":0,"deletedAt":""},{"id":232,"menuId":61,"apiId":155,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:20:39","deletedBy":0,"deletedAt":""},{"id":233,"menuId":37,"apiId":156,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:20:55","deletedBy":0,"deletedAt":""},{"id":234,"menuId":61,"apiId":157,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:21:16","deletedBy":0,"deletedAt":""},{"id":235,"menuId":61,"apiId":158,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:21:31","deletedBy":0,"deletedAt":""},{"id":236,"menuId":61,"apiId":159,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:21:48","deletedBy":0,"deletedAt":""},{"id":237,"menuId":61,"apiId":160,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:22:07","deletedBy":0,"deletedAt":""},{"id":238,"menuId":39,"apiId":161,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:22:52","deletedBy":0,"deletedAt":""},{"id":239,"menuId":39,"apiId":162,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:23:06","deletedBy":0,"deletedAt":""},{"id":240,"menuId":39,"apiId":163,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:23:20","deletedBy":0,"deletedAt":""},{"id":241,"menuId":39,"apiId":164,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:23:35","deletedBy":0,"deletedAt":""},{"id":242,"menuId":39,"apiId":165,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:23:48","deletedBy":0,"deletedAt":""},{"id":243,"menuId":64,"apiId":166,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:24:08","deletedBy":0,"deletedAt":""},{"id":244,"menuId":39,"apiId":167,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:24:32","deletedBy":0,"deletedAt":""},{"id":245,"menuId":64,"apiId":168,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:24:47","deletedBy":0,"deletedAt":""},{"id":246,"menuId":64,"apiId":169,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:25:10","deletedBy":0,"deletedAt":""},{"id":247,"menuId":39,"apiId":170,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:25:24","deletedBy":0,"deletedAt":""},{"id":248,"menuId":64,"apiId":171,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:25:38","deletedBy":0,"deletedAt":""},{"id":249,"menuId":64,"apiId":172,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:25:55","deletedBy":0,"deletedAt":""},{"id":250,"menuId":64,"apiId":173,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:26:11","deletedBy":0,"deletedAt":""},{"id":251,"menuId":64,"apiId":174,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:26:31","deletedBy":0,"deletedAt":""},{"id":252,"menuId":13,"apiId":175,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:38:27","deletedBy":0,"deletedAt":""},{"id":253,"menuId":13,"apiId":176,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:39:19","deletedBy":0,"deletedAt":""},{"id":254,"menuId":13,"apiId":177,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:39:38","deletedBy":0,"deletedAt":""},{"id":255,"menuId":13,"apiId":178,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:39:57","deletedBy":0,"deletedAt":""},{"id":256,"menuId":13,"apiId":179,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:40:17","deletedBy":0,"deletedAt":""},{"id":257,"menuId":12,"apiId":180,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:40:50","deletedBy":0,"deletedAt":""},{"id":258,"menuId":12,"apiId":181,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:41:18","deletedBy":0,"deletedAt":""},{"id":259,"menuId":12,"apiId":182,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:41:38","deletedBy":0,"deletedAt":""},{"id":260,"menuId":12,"apiId":183,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:42:03","deletedBy":0,"deletedAt":""},{"id":261,"menuId":34,"apiId":61,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:47:24","deletedBy":0,"deletedAt":""},{"id":262,"menuId":12,"apiId":61,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:47:24","deletedBy":0,"deletedAt":""},{"id":263,"menuId":14,"apiId":184,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:47:57","deletedBy":0,"deletedAt":""},{"id":264,"menuId":14,"apiId":185,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:48:17","deletedBy":0,"deletedAt":""},{"id":265,"menuId":14,"apiId":186,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:48:36","deletedBy":0,"deletedAt":""},{"id":266,"menuId":14,"apiId":187,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:49:02","deletedBy":0,"deletedAt":""},{"id":267,"menuId":14,"apiId":188,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:49:30","deletedBy":0,"deletedAt":""},{"id":268,"menuId":10,"apiId":189,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:51:06","deletedBy":0,"deletedAt":""},{"id":269,"menuId":10,"apiId":190,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:52:12","deletedBy":0,"deletedAt":""},{"id":270,"menuId":10,"apiId":191,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:52:34","deletedBy":0,"deletedAt":""},{"id":271,"menuId":10,"apiId":192,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:57:24","deletedBy":0,"deletedAt":""},{"id":272,"menuId":10,"apiId":193,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:57:46","deletedBy":0,"deletedAt":""},{"id":273,"menuId":10,"apiId":194,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:58:06","deletedBy":0,"deletedAt":""},{"id":274,"menuId":10,"apiId":195,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:58:24","deletedBy":0,"deletedAt":""},{"id":275,"menuId":17,"apiId":196,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:59:01","deletedBy":0,"deletedAt":""},{"id":276,"menuId":18,"apiId":197,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:00:17","deletedBy":0,"deletedAt":""},{"id":277,"menuId":18,"apiId":198,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:00:44","deletedBy":0,"deletedAt":""},{"id":278,"menuId":18,"apiId":199,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:01:09","deletedBy":0,"deletedAt":""},{"id":279,"menuId":49,"apiId":200,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:01:40","deletedBy":0,"deletedAt":""},{"id":280,"menuId":49,"apiId":201,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:03:07","deletedBy":0,"deletedAt":""},{"id":281,"menuId":49,"apiId":202,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:03:31","deletedBy":0,"deletedAt":""},{"id":282,"menuId":50,"apiId":203,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:05:00","deletedBy":0,"deletedAt":""},{"id":283,"menuId":50,"apiId":204,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:05:28","deletedBy":0,"deletedAt":""},{"id":284,"menuId":110,"apiId":205,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:07:42","deletedBy":0,"deletedAt":""},{"id":285,"menuId":110,"apiId":206,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:08:06","deletedBy":0,"deletedAt":""},{"id":286,"menuId":110,"apiId":207,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:09:41","deletedBy":0,"deletedAt":""},{"id":287,"menuId":2,"apiId":208,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:12:10","deletedBy":0,"deletedAt":""},{"id":288,"menuId":2,"apiId":209,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:12:33","deletedBy":0,"deletedAt":""},{"id":289,"menuId":2,"apiId":210,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:12:49","deletedBy":0,"deletedAt":""},{"id":290,"menuId":2,"apiId":211,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:13:07","deletedBy":0,"deletedAt":""},{"id":291,"menuId":2,"apiId":212,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:13:24","deletedBy":0,"deletedAt":""},{"id":292,"menuId":2,"apiId":213,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:13:42","deletedBy":0,"deletedAt":""},{"id":293,"menuId":2,"apiId":214,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:04","deletedBy":0,"deletedAt":""},{"id":294,"menuId":2,"apiId":215,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:30","deletedBy":0,"deletedAt":""},{"id":295,"menuId":2,"apiId":216,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:15:05","deletedBy":0,"deletedAt":""},{"id":296,"menuId":2,"apiId":217,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:54:26","deletedBy":0,"deletedAt":""},{"id":297,"menuId":2,"apiId":218,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:57:04","deletedBy":0,"deletedAt":""},{"id":298,"menuId":2,"apiId":219,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:57:35","deletedBy":0,"deletedAt":""},{"id":299,"menuId":2,"apiId":220,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:57:59","deletedBy":0,"deletedAt":""},{"id":300,"menuId":2,"apiId":221,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:58:34","deletedBy":0,"deletedAt":""},{"id":301,"menuId":2,"apiId":222,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:58:55","deletedBy":0,"deletedAt":""},{"id":302,"menuId":2,"apiId":223,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:59:17","deletedBy":0,"deletedAt":""},{"id":303,"menuId":2,"apiId":224,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:59:36","deletedBy":0,"deletedAt":""},{"id":308,"menuId":113,"apiId":233,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 18:00:54","deletedBy":0,"deletedAt":""},{"id":310,"menuId":84,"apiId":238,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 21:28:22","deletedBy":0,"deletedAt":""},{"id":311,"menuId":68,"apiId":240,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:35:50","deletedBy":0,"deletedAt":""},{"id":312,"menuId":69,"apiId":240,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:35:50","deletedBy":0,"deletedAt":""},{"id":313,"menuId":74,"apiId":240,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:35:50","deletedBy":0,"deletedAt":""},{"id":315,"menuId":69,"apiId":241,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:38:37","deletedBy":0,"deletedAt":""},{"id":316,"menuId":68,"apiId":242,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:39:17","deletedBy":0,"deletedAt":""},{"id":318,"menuId":74,"apiId":243,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:40:07","deletedBy":0,"deletedAt":""},{"id":319,"menuId":71,"apiId":244,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:41:50","deletedBy":0,"deletedAt":""},{"id":320,"menuId":72,"apiId":244,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:41:50","deletedBy":0,"deletedAt":""},{"id":321,"menuId":73,"apiId":244,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:41:50","deletedBy":0,"deletedAt":""},{"id":323,"menuId":71,"apiId":245,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:42:34","deletedBy":0,"deletedAt":""},{"id":324,"menuId":72,"apiId":246,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:43:04","deletedBy":0,"deletedAt":""},{"id":325,"menuId":73,"apiId":247,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:43:53","deletedBy":0,"deletedAt":""},{"id":326,"menuId":85,"apiId":249,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:46:15","deletedBy":0,"deletedAt":""},{"id":327,"menuId":85,"apiId":250,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:47:06","deletedBy":0,"deletedAt":""},{"id":328,"menuId":85,"apiId":251,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:47:46","deletedBy":0,"deletedAt":""},{"id":329,"menuId":85,"apiId":252,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:48:30","deletedBy":0,"deletedAt":""},{"id":330,"menuId":85,"apiId":253,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:49:09","deletedBy":0,"deletedAt":""},{"id":331,"menuId":16,"apiId":255,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:09:43","deletedBy":0,"deletedAt":""},{"id":332,"menuId":16,"apiId":256,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:10:13","deletedBy":0,"deletedAt":""},{"id":333,"menuId":16,"apiId":258,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:10:35","deletedBy":0,"deletedAt":""},{"id":335,"menuId":16,"apiId":260,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:10:56","deletedBy":0,"deletedAt":""},{"id":336,"menuId":16,"apiId":261,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:11:16","deletedBy":0,"deletedAt":""},{"id":339,"menuId":21,"apiId":264,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:12:19","deletedBy":0,"deletedAt":""},{"id":341,"menuId":21,"apiId":266,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:13:14","deletedBy":0,"deletedAt":""},{"id":342,"menuId":21,"apiId":267,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:13:53","deletedBy":0,"deletedAt":""},{"id":343,"menuId":21,"apiId":268,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:14:16","deletedBy":0,"deletedAt":""},{"id":344,"menuId":21,"apiId":269,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:14:39","deletedBy":0,"deletedAt":""},{"id":345,"menuId":22,"apiId":271,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:15:01","deletedBy":0,"deletedAt":""},{"id":346,"menuId":37,"apiId":272,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:15:23","deletedBy":0,"deletedAt":""},{"id":347,"menuId":22,"apiId":273,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:15:26","deletedBy":0,"deletedAt":""},{"id":348,"menuId":22,"apiId":274,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:15:50","deletedBy":0,"deletedAt":""},{"id":349,"menuId":22,"apiId":275,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:16:24","deletedBy":0,"deletedAt":""},{"id":350,"menuId":22,"apiId":276,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:16:45","deletedBy":0,"deletedAt":""},{"id":352,"menuId":46,"apiId":278,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:20:30","deletedBy":0,"deletedAt":""},{"id":353,"menuId":46,"apiId":279,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:20:52","deletedBy":0,"deletedAt":""},{"id":354,"menuId":46,"apiId":280,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:21:12","deletedBy":0,"deletedAt":""},{"id":355,"menuId":46,"apiId":281,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:21:35","deletedBy":0,"deletedAt":""},{"id":356,"menuId":46,"apiId":282,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:21:56","deletedBy":0,"deletedAt":""},{"id":357,"menuId":46,"apiId":283,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:22:19","deletedBy":0,"deletedAt":""},{"id":358,"menuId":46,"apiId":284,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:22:40","deletedBy":0,"deletedAt":""},{"id":359,"menuId":46,"apiId":285,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:23:00","deletedBy":0,"deletedAt":""},{"id":360,"menuId":48,"apiId":286,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:25:29","deletedBy":0,"deletedAt":""},{"id":361,"menuId":48,"apiId":287,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:25:57","deletedBy":0,"deletedAt":""},{"id":362,"menuId":48,"apiId":288,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:26:19","deletedBy":0,"deletedAt":""},{"id":363,"menuId":48,"apiId":289,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:26:42","deletedBy":0,"deletedAt":""},{"id":364,"menuId":48,"apiId":290,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:27:03","deletedBy":0,"deletedAt":""},{"id":365,"menuId":48,"apiId":291,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:27:23","deletedBy":0,"deletedAt":""},{"id":366,"menuId":48,"apiId":292,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:27:44","deletedBy":0,"deletedAt":""},{"id":367,"menuId":114,"apiId":294,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:38:23","deletedBy":0,"deletedAt":""},{"id":368,"menuId":115,"apiId":294,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:38:23","deletedBy":0,"deletedAt":""},{"id":369,"menuId":114,"apiId":295,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:39:02","deletedBy":0,"deletedAt":""},{"id":370,"menuId":114,"apiId":296,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:39:30","deletedBy":0,"deletedAt":""},{"id":371,"menuId":114,"apiId":297,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:39:53","deletedBy":0,"deletedAt":""},{"id":372,"menuId":114,"apiId":298,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:40:14","deletedBy":0,"deletedAt":""},{"id":373,"menuId":114,"apiId":299,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:40:37","deletedBy":0,"deletedAt":""},{"id":374,"menuId":114,"apiId":300,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:41:01","deletedBy":0,"deletedAt":""},{"id":375,"menuId":114,"apiId":301,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:41:21","deletedBy":0,"deletedAt":""},{"id":376,"menuId":114,"apiId":302,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:41:45","deletedBy":0,"deletedAt":""},{"id":377,"menuId":114,"apiId":303,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:42:06","deletedBy":0,"deletedAt":""},{"id":378,"menuId":114,"apiId":304,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:42:25","deletedBy":0,"deletedAt":""},{"id":379,"menuId":114,"apiId":305,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:42:41","deletedBy":0,"deletedAt":""},{"id":380,"menuId":115,"apiId":306,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:43:05","deletedBy":0,"deletedAt":""},{"id":381,"menuId":115,"apiId":307,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:43:31","deletedBy":0,"deletedAt":""},{"id":382,"menuId":115,"apiId":308,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:45:49","deletedBy":0,"deletedAt":""},{"id":385,"menuId":32,"apiId":259,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 23:44:18","deletedBy":0,"deletedAt":""},{"id":386,"menuId":32,"apiId":262,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-20 21:03:54","deletedBy":0,"deletedAt":""},{"id":387,"menuId":32,"apiId":263,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-20 21:04:06","deletedBy":0,"deletedAt":""},{"id":388,"menuId":32,"apiId":265,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-20 21:14:33","deletedBy":0,"deletedAt":""},{"id":389,"menuId":22,"apiId":277,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-22 13:02:13","deletedBy":0,"deletedAt":""},{"id":390,"menuId":92,"apiId":310,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-06 13:59:05","deletedBy":0,"deletedAt":""},{"id":391,"menuId":119,"apiId":311,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:20:32","deletedBy":0,"deletedAt":""},{"id":392,"menuId":119,"apiId":312,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:21:18","deletedBy":0,"deletedAt":""},{"id":393,"menuId":119,"apiId":313,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:22:47","deletedBy":0,"deletedAt":""},{"id":394,"menuId":119,"apiId":314,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:23:24","deletedBy":0,"deletedAt":""},{"id":395,"menuId":119,"apiId":315,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:23:54","deletedBy":0,"deletedAt":""},{"id":397,"menuId":15,"apiId":316,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-28 12:43:54","deletedBy":0,"deletedAt":""},{"id":398,"menuId":25,"apiId":63,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-08 22:51:54","deletedBy":0,"deletedAt":""},{"id":401,"menuId":131,"apiId":318,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 22:19:45","deletedBy":0,"deletedAt":""},{"id":402,"menuId":131,"apiId":317,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 22:19:59","deletedBy":0,"deletedAt":""},{"id":406,"menuId":131,"apiId":320,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 22:21:38","deletedBy":0,"deletedAt":""},{"id":407,"menuId":131,"apiId":319,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 22:21:47","deletedBy":0,"deletedAt":""},{"id":409,"menuId":133,"apiId":321,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 20:46:50","deletedBy":0,"deletedAt":""},{"id":410,"menuId":133,"apiId":322,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 20:47:26","deletedBy":0,"deletedAt":""},{"id":415,"menuId":51,"apiId":323,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-23 08:19:13","deletedBy":0,"deletedAt":""},{"id":416,"menuId":51,"apiId":324,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-23 08:19:24","deletedBy":0,"deletedAt":""},{"id":417,"menuId":51,"apiId":325,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-23 08:19:35","deletedBy":0,"deletedAt":""},{"id":418,"menuId":51,"apiId":326,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-23 08:19:47","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_15 -$1192 -[{"id":17,"parentId":-1,"menuId":15,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-19 06:17:58","updatedBy":1,"updatedAt":"2022-08-19 23:27:07","deletedBy":0,"deletedAt":""},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-19 06:18:02","updatedBy":1,"updatedAt":"2022-08-19 23:27:42","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"menuId":15,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-19 22:18:04","updatedBy":0,"updatedAt":"2022-08-19 22:18:04","deletedBy":0,"deletedAt":""},{"id":21,"parentId":-1,"menuId":15,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-19 22:36:06","updatedBy":0,"updatedAt":"2022-08-19 22:36:06","deletedBy":0,"deletedAt":""},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","types":"change-status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-20 21:27:06","updatedBy":0,"updatedAt":"2022-12-20 21:27:06","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_15 -$1197 -[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","code":"userName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:19:30","updatedBy":0,"updatedAt":"2022-11-03 00:19:30","deletedBy":0,"deletedAt":""},{"id":14,"parentId":-1,"menuId":15,"name":"角色","code":"rolesNames","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:23:49","updatedBy":0,"updatedAt":"2022-11-03 00:23:49","deletedBy":0,"deletedAt":""},{"id":15,"parentId":-1,"menuId":15,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:24:08","updatedBy":0,"updatedAt":"2022-11-03 00:24:08","deletedBy":0,"deletedAt":""},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:24:28","updatedBy":0,"updatedAt":"2022-11-03 00:24:28","deletedBy":0,"deletedAt":""},{"id":21,"parentId":-1,"menuId":15,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:05:26","updatedBy":0,"updatedAt":"2022-11-03 20:05:26","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_15 -$1002 -[{"id":161,"menuId":15,"apiId":83,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:13:04","deletedBy":0,"deletedAt":""},{"id":162,"menuId":15,"apiId":84,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:13:39","deletedBy":0,"deletedAt":""},{"id":163,"menuId":15,"apiId":85,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:14:14","deletedBy":0,"deletedAt":""},{"id":164,"menuId":15,"apiId":86,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:14:34","deletedBy":0,"deletedAt":""},{"id":165,"menuId":15,"apiId":87,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:15:04","deletedBy":0,"deletedAt":""},{"id":166,"menuId":15,"apiId":88,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:15:39","deletedBy":0,"deletedAt":""},{"id":167,"menuId":15,"apiId":89,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:16:04","deletedBy":0,"deletedAt":""},{"id":397,"menuId":15,"apiId":316,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-28 12:43:54","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_92 -$473 -[{"id":156,"parentId":-1,"menuId":92,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:20:53","updatedBy":0,"updatedAt":"2022-11-28 10:20:53","deletedBy":0,"deletedAt":""},{"id":157,"parentId":-1,"menuId":92,"name":"处理","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:21:11","updatedBy":0,"updatedAt":"2022-11-28 10:21:11","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_92 -$2173 -[{"id":224,"parentId":-1,"menuId":92,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:21:34","updatedBy":0,"updatedAt":"2022-11-28 10:21:34","deletedBy":0,"deletedAt":""},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","code":"type","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:21:46","updatedBy":0,"updatedAt":"2022-11-28 10:21:46","deletedBy":0,"deletedAt":""},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","code":"ruleName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:22:05","updatedBy":0,"updatedAt":"2022-11-28 10:22:05","deletedBy":0,"deletedAt":""},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","code":"alarmLevel","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:22:27","updatedBy":0,"updatedAt":"2022-11-28 10:22:27","deletedBy":0,"deletedAt":""},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","code":"productKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:22:52","updatedBy":0,"updatedAt":"2022-11-28 10:22:52","deletedBy":0,"deletedAt":""},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","code":"deviceKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:23:24","updatedBy":0,"updatedAt":"2022-11-28 10:23:24","deletedBy":0,"deletedAt":""},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:23:39","updatedBy":0,"updatedAt":"2022-11-28 10:23:39","deletedBy":0,"deletedAt":""},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 02:23:54","updatedBy":1,"updatedAt":"2022-11-28 10:24:01","deletedBy":0,"deletedAt":""},{"id":232,"parentId":-1,"menuId":92,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-28 10:24:14","updatedBy":0,"updatedAt":"2022-11-28 10:24:14","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_92 -$127 -[{"id":390,"menuId":92,"apiId":310,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-06 13:59:05","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_13 -$701 -[{"id":25,"parentId":-1,"menuId":13,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:03:46","updatedBy":0,"updatedAt":"2022-11-03 00:03:46","deletedBy":0,"deletedAt":""},{"id":26,"parentId":-1,"menuId":13,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:03:48","updatedBy":0,"updatedAt":"2022-11-03 00:03:48","deletedBy":0,"deletedAt":""},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:03:51","updatedBy":0,"updatedAt":"2022-11-03 00:03:51","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_13 -$1436 -[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:05:00","updatedBy":0,"updatedAt":"2022-11-03 00:05:00","deletedBy":0,"deletedAt":""},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","code":"number","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:05:24","updatedBy":0,"updatedAt":"2022-11-03 00:05:24","deletedBy":0,"deletedAt":""},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:05:47","updatedBy":0,"updatedAt":"2022-11-03 00:05:47","deletedBy":0,"deletedAt":""},{"id":11,"parentId":-1,"menuId":13,"name":"排序","code":"orderNum","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:06:11","updatedBy":0,"updatedAt":"2022-11-03 00:06:11","deletedBy":0,"deletedAt":""},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 00:06:28","updatedBy":0,"updatedAt":"2022-11-03 00:06:28","deletedBy":0,"deletedAt":""},{"id":22,"parentId":-1,"menuId":13,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:06:26","updatedBy":0,"updatedAt":"2022-11-03 20:06:26","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_13 -$631 -[{"id":252,"menuId":13,"apiId":175,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:38:27","deletedBy":0,"deletedAt":""},{"id":253,"menuId":13,"apiId":176,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:39:19","deletedBy":0,"deletedAt":""},{"id":254,"menuId":13,"apiId":177,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:39:38","deletedBy":0,"deletedAt":""},{"id":255,"menuId":13,"apiId":178,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:39:57","deletedBy":0,"deletedAt":""},{"id":256,"menuId":13,"apiId":179,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:40:17","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_12 -$701 -[{"id":33,"parentId":-1,"menuId":12,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:04:31","updatedBy":0,"updatedAt":"2022-11-03 20:04:31","deletedBy":0,"deletedAt":""},{"id":34,"parentId":-1,"menuId":12,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:04:33","updatedBy":0,"updatedAt":"2022-11-03 20:04:33","deletedBy":0,"deletedAt":""},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:04:36","updatedBy":0,"updatedAt":"2022-11-03 20:04:36","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_12 -$1202 -[{"id":23,"parentId":-1,"menuId":12,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:06:55","updatedBy":0,"updatedAt":"2022-11-03 20:06:55","deletedBy":0,"deletedAt":""},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:07:46","updatedBy":0,"updatedAt":"2022-11-03 20:07:46","deletedBy":0,"deletedAt":""},{"id":25,"parentId":-1,"menuId":12,"name":"排序","code":"orderNum","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:08:00","updatedBy":0,"updatedAt":"2022-11-03 20:08:00","deletedBy":0,"deletedAt":""},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:08:25","updatedBy":0,"updatedAt":"2022-11-03 20:08:25","deletedBy":0,"deletedAt":""},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","code":"deptName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-04 21:57:22","updatedBy":0,"updatedAt":"2022-12-04 21:57:22","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_12 -$630 -[{"id":257,"menuId":12,"apiId":180,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:40:50","deletedBy":0,"deletedAt":""},{"id":258,"menuId":12,"apiId":181,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:41:18","deletedBy":0,"deletedAt":""},{"id":259,"menuId":12,"apiId":182,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:41:38","deletedBy":0,"deletedAt":""},{"id":260,"menuId":12,"apiId":183,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:42:03","deletedBy":0,"deletedAt":""},{"id":262,"menuId":12,"apiId":61,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:47:24","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_14 -$701 -[{"id":36,"parentId":-1,"menuId":14,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:10:54","updatedBy":0,"updatedAt":"2022-11-03 20:10:54","deletedBy":0,"deletedAt":""},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:10:57","updatedBy":0,"updatedAt":"2022-11-03 20:10:57","deletedBy":0,"deletedAt":""},{"id":38,"parentId":-1,"menuId":14,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:10:59","updatedBy":0,"updatedAt":"2022-11-03 20:10:59","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_14 -$1679 -[{"id":27,"parentId":-1,"menuId":14,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:20:47","updatedBy":0,"updatedAt":"2022-11-03 20:20:47","deletedBy":0,"deletedAt":""},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:20:51","updatedBy":0,"updatedAt":"2022-11-03 20:20:51","deletedBy":0,"deletedAt":""},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:21:46","updatedBy":0,"updatedAt":"2022-11-03 20:21:46","deletedBy":0,"deletedAt":""},{"id":30,"parentId":-1,"menuId":14,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:26:21","updatedBy":0,"updatedAt":"2022-11-03 20:26:21","deletedBy":0,"deletedAt":""},{"id":31,"parentId":-1,"menuId":14,"name":"排序","code":"postSort","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:26:35","updatedBy":0,"updatedAt":"2022-11-03 20:26:35","deletedBy":0,"deletedAt":""},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","code":"postName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:27:21","updatedBy":0,"updatedAt":"2022-11-03 20:27:21","deletedBy":0,"deletedAt":""},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","code":"postCode","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:27:32","updatedBy":0,"updatedAt":"2022-11-03 20:27:32","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_14 -$631 -[{"id":263,"menuId":14,"apiId":184,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:47:57","deletedBy":0,"deletedAt":""},{"id":264,"menuId":14,"apiId":185,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:48:17","deletedBy":0,"deletedAt":""},{"id":265,"menuId":14,"apiId":186,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:48:36","deletedBy":0,"deletedAt":""},{"id":266,"menuId":14,"apiId":187,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:49:02","deletedBy":0,"deletedAt":""},{"id":267,"menuId":14,"apiId":188,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:49:30","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_34 -$1884 -[{"id":10,"parentId":-1,"menuId":34,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-13 04:55:53","updatedBy":1,"updatedAt":"2022-08-14 22:17:55","deletedBy":0,"deletedAt":""},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-13 12:55:57","updatedBy":1,"updatedAt":"2022-08-14 22:17:53","deletedBy":0,"deletedAt":""},{"id":12,"parentId":-1,"menuId":34,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-13 20:55:59","updatedBy":1,"updatedAt":"2022-08-14 22:17:47","deletedBy":0,"deletedAt":""},{"id":13,"parentId":-1,"menuId":34,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-14 20:56:02","updatedBy":0,"updatedAt":"2022-08-14 20:56:02","deletedBy":0,"deletedAt":""},{"id":14,"parentId":-1,"menuId":34,"name":"导入","types":"upload","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-14 20:56:04","updatedBy":0,"updatedAt":"2022-08-14 20:56:04","deletedBy":0,"deletedAt":""},{"id":15,"parentId":-1,"menuId":34,"name":"导出","types":"dwonload","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-14 20:56:06","updatedBy":0,"updatedAt":"2022-08-14 20:56:06","deletedBy":0,"deletedAt":""},{"id":196,"parentId":-1,"menuId":34,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:28:58","updatedBy":0,"updatedAt":"2023-06-19 11:28:58","deletedBy":0,"deletedAt":""},{"id":197,"parentId":-1,"menuId":34,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:29:14","updatedBy":0,"updatedAt":"2023-06-19 11:29:14","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_34 -$2152 -[{"id":1,"parentId":-1,"menuId":34,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 21:57:56","updatedBy":1,"updatedAt":"2022-11-06 10:06:24","deletedBy":0,"deletedAt":""},{"id":3,"parentId":-1,"menuId":34,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 06:13:48","updatedBy":1,"updatedAt":"2022-11-06 10:06:35","deletedBy":0,"deletedAt":""},{"id":128,"parentId":-1,"menuId":34,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:06:42","updatedBy":0,"updatedAt":"2022-11-06 10:06:42","deletedBy":0,"deletedAt":""},{"id":129,"parentId":-1,"menuId":34,"name":"分类","code":"categoryName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:06:49","updatedBy":0,"updatedAt":"2022-11-06 10:06:49","deletedBy":0,"deletedAt":""},{"id":130,"parentId":-1,"menuId":34,"name":"部门","code":"deptName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:06:56","updatedBy":0,"updatedAt":"2022-11-06 10:06:56","deletedBy":0,"deletedAt":""},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","code":"messageProtocol","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:07:11","updatedBy":0,"updatedAt":"2022-11-06 10:07:11","deletedBy":0,"deletedAt":""},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","code":"transportProtocol","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:07:23","updatedBy":0,"updatedAt":"2022-11-06 10:07:23","deletedBy":0,"deletedAt":""},{"id":133,"parentId":-1,"menuId":34,"name":"类型","code":"deviceType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:07:33","updatedBy":0,"updatedAt":"2022-11-06 10:07:33","deletedBy":0,"deletedAt":""},{"id":134,"parentId":-1,"menuId":34,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:07:41","updatedBy":0,"updatedAt":"2022-11-06 10:07:41","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_34 -$1632 -[{"id":131,"menuId":34,"apiId":59,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:28:13","deletedBy":0,"deletedAt":""},{"id":132,"menuId":34,"apiId":60,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:29:19","deletedBy":0,"deletedAt":""},{"id":173,"menuId":34,"apiId":96,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:01:10","deletedBy":0,"deletedAt":""},{"id":174,"menuId":34,"apiId":97,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:01:37","deletedBy":0,"deletedAt":""},{"id":175,"menuId":34,"apiId":98,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:01:54","deletedBy":0,"deletedAt":""},{"id":176,"menuId":34,"apiId":99,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:02:10","deletedBy":0,"deletedAt":""},{"id":177,"menuId":34,"apiId":100,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:02:24","deletedBy":0,"deletedAt":""},{"id":178,"menuId":34,"apiId":101,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:02:41","deletedBy":0,"deletedAt":""},{"id":179,"menuId":34,"apiId":102,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:02:57","deletedBy":0,"deletedAt":""},{"id":180,"menuId":34,"apiId":103,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:03:17","deletedBy":0,"deletedAt":""},{"id":181,"menuId":34,"apiId":104,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:03:43","deletedBy":0,"deletedAt":""},{"id":182,"menuId":34,"apiId":105,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:04:19","deletedBy":0,"deletedAt":""},{"id":261,"menuId":34,"apiId":61,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:47:24","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuButton_133 -$237 -[{"id":189,"parentId":-1,"menuId":133,"name":"保存","types":"save","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 20:44:19","updatedBy":0,"updatedAt":"2023-04-10 20:44:19","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$23 -SagooIOT_sysMenuApi_133 -$255 -[{"id":409,"menuId":133,"apiId":321,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 20:46:50","deletedBy":0,"deletedAt":""},{"id":410,"menuId":133,"apiId":322,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 20:47:26","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_17 -$127 -[{"id":275,"menuId":17,"apiId":196,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:59:01","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_36 -$1182 -[{"id":94,"parentId":-1,"menuId":36,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:44","updatedBy":1,"updatedAt":"2023-05-17 22:31:02","deletedBy":0,"deletedAt":""},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:46","updatedBy":0,"updatedAt":"2022-11-06 10:13:46","deletedBy":0,"deletedAt":""},{"id":96,"parentId":-1,"menuId":36,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:48","updatedBy":0,"updatedAt":"2022-11-06 10:13:48","deletedBy":0,"deletedAt":""},{"id":97,"parentId":-1,"menuId":36,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:49","updatedBy":0,"updatedAt":"2022-11-06 10:13:49","deletedBy":0,"deletedAt":""},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","types":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:15:15","updatedBy":0,"updatedAt":"2022-11-06 10:15:15","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_36 -$1917 -[{"id":137,"parentId":-1,"menuId":36,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:15:48","updatedBy":0,"updatedAt":"2022-11-06 10:15:48","deletedBy":0,"deletedAt":""},{"id":138,"parentId":-1,"menuId":36,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:15:58","updatedBy":0,"updatedAt":"2022-11-06 10:15:58","deletedBy":0,"deletedAt":""},{"id":139,"parentId":-1,"menuId":36,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:16:06","updatedBy":0,"updatedAt":"2022-11-06 10:16:06","deletedBy":0,"deletedAt":""},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","code":"productName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:16:13","updatedBy":0,"updatedAt":"2022-11-06 10:16:13","deletedBy":0,"deletedAt":""},{"id":142,"parentId":-1,"menuId":36,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 02:16:30","updatedBy":1,"updatedAt":"2022-11-06 10:16:54","deletedBy":0,"deletedAt":""},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","code":"registryTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:16:38","updatedBy":0,"updatedAt":"2022-11-06 10:16:38","deletedBy":0,"deletedAt":""},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:16:47","updatedBy":0,"updatedAt":"2022-11-06 10:16:47","deletedBy":0,"deletedAt":""},{"id":260,"parentId":-1,"menuId":36,"name":"说明","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-17 21:18:50","updatedBy":0,"updatedAt":"2023-05-17 21:18:50","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_36 -$1261 -[{"id":183,"menuId":36,"apiId":106,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:04:35","deletedBy":0,"deletedAt":""},{"id":184,"menuId":36,"apiId":107,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:04:58","deletedBy":0,"deletedAt":""},{"id":185,"menuId":36,"apiId":108,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:05:19","deletedBy":0,"deletedAt":""},{"id":186,"menuId":36,"apiId":109,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:05:34","deletedBy":0,"deletedAt":""},{"id":187,"menuId":36,"apiId":110,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:06:13","deletedBy":0,"deletedAt":""},{"id":188,"menuId":36,"apiId":111,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:06:30","deletedBy":0,"deletedAt":""},{"id":194,"menuId":36,"apiId":117,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:08:18","deletedBy":0,"deletedAt":""},{"id":195,"menuId":36,"apiId":118,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:08:37","deletedBy":0,"deletedAt":""},{"id":196,"menuId":36,"apiId":119,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:09:01","deletedBy":0,"deletedAt":""},{"id":199,"menuId":36,"apiId":122,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:10:39","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuButton_110 -$945 -[{"id":48,"parentId":-1,"menuId":110,"name":"启用","types":"start","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:01:05","updatedBy":0,"updatedAt":"2022-11-03 21:01:05","deletedBy":0,"deletedAt":""},{"id":49,"parentId":-1,"menuId":110,"name":"停用","types":"stop","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:01:12","updatedBy":0,"updatedAt":"2022-11-03 21:01:12","deletedBy":0,"deletedAt":""},{"id":190,"parentId":-1,"menuId":110,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-16 00:04:47","updatedBy":0,"updatedAt":"2023-04-16 00:04:47","deletedBy":0,"deletedAt":""},{"id":191,"parentId":-1,"menuId":110,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-16 00:04:50","updatedBy":0,"updatedAt":"2023-04-16 00:04:50","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuColumn_110 -$1674 -[{"id":55,"parentId":-1,"menuId":110,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:01:29","updatedBy":0,"updatedAt":"2022-11-03 21:01:29","deletedBy":0,"deletedAt":""},{"id":56,"parentId":-1,"menuId":110,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:01:57","updatedBy":0,"updatedAt":"2022-11-03 21:01:57","deletedBy":0,"deletedAt":""},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","code":"author","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:02:05","updatedBy":0,"updatedAt":"2022-11-03 21:02:05","deletedBy":0,"deletedAt":""},{"id":58,"parentId":-1,"menuId":110,"name":"说明","code":"description","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:02:13","updatedBy":1,"updatedAt":"2023-04-16 00:03:16","deletedBy":0,"deletedAt":""},{"id":59,"parentId":-1,"menuId":110,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:02:21","updatedBy":0,"updatedAt":"2022-11-03 21:02:21","deletedBy":0,"deletedAt":""},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","code":"types","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-16 00:03:40","updatedBy":0,"updatedAt":"2023-04-16 00:03:40","deletedBy":0,"deletedAt":""},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","code":"handleType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-16 00:04:08","updatedBy":0,"updatedAt":"2023-04-16 00:04:08","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$23 -SagooIOT_sysMenuApi_110 -$382 -[{"id":284,"menuId":110,"apiId":205,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:07:42","deletedBy":0,"deletedAt":""},{"id":285,"menuId":110,"apiId":206,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:08:06","deletedBy":0,"deletedAt":""},{"id":286,"menuId":110,"apiId":207,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:09:41","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_10 -$1203 -[{"id":39,"parentId":-1,"menuId":10,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:30:49","updatedBy":0,"updatedAt":"2022-11-03 20:30:49","deletedBy":0,"deletedAt":""},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:30:50","updatedBy":0,"updatedAt":"2022-11-03 20:30:50","deletedBy":0,"deletedAt":""},{"id":41,"parentId":-1,"menuId":10,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:30:53","updatedBy":0,"updatedAt":"2022-11-03 20:30:53","deletedBy":0,"deletedAt":""},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","types":"role-premission","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:31:17","updatedBy":0,"updatedAt":"2022-11-03 20:31:17","deletedBy":0,"deletedAt":""},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","types":"data-premission","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:31:31","updatedBy":0,"updatedAt":"2022-11-03 20:31:31","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_10 -$1433 -[{"id":34,"parentId":-1,"menuId":10,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:19","updatedBy":0,"updatedAt":"2022-11-03 20:32:19","deletedBy":0,"deletedAt":""},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:20","updatedBy":0,"updatedAt":"2022-11-03 20:32:20","deletedBy":0,"deletedAt":""},{"id":36,"parentId":-1,"menuId":10,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:21","updatedBy":0,"updatedAt":"2022-11-03 20:32:21","deletedBy":0,"deletedAt":""},{"id":37,"parentId":-1,"menuId":10,"name":"排序","code":"listOrder","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:34","updatedBy":0,"updatedAt":"2022-11-03 20:32:34","deletedBy":0,"deletedAt":""},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:44","updatedBy":0,"updatedAt":"2022-11-03 20:32:44","deletedBy":0,"deletedAt":""},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:32:54","updatedBy":0,"updatedAt":"2022-11-03 20:32:54","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_10 -$883 -[{"id":268,"menuId":10,"apiId":189,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:51:06","deletedBy":0,"deletedAt":""},{"id":269,"menuId":10,"apiId":190,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:52:12","deletedBy":0,"deletedAt":""},{"id":270,"menuId":10,"apiId":191,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:52:34","deletedBy":0,"deletedAt":""},{"id":271,"menuId":10,"apiId":192,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:57:24","deletedBy":0,"deletedAt":""},{"id":272,"menuId":10,"apiId":193,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:57:46","deletedBy":0,"deletedAt":""},{"id":273,"menuId":10,"apiId":194,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:58:06","deletedBy":0,"deletedAt":""},{"id":274,"menuId":10,"apiId":195,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 22:58:24","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$24 -SagooIOT_sysMenuButton_2 -$1415 -[{"id":51,"parentId":-1,"menuId":2,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:41:20","updatedBy":0,"updatedAt":"2022-11-03 21:41:20","deletedBy":0,"deletedAt":""},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:20:17","updatedBy":0,"updatedAt":"2022-11-07 21:20:17","deletedBy":0,"deletedAt":""},{"id":109,"parentId":-1,"menuId":2,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:20:19","updatedBy":0,"updatedAt":"2022-11-07 21:20:19","deletedBy":0,"deletedAt":""},{"id":110,"parentId":-1,"menuId":2,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:20:47","updatedBy":0,"updatedAt":"2022-11-07 21:20:47","deletedBy":0,"deletedAt":""},{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","types":"btn","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:22:22","updatedBy":0,"updatedAt":"2022-11-07 21:22:22","deletedBy":0,"deletedAt":""},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","types":"list","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:22:35","updatedBy":0,"updatedAt":"2022-11-07 21:22:35","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$24 -SagooIOT_sysMenuColumn_2 -$1677 -[{"id":150,"parentId":-1,"menuId":2,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:23:51","updatedBy":0,"updatedAt":"2022-11-07 21:23:51","deletedBy":0,"deletedAt":""},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","code":"title","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:24:01","updatedBy":0,"updatedAt":"2022-11-07 21:24:01","deletedBy":0,"deletedAt":""},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","code":"path","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:02","updatedBy":0,"updatedAt":"2022-11-07 21:25:02","deletedBy":0,"deletedAt":""},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","code":"component","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:13","updatedBy":0,"updatedAt":"2022-11-07 21:25:13","deletedBy":0,"deletedAt":""},{"id":155,"parentId":-1,"menuId":2,"name":"排序","code":"weigh","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:20","updatedBy":0,"updatedAt":"2022-11-07 21:25:20","deletedBy":0,"deletedAt":""},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","code":"menuType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:34","updatedBy":0,"updatedAt":"2022-11-07 21:25:34","deletedBy":0,"deletedAt":""},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","code":"isHide","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:25:48","updatedBy":0,"updatedAt":"2022-11-07 21:25:48","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$21 -SagooIOT_sysMenuApi_2 -$2126 -[{"id":287,"menuId":2,"apiId":208,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:12:10","deletedBy":0,"deletedAt":""},{"id":288,"menuId":2,"apiId":209,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:12:33","deletedBy":0,"deletedAt":""},{"id":289,"menuId":2,"apiId":210,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:12:49","deletedBy":0,"deletedAt":""},{"id":290,"menuId":2,"apiId":211,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:13:07","deletedBy":0,"deletedAt":""},{"id":291,"menuId":2,"apiId":212,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:13:24","deletedBy":0,"deletedAt":""},{"id":292,"menuId":2,"apiId":213,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:13:42","deletedBy":0,"deletedAt":""},{"id":293,"menuId":2,"apiId":214,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:04","deletedBy":0,"deletedAt":""},{"id":294,"menuId":2,"apiId":215,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:30","deletedBy":0,"deletedAt":""},{"id":295,"menuId":2,"apiId":216,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:15:05","deletedBy":0,"deletedAt":""},{"id":296,"menuId":2,"apiId":217,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:54:26","deletedBy":0,"deletedAt":""},{"id":297,"menuId":2,"apiId":218,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:57:04","deletedBy":0,"deletedAt":""},{"id":298,"menuId":2,"apiId":219,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:57:35","deletedBy":0,"deletedAt":""},{"id":299,"menuId":2,"apiId":220,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:57:59","deletedBy":0,"deletedAt":""},{"id":300,"menuId":2,"apiId":221,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:58:34","deletedBy":0,"deletedAt":""},{"id":301,"menuId":2,"apiId":222,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:58:55","deletedBy":0,"deletedAt":""},{"id":302,"menuId":2,"apiId":223,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:59:17","deletedBy":0,"deletedAt":""},{"id":303,"menuId":2,"apiId":224,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:59:36","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_16 -$704 -[{"id":113,"parentId":-1,"menuId":16,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:28:48","updatedBy":0,"updatedAt":"2022-11-07 21:28:48","deletedBy":0,"deletedAt":""},{"id":114,"parentId":-1,"menuId":16,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:28:50","updatedBy":0,"updatedAt":"2022-11-07 21:28:50","deletedBy":0,"deletedAt":""},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:28:58","updatedBy":0,"updatedAt":"2022-11-07 21:28:58","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_16 -$1691 -[{"id":158,"parentId":-1,"menuId":16,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:42:05","updatedBy":0,"updatedAt":"2022-11-07 21:42:05","deletedBy":0,"deletedAt":""},{"id":159,"parentId":-1,"menuId":16,"name":"ID","code":"configId","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:42:35","updatedBy":0,"updatedAt":"2022-11-07 21:42:35","deletedBy":0,"deletedAt":""},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","code":"configName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:42:45","updatedBy":0,"updatedAt":"2022-11-07 21:42:45","deletedBy":0,"deletedAt":""},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","code":"configKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:42:57","updatedBy":0,"updatedAt":"2022-11-07 21:42:57","deletedBy":0,"deletedAt":""},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","code":"configValue","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:43:07","updatedBy":0,"updatedAt":"2022-11-07 21:43:07","deletedBy":0,"deletedAt":""},{"id":163,"parentId":-1,"menuId":16,"name":"备注","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:43:15","updatedBy":0,"updatedAt":"2022-11-07 21:43:15","deletedBy":0,"deletedAt":""},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","code":"configType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:43:26","updatedBy":0,"updatedAt":"2022-11-07 21:43:26","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_16 -$631 -[{"id":331,"menuId":16,"apiId":255,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:09:43","deletedBy":0,"deletedAt":""},{"id":332,"menuId":16,"apiId":256,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:10:13","deletedBy":0,"deletedAt":""},{"id":333,"menuId":16,"apiId":258,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:10:35","deletedBy":0,"deletedAt":""},{"id":335,"menuId":16,"apiId":260,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:10:56","deletedBy":0,"deletedAt":""},{"id":336,"menuId":16,"apiId":261,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:11:16","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_90 -$251 -[{"id":158,"menuId":90,"apiId":81,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:00:30","deletedBy":0,"deletedAt":""},{"id":160,"menuId":90,"apiId":82,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:11:46","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_89 -$251 -[{"id":157,"menuId":89,"apiId":81,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:00:30","deletedBy":0,"deletedAt":""},{"id":159,"menuId":89,"apiId":82,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 00:11:46","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_85 -$1176 -[{"id":132,"parentId":-1,"menuId":85,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:47:24","updatedBy":0,"updatedAt":"2022-11-07 22:47:24","deletedBy":0,"deletedAt":""},{"id":134,"parentId":-1,"menuId":85,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:47:28","updatedBy":0,"updatedAt":"2022-11-07 22:47:28","deletedBy":0,"deletedAt":""},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:48:43","updatedBy":0,"updatedAt":"2022-11-07 22:48:43","deletedBy":0,"deletedAt":""},{"id":145,"parentId":-1,"menuId":85,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:45:25","updatedBy":0,"updatedAt":"2022-11-11 17:45:25","deletedBy":0,"deletedAt":""},{"id":146,"parentId":-1,"menuId":85,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:45:38","updatedBy":0,"updatedAt":"2022-11-11 17:45:38","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_85 -$1198 -[{"id":193,"parentId":-1,"menuId":85,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:47:35","updatedBy":0,"updatedAt":"2022-11-07 22:47:35","deletedBy":0,"deletedAt":""},{"id":194,"parentId":-1,"menuId":85,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:48:56","updatedBy":0,"updatedAt":"2022-11-07 22:48:56","deletedBy":0,"deletedAt":""},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:48:57","updatedBy":0,"updatedAt":"2022-11-07 22:48:57","deletedBy":0,"deletedAt":""},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:49:11","updatedBy":0,"updatedAt":"2022-11-07 22:49:11","deletedBy":0,"deletedAt":""},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","code":"code","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:49:19","updatedBy":0,"updatedAt":"2022-11-07 22:49:19","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_85 -$631 -[{"id":326,"menuId":85,"apiId":249,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:46:15","deletedBy":0,"deletedAt":""},{"id":327,"menuId":85,"apiId":250,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:47:06","deletedBy":0,"deletedAt":""},{"id":328,"menuId":85,"apiId":251,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:47:46","deletedBy":0,"deletedAt":""},{"id":329,"menuId":85,"apiId":252,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:48:30","deletedBy":0,"deletedAt":""},{"id":330,"menuId":85,"apiId":253,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:49:09","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_84 -$627 -[{"id":116,"menuId":84,"apiId":55,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:09:21","deletedBy":0,"deletedAt":""},{"id":117,"menuId":84,"apiId":56,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:11:05","deletedBy":0,"deletedAt":""},{"id":118,"menuId":84,"apiId":57,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:11:34","deletedBy":0,"deletedAt":""},{"id":119,"menuId":84,"apiId":58,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:11:58","deletedBy":0,"deletedAt":""},{"id":310,"menuId":84,"apiId":238,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 21:28:22","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuButton_114 -$1188 -[{"id":151,"parentId":-1,"menuId":114,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:27:50","updatedBy":0,"updatedAt":"2022-11-23 10:27:50","deletedBy":0,"deletedAt":""},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:27:53","updatedBy":0,"updatedAt":"2022-11-23 10:27:53","deletedBy":0,"deletedAt":""},{"id":153,"parentId":-1,"menuId":114,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:28:01","updatedBy":0,"updatedAt":"2022-11-23 10:28:01","deletedBy":0,"deletedAt":""},{"id":154,"parentId":-1,"menuId":114,"name":"状态","types":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:29:26","updatedBy":0,"updatedAt":"2022-11-23 10:29:26","deletedBy":0,"deletedAt":""},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","types":"level","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:30:07","updatedBy":0,"updatedAt":"2022-11-23 10:30:07","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuColumn_114 -$949 -[{"id":220,"parentId":-1,"menuId":114,"name":"图标","code":"image","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:31:35","updatedBy":0,"updatedAt":"2022-11-23 10:31:35","deletedBy":0,"deletedAt":""},{"id":221,"parentId":-1,"menuId":114,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:32:14","updatedBy":0,"updatedAt":"2022-11-23 10:32:14","deletedBy":0,"deletedAt":""},{"id":222,"parentId":-1,"menuId":114,"name":"属性","code":"alarm","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:33:14","updatedBy":0,"updatedAt":"2022-11-23 10:33:14","deletedBy":0,"deletedAt":""},{"id":223,"parentId":-1,"menuId":114,"name":"状态","code":"liststatus","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:33:36","updatedBy":0,"updatedAt":"2022-11-23 10:33:36","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$23 -SagooIOT_sysMenuApi_114 -$1525 -[{"id":367,"menuId":114,"apiId":294,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:38:23","deletedBy":0,"deletedAt":""},{"id":369,"menuId":114,"apiId":295,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:39:02","deletedBy":0,"deletedAt":""},{"id":370,"menuId":114,"apiId":296,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:39:30","deletedBy":0,"deletedAt":""},{"id":371,"menuId":114,"apiId":297,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:39:53","deletedBy":0,"deletedAt":""},{"id":372,"menuId":114,"apiId":298,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:40:14","deletedBy":0,"deletedAt":""},{"id":373,"menuId":114,"apiId":299,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:40:37","deletedBy":0,"deletedAt":""},{"id":374,"menuId":114,"apiId":300,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:41:01","deletedBy":0,"deletedAt":""},{"id":375,"menuId":114,"apiId":301,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:41:21","deletedBy":0,"deletedAt":""},{"id":376,"menuId":114,"apiId":302,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:41:45","deletedBy":0,"deletedAt":""},{"id":377,"menuId":114,"apiId":303,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:42:06","deletedBy":0,"deletedAt":""},{"id":378,"menuId":114,"apiId":304,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:42:25","deletedBy":0,"deletedAt":""},{"id":379,"menuId":114,"apiId":305,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:42:41","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuButton_115 -$475 -[{"id":149,"parentId":-1,"menuId":115,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:44:01","updatedBy":0,"updatedAt":"2022-11-15 14:44:01","deletedBy":0,"deletedAt":""},{"id":150,"parentId":-1,"menuId":115,"name":"处理","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 06:44:11","updatedBy":1,"updatedAt":"2022-11-15 14:44:21","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuColumn_115 -$2182 -[{"id":211,"parentId":-1,"menuId":115,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:10","updatedBy":0,"updatedAt":"2022-11-15 14:45:10","deletedBy":0,"deletedAt":""},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","code":"type","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:23","updatedBy":0,"updatedAt":"2022-11-15 14:45:23","deletedBy":0,"deletedAt":""},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","code":"ruleName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:34","updatedBy":0,"updatedAt":"2022-11-15 14:45:34","deletedBy":0,"deletedAt":""},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","code":"alarmLevel","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:41","updatedBy":0,"updatedAt":"2022-11-15 14:45:41","deletedBy":0,"deletedAt":""},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","code":"productKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:49","updatedBy":0,"updatedAt":"2022-11-15 14:45:49","deletedBy":0,"deletedAt":""},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","code":"deviceKey","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:45:57","updatedBy":0,"updatedAt":"2022-11-15 14:45:57","deletedBy":0,"deletedAt":""},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:46:06","updatedBy":0,"updatedAt":"2022-11-15 14:46:06","deletedBy":0,"deletedAt":""},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:46:15","updatedBy":0,"updatedAt":"2022-11-15 14:46:15","deletedBy":0,"deletedAt":""},{"id":219,"parentId":-1,"menuId":115,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 14:46:23","updatedBy":0,"updatedAt":"2022-11-15 14:46:23","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$23 -SagooIOT_sysMenuApi_115 -$509 -[{"id":368,"menuId":115,"apiId":294,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:38:23","deletedBy":0,"deletedAt":""},{"id":380,"menuId":115,"apiId":306,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:43:05","deletedBy":0,"deletedAt":""},{"id":381,"menuId":115,"apiId":307,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:43:31","deletedBy":0,"deletedAt":""},{"id":382,"menuId":115,"apiId":308,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-23 10:45:49","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuButton_119 -$1651 -[{"id":163,"parentId":-1,"menuId":119,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:38","updatedBy":0,"updatedAt":"2023-02-03 10:11:38","deletedBy":0,"deletedAt":""},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:42","updatedBy":0,"updatedAt":"2023-02-03 10:11:42","deletedBy":0,"deletedAt":""},{"id":165,"parentId":-1,"menuId":119,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:45","updatedBy":0,"updatedAt":"2023-02-03 10:11:45","deletedBy":0,"deletedAt":""},{"id":166,"parentId":-1,"menuId":119,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:49","updatedBy":0,"updatedAt":"2023-02-03 10:11:49","deletedBy":0,"deletedAt":""},{"id":167,"parentId":-1,"menuId":119,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:11:53","updatedBy":0,"updatedAt":"2023-02-03 10:11:53","deletedBy":0,"deletedAt":""},{"id":168,"parentId":165,"menuId":119,"name":"开启","types":"on","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:13:12","updatedBy":0,"updatedAt":"2023-02-03 10:13:12","deletedBy":0,"deletedAt":""},{"id":169,"parentId":165,"menuId":119,"name":"禁用","types":"off","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:13:52","updatedBy":0,"updatedAt":"2023-02-03 10:13:52","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuColumn_119 -$1187 -[{"id":246,"parentId":-1,"menuId":119,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:33","updatedBy":0,"updatedAt":"2023-02-03 10:15:33","deletedBy":0,"deletedAt":""},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:35","updatedBy":0,"updatedAt":"2023-02-03 10:15:35","deletedBy":0,"deletedAt":""},{"id":248,"parentId":-1,"menuId":119,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:36","updatedBy":0,"updatedAt":"2023-02-03 10:15:36","deletedBy":0,"deletedAt":""},{"id":249,"parentId":-1,"menuId":119,"name":"ip","code":"ip","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:46","updatedBy":0,"updatedAt":"2023-02-03 10:15:46","deletedBy":0,"deletedAt":""},{"id":250,"parentId":-1,"menuId":119,"name":"备注","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:15:57","updatedBy":0,"updatedAt":"2023-02-03 10:15:57","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$23 -SagooIOT_sysMenuApi_119 -$636 -[{"id":391,"menuId":119,"apiId":311,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:20:32","deletedBy":0,"deletedAt":""},{"id":392,"menuId":119,"apiId":312,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:21:18","deletedBy":0,"deletedAt":""},{"id":393,"menuId":119,"apiId":313,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:22:47","deletedBy":0,"deletedAt":""},{"id":394,"menuId":119,"apiId":314,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:23:24","deletedBy":0,"deletedAt":""},{"id":395,"menuId":119,"apiId":315,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-03 10:23:54","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuButton_131 -$1181 -[{"id":183,"parentId":-1,"menuId":131,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:29:28","updatedBy":0,"updatedAt":"2023-04-10 08:29:28","deletedBy":0,"deletedAt":""},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:29:30","updatedBy":0,"updatedAt":"2023-04-10 08:29:30","deletedBy":0,"deletedAt":""},{"id":185,"parentId":-1,"menuId":131,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:29:33","updatedBy":0,"updatedAt":"2023-04-10 08:29:33","deletedBy":0,"deletedAt":""},{"id":186,"parentId":-1,"menuId":131,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:29:55","updatedBy":0,"updatedAt":"2023-04-10 08:29:55","deletedBy":0,"deletedAt":""},{"id":188,"parentId":-1,"menuId":131,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:30:43","updatedBy":0,"updatedAt":"2023-04-10 08:30:43","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuColumn_131 -$1195 -[{"id":253,"parentId":-1,"menuId":131,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:31:51","updatedBy":0,"updatedAt":"2023-04-10 08:31:51","deletedBy":0,"deletedAt":""},{"id":254,"parentId":-1,"menuId":131,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:32:01","updatedBy":1,"updatedAt":"2023-04-10 08:33:21","deletedBy":0,"deletedAt":""},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:33:44","updatedBy":0,"updatedAt":"2023-04-10 08:33:44","deletedBy":0,"deletedAt":""},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","code":"standard","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:34:13","updatedBy":0,"updatedAt":"2023-04-10 08:34:13","deletedBy":0,"deletedAt":""},{"id":257,"parentId":-1,"menuId":131,"name":"说明","code":"description","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-10 08:34:35","updatedBy":0,"updatedAt":"2023-04-10 08:34:35","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$23 -SagooIOT_sysMenuApi_131 -$509 -[{"id":401,"menuId":131,"apiId":318,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 22:19:45","deletedBy":0,"deletedAt":""},{"id":402,"menuId":131,"apiId":317,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 22:19:59","deletedBy":0,"deletedAt":""},{"id":406,"menuId":131,"apiId":320,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 22:21:38","deletedBy":0,"deletedAt":""},{"id":407,"menuId":131,"apiId":319,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 22:21:47","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$26 -SagooIOT_sysMenuButton_136 -$710 -[{"id":198,"parentId":-1,"menuId":136,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:32:32","updatedBy":0,"updatedAt":"2023-06-19 11:32:32","deletedBy":0,"deletedAt":""},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:32:36","updatedBy":0,"updatedAt":"2023-06-19 11:32:36","deletedBy":0,"deletedAt":""},{"id":200,"parentId":-1,"menuId":136,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":10,"createdAt":"2023-06-19 11:32:38","updatedBy":0,"updatedAt":"2023-06-19 11:32:38","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_46 -$943 -[{"id":125,"parentId":-1,"menuId":46,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:38:32","updatedBy":0,"updatedAt":"2022-11-07 22:38:32","deletedBy":0,"deletedAt":""},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:38:33","updatedBy":0,"updatedAt":"2022-11-07 22:38:33","deletedBy":0,"deletedAt":""},{"id":127,"parentId":-1,"menuId":46,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:38:35","updatedBy":0,"updatedAt":"2022-11-07 22:38:35","deletedBy":0,"deletedAt":""},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","types":"do","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:38:43","updatedBy":0,"updatedAt":"2022-11-07 22:38:43","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_46 -$1941 -[{"id":181,"parentId":-1,"menuId":46,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:42:33","updatedBy":0,"updatedAt":"2022-11-07 22:42:33","deletedBy":0,"deletedAt":""},{"id":182,"parentId":-1,"menuId":46,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:42:34","updatedBy":0,"updatedAt":"2022-11-07 22:42:34","deletedBy":0,"deletedAt":""},{"id":183,"parentId":-1,"menuId":46,"name":"ID","code":"jobId","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:42:46","updatedBy":0,"updatedAt":"2022-11-07 22:42:46","deletedBy":0,"deletedAt":""},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","code":"jobName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:42:57","updatedBy":0,"updatedAt":"2022-11-07 22:42:57","deletedBy":0,"deletedAt":""},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:43:06","updatedBy":0,"updatedAt":"2022-11-07 22:43:06","deletedBy":0,"deletedAt":""},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","code":"jobGroup","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:43:13","updatedBy":0,"updatedAt":"2022-11-07 22:43:13","deletedBy":0,"deletedAt":""},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","code":"invokeTarget","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:43:24","updatedBy":0,"updatedAt":"2022-11-07 22:43:24","deletedBy":0,"deletedAt":""},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","code":"cronExpression","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:43:36","updatedBy":0,"updatedAt":"2022-11-07 22:43:36","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_46 -$1009 -[{"id":352,"menuId":46,"apiId":278,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:20:30","deletedBy":0,"deletedAt":""},{"id":353,"menuId":46,"apiId":279,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:20:52","deletedBy":0,"deletedAt":""},{"id":354,"menuId":46,"apiId":280,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:21:12","deletedBy":0,"deletedAt":""},{"id":355,"menuId":46,"apiId":281,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:21:35","deletedBy":0,"deletedAt":""},{"id":356,"menuId":46,"apiId":282,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:21:56","deletedBy":0,"deletedAt":""},{"id":357,"menuId":46,"apiId":283,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:22:19","deletedBy":0,"deletedAt":""},{"id":358,"menuId":46,"apiId":284,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:22:40","deletedBy":0,"deletedAt":""},{"id":359,"menuId":46,"apiId":285,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:23:00","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_18 -$234 -[{"id":44,"parentId":-1,"menuId":18,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:35:13","updatedBy":0,"updatedAt":"2022-11-03 20:35:13","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_18 -$1207 -[{"id":40,"parentId":-1,"menuId":18,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:39:18","updatedBy":0,"updatedAt":"2022-11-03 20:39:18","deletedBy":0,"deletedAt":""},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","code":"loginLocation","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:39:34","updatedBy":0,"updatedAt":"2022-11-03 20:39:34","deletedBy":0,"deletedAt":""},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","code":"msg","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:39:50","updatedBy":0,"updatedAt":"2022-11-03 20:39:50","deletedBy":0,"deletedAt":""},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","code":"loginTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 12:40:03","updatedBy":1,"updatedAt":"2022-11-03 20:40:23","deletedBy":0,"deletedAt":""},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","code":"module","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:40:15","updatedBy":0,"updatedAt":"2022-11-03 20:40:15","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_18 -$379 -[{"id":276,"menuId":18,"apiId":197,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:00:17","deletedBy":0,"deletedAt":""},{"id":277,"menuId":18,"apiId":198,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:00:44","deletedBy":0,"deletedAt":""},{"id":278,"menuId":18,"apiId":199,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:01:09","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_21 -$704 -[{"id":116,"parentId":-1,"menuId":21,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:47:20","updatedBy":0,"updatedAt":"2022-11-07 21:47:20","deletedBy":0,"deletedAt":""},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:47:22","updatedBy":0,"updatedAt":"2022-11-07 21:47:22","deletedBy":0,"deletedAt":""},{"id":118,"parentId":-1,"menuId":21,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:47:24","updatedBy":0,"updatedAt":"2022-11-07 21:47:24","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_21 -$1441 -[{"id":165,"parentId":-1,"menuId":21,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:53:45","updatedBy":0,"updatedAt":"2022-11-07 21:53:45","deletedBy":0,"deletedAt":""},{"id":166,"parentId":-1,"menuId":21,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:53:49","updatedBy":0,"updatedAt":"2022-11-07 21:53:49","deletedBy":0,"deletedAt":""},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","code":"dictId","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:54:01","updatedBy":0,"updatedAt":"2022-11-07 21:54:01","deletedBy":0,"deletedAt":""},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","code":"dictName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:54:09","updatedBy":0,"updatedAt":"2022-11-07 21:54:09","deletedBy":0,"deletedAt":""},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","code":"dictType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:54:19","updatedBy":0,"updatedAt":"2022-11-07 21:54:19","deletedBy":0,"deletedAt":""},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:54:32","updatedBy":0,"updatedAt":"2022-11-07 21:54:32","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_21 -$631 -[{"id":339,"menuId":21,"apiId":264,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:12:19","deletedBy":0,"deletedAt":""},{"id":341,"menuId":21,"apiId":266,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:13:14","deletedBy":0,"deletedAt":""},{"id":342,"menuId":21,"apiId":267,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:13:53","deletedBy":0,"deletedAt":""},{"id":343,"menuId":21,"apiId":268,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:14:16","deletedBy":0,"deletedAt":""},{"id":344,"menuId":21,"apiId":269,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:14:39","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_22 -$704 -[{"id":119,"parentId":-1,"menuId":22,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:56:01","updatedBy":0,"updatedAt":"2022-11-07 21:56:01","deletedBy":0,"deletedAt":""},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:56:05","updatedBy":0,"updatedAt":"2022-11-07 21:56:05","deletedBy":0,"deletedAt":""},{"id":121,"parentId":-1,"menuId":22,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:56:07","updatedBy":0,"updatedAt":"2022-11-07 21:56:07","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_22 -$1687 -[{"id":171,"parentId":-1,"menuId":22,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:56:33","updatedBy":0,"updatedAt":"2022-11-07 21:56:33","deletedBy":0,"deletedAt":""},{"id":172,"parentId":-1,"menuId":22,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:57:20","updatedBy":0,"updatedAt":"2022-11-07 21:57:20","deletedBy":0,"deletedAt":""},{"id":173,"parentId":-1,"menuId":22,"name":"备注","code":"remark","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:57:35","updatedBy":0,"updatedAt":"2022-11-07 21:57:35","deletedBy":0,"deletedAt":""},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","code":"dictSort","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:57:44","updatedBy":0,"updatedAt":"2022-11-07 21:57:44","deletedBy":0,"deletedAt":""},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","code":"dictValue","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:58:00","updatedBy":0,"updatedAt":"2022-11-07 21:58:00","deletedBy":0,"deletedAt":""},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","code":"dictLabel","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:58:11","updatedBy":0,"updatedAt":"2022-11-07 21:58:11","deletedBy":0,"deletedAt":""},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","code":"dictCode","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 21:58:20","updatedBy":0,"updatedAt":"2022-11-07 21:58:20","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_22 -$757 -[{"id":345,"menuId":22,"apiId":271,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:15:01","deletedBy":0,"deletedAt":""},{"id":347,"menuId":22,"apiId":273,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:15:26","deletedBy":0,"deletedAt":""},{"id":348,"menuId":22,"apiId":274,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:15:50","deletedBy":0,"deletedAt":""},{"id":349,"menuId":22,"apiId":275,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:16:24","deletedBy":0,"deletedAt":""},{"id":350,"menuId":22,"apiId":276,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:16:45","deletedBy":0,"deletedAt":""},{"id":389,"menuId":22,"apiId":277,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-22 13:02:13","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_25 -$1501 -[{"id":138,"menuId":25,"apiId":64,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:40:16","deletedBy":0,"deletedAt":""},{"id":139,"menuId":25,"apiId":62,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:40:23","deletedBy":0,"deletedAt":""},{"id":140,"menuId":25,"apiId":65,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:43:04","deletedBy":0,"deletedAt":""},{"id":141,"menuId":25,"apiId":66,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:43:27","deletedBy":0,"deletedAt":""},{"id":142,"menuId":25,"apiId":67,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:43:53","deletedBy":0,"deletedAt":""},{"id":143,"menuId":25,"apiId":68,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:45:04","deletedBy":0,"deletedAt":""},{"id":144,"menuId":25,"apiId":69,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:45:22","deletedBy":0,"deletedAt":""},{"id":145,"menuId":25,"apiId":70,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:45:42","deletedBy":0,"deletedAt":""},{"id":147,"menuId":25,"apiId":71,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:47:27","deletedBy":0,"deletedAt":""},{"id":148,"menuId":25,"apiId":72,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:47:53","deletedBy":0,"deletedAt":""},{"id":149,"menuId":25,"apiId":73,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:48:14","deletedBy":0,"deletedAt":""},{"id":398,"menuId":25,"apiId":63,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-08 22:51:54","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_32 -$940 -[{"id":50,"parentId":-1,"menuId":32,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 21:41:08","updatedBy":0,"updatedAt":"2022-11-03 21:41:08","deletedBy":0,"deletedAt":""},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:00:53","updatedBy":0,"updatedAt":"2022-11-07 22:00:53","deletedBy":0,"deletedAt":""},{"id":123,"parentId":-1,"menuId":32,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:00:55","updatedBy":0,"updatedAt":"2022-11-07 22:00:55","deletedBy":0,"deletedAt":""},{"id":124,"parentId":-1,"menuId":32,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:00:57","updatedBy":0,"updatedAt":"2022-11-07 22:00:57","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_32 -$709 -[{"id":178,"parentId":-1,"menuId":32,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:01:31","updatedBy":0,"updatedAt":"2022-11-07 22:01:31","deletedBy":0,"deletedAt":""},{"id":179,"parentId":-1,"menuId":32,"name":"名称","code":"title","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:01:40","updatedBy":0,"updatedAt":"2022-11-07 22:01:40","deletedBy":0,"deletedAt":""},{"id":180,"parentId":-1,"menuId":32,"name":"描述","code":"explain","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:01:48","updatedBy":0,"updatedAt":"2022-11-07 22:01:48","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_32 -$505 -[{"id":385,"menuId":32,"apiId":259,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 23:44:18","deletedBy":0,"deletedAt":""},{"id":386,"menuId":32,"apiId":262,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-20 21:03:54","deletedBy":0,"deletedAt":""},{"id":387,"menuId":32,"apiId":263,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-20 21:04:06","deletedBy":0,"deletedAt":""},{"id":388,"menuId":32,"apiId":265,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-20 21:14:33","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_35 -$936 -[{"id":16,"parentId":-1,"menuId":35,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-08-14 21:14:48","updatedBy":0,"updatedAt":"2022-08-14 21:14:48","deletedBy":0,"deletedAt":""},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:13","updatedBy":0,"updatedAt":"2022-11-06 10:13:13","deletedBy":0,"deletedAt":""},{"id":93,"parentId":-1,"menuId":35,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:13:14","updatedBy":0,"updatedAt":"2022-11-06 10:13:14","deletedBy":0,"deletedAt":""},{"id":136,"parentId":-1,"menuId":35,"name":"描述","types":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 09:44:20","updatedBy":0,"updatedAt":"2022-11-10 09:44:20","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_35 -$709 -[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:12:59","updatedBy":0,"updatedAt":"2022-11-06 10:12:59","deletedBy":0,"deletedAt":""},{"id":136,"parentId":-1,"menuId":35,"name":"描述","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 02:13:03","updatedBy":1,"updatedAt":"2022-11-08 23:46:21","deletedBy":0,"deletedAt":""},{"id":252,"parentId":-1,"menuId":35,"name":"排序","code":"sort","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-28 11:11:57","updatedBy":0,"updatedAt":"2023-03-28 11:11:57","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_35 -$501 -[{"id":133,"menuId":35,"apiId":60,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:29:19","deletedBy":0,"deletedAt":""},{"id":169,"menuId":35,"apiId":92,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 11:39:54","deletedBy":0,"deletedAt":""},{"id":170,"menuId":35,"apiId":93,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 11:40:25","deletedBy":0,"deletedAt":""},{"id":171,"menuId":35,"apiId":94,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 11:41:08","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_37 -$1643 -[{"id":28,"parentId":-1,"menuId":37,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:00:38","updatedBy":0,"updatedAt":"2022-11-03 11:00:38","deletedBy":0,"deletedAt":""},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:00:41","updatedBy":0,"updatedAt":"2022-11-03 11:00:41","deletedBy":0,"deletedAt":""},{"id":30,"parentId":-1,"menuId":37,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:00:42","updatedBy":0,"updatedAt":"2022-11-03 11:00:42","deletedBy":0,"deletedAt":""},{"id":31,"parentId":-1,"menuId":37,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:00:44","updatedBy":0,"updatedAt":"2022-11-03 11:00:44","deletedBy":0,"deletedAt":""},{"id":32,"parentId":-1,"menuId":37,"name":"复制","types":"copy","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 03:04:35","updatedBy":1,"updatedAt":"2022-11-03 11:04:50","deletedBy":0,"deletedAt":""},{"id":147,"parentId":-1,"menuId":37,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:53:40","updatedBy":0,"updatedAt":"2022-11-11 22:53:40","deletedBy":0,"deletedAt":""},{"id":148,"parentId":-1,"menuId":37,"name":"重置","types":"reset","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:54:02","updatedBy":0,"updatedAt":"2022-11-11 22:54:02","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_37 -$1186 -[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:10:18","updatedBy":0,"updatedAt":"2022-11-03 11:10:18","deletedBy":0,"deletedAt":""},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","code":"from","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:10:27","updatedBy":0,"updatedAt":"2022-11-03 11:10:27","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"menuId":37,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:10:37","updatedBy":0,"updatedAt":"2022-11-03 11:10:37","deletedBy":0,"deletedAt":""},{"id":20,"parentId":-1,"menuId":37,"name":"ID","code":"sourceId","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 11:11:36","updatedBy":0,"updatedAt":"2022-11-03 11:11:36","deletedBy":0,"deletedAt":""},{"id":209,"parentId":-1,"menuId":37,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:12:39","updatedBy":1,"updatedAt":"2022-11-12 01:12:53","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_37 -$1764 -[{"id":168,"menuId":37,"apiId":91,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 11:13:53","deletedBy":0,"deletedAt":""},{"id":217,"menuId":37,"apiId":140,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:16:03","deletedBy":0,"deletedAt":""},{"id":218,"menuId":37,"apiId":141,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:16:16","deletedBy":0,"deletedAt":""},{"id":221,"menuId":37,"apiId":144,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:17:21","deletedBy":0,"deletedAt":""},{"id":222,"menuId":37,"apiId":145,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:17:37","deletedBy":0,"deletedAt":""},{"id":223,"menuId":37,"apiId":146,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:18:02","deletedBy":0,"deletedAt":""},{"id":224,"menuId":37,"apiId":147,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:18:17","deletedBy":0,"deletedAt":""},{"id":225,"menuId":37,"apiId":148,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:18:30","deletedBy":0,"deletedAt":""},{"id":226,"menuId":37,"apiId":149,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:18:47","deletedBy":0,"deletedAt":""},{"id":227,"menuId":37,"apiId":150,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:19:00","deletedBy":0,"deletedAt":""},{"id":228,"menuId":37,"apiId":151,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:19:28","deletedBy":0,"deletedAt":""},{"id":229,"menuId":37,"apiId":152,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:19:43","deletedBy":0,"deletedAt":""},{"id":233,"menuId":37,"apiId":156,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:20:55","deletedBy":0,"deletedAt":""},{"id":346,"menuId":37,"apiId":272,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:15:23","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_39 -$1654 -[{"id":78,"parentId":-1,"menuId":39,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:44:42","updatedBy":0,"updatedAt":"2022-11-06 09:44:42","deletedBy":0,"deletedAt":""},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:44:44","updatedBy":0,"updatedAt":"2022-11-06 09:44:44","deletedBy":0,"deletedAt":""},{"id":80,"parentId":-1,"menuId":39,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:44:45","updatedBy":0,"updatedAt":"2022-11-06 09:44:45","deletedBy":0,"deletedAt":""},{"id":81,"parentId":-1,"menuId":39,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:44:47","updatedBy":0,"updatedAt":"2022-11-06 09:44:47","deletedBy":0,"deletedAt":""},{"id":82,"parentId":-1,"menuId":39,"name":"复制","types":"copy","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:46:46","updatedBy":0,"updatedAt":"2022-11-06 09:46:46","deletedBy":0,"deletedAt":""},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","types":"record","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:47:41","updatedBy":0,"updatedAt":"2022-11-06 09:47:41","deletedBy":0,"deletedAt":""},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","types":"juhe","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-22 11:39:45","updatedBy":0,"updatedAt":"2023-02-22 11:39:45","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_39 -$1891 -[{"id":110,"parentId":-1,"menuId":39,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:49:11","updatedBy":0,"updatedAt":"2022-11-06 09:49:11","deletedBy":0,"deletedAt":""},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:49:27","updatedBy":0,"updatedAt":"2022-11-06 09:49:27","deletedBy":0,"deletedAt":""},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:49:37","updatedBy":0,"updatedAt":"2022-11-06 09:49:37","deletedBy":0,"deletedAt":""},{"id":113,"parentId":-1,"menuId":39,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:49:40","updatedBy":0,"updatedAt":"2022-11-06 09:49:40","deletedBy":0,"deletedAt":""},{"id":198,"parentId":-1,"menuId":39,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-08 23:38:11","updatedBy":0,"updatedAt":"2022-11-08 23:38:11","deletedBy":0,"deletedAt":""},{"id":199,"parentId":-1,"menuId":39,"name":"描述","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-08 23:38:21","updatedBy":0,"updatedAt":"2022-11-08 23:38:21","deletedBy":0,"deletedAt":""},{"id":210,"parentId":-1,"menuId":39,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-12 01:13:13","updatedBy":0,"updatedAt":"2022-11-12 01:13:13","deletedBy":0,"deletedAt":""},{"id":245,"parentId":-1,"menuId":39,"name":"类型","code":"typeName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-29 16:56:09","updatedBy":0,"updatedAt":"2023-01-29 16:56:09","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_39 -$883 -[{"id":238,"menuId":39,"apiId":161,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:22:52","deletedBy":0,"deletedAt":""},{"id":239,"menuId":39,"apiId":162,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:23:06","deletedBy":0,"deletedAt":""},{"id":240,"menuId":39,"apiId":163,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:23:20","deletedBy":0,"deletedAt":""},{"id":241,"menuId":39,"apiId":164,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:23:35","deletedBy":0,"deletedAt":""},{"id":242,"menuId":39,"apiId":165,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:23:48","deletedBy":0,"deletedAt":""},{"id":244,"menuId":39,"apiId":167,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:24:32","deletedBy":0,"deletedAt":""},{"id":247,"menuId":39,"apiId":170,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:25:24","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_41 -$474 -[{"id":158,"parentId":-1,"menuId":41,"name":"管理","types":"setting","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:36:08","updatedBy":0,"updatedAt":"2022-12-07 14:36:08","deletedBy":0,"deletedAt":""},{"id":159,"parentId":-1,"menuId":41,"name":"配置","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:36:23","updatedBy":0,"updatedAt":"2022-12-07 14:36:23","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_41 -$941 -[{"id":234,"parentId":-1,"menuId":41,"name":"标题","code":"title","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:39:28","updatedBy":0,"updatedAt":"2022-12-07 14:39:28","deletedBy":0,"deletedAt":""},{"id":235,"parentId":-1,"menuId":41,"name":"描述","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:39:38","updatedBy":0,"updatedAt":"2022-12-07 14:39:38","deletedBy":0,"deletedAt":""},{"id":236,"parentId":-1,"menuId":41,"name":"图标","code":"image","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:40:56","updatedBy":0,"updatedAt":"2022-12-07 14:40:56","deletedBy":0,"deletedAt":""},{"id":237,"parentId":-1,"menuId":41,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-07 14:40:58","updatedBy":0,"updatedAt":"2022-12-07 14:40:58","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_42 -$472 -[{"id":160,"parentId":-1,"menuId":42,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 20:19:34","updatedBy":0,"updatedAt":"2022-12-15 20:19:34","deletedBy":0,"deletedAt":""},{"id":161,"parentId":-1,"menuId":42,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-16 13:58:00","updatedBy":0,"updatedAt":"2022-12-16 13:58:00","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_42 -$1181 -[{"id":238,"parentId":-1,"menuId":42,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:00","updatedBy":1,"updatedAt":"2022-12-15 19:39:19","deletedBy":0,"deletedAt":""},{"id":239,"parentId":-1,"menuId":42,"name":"标题","code":"title","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:34","updatedBy":0,"updatedAt":"2022-12-15 19:39:34","deletedBy":0,"deletedAt":""},{"id":240,"parentId":-1,"menuId":42,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:54","updatedBy":0,"updatedAt":"2022-12-15 19:39:54","deletedBy":0,"deletedAt":""},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:56","updatedBy":0,"updatedAt":"2022-12-15 19:39:56","deletedBy":0,"deletedAt":""},{"id":242,"parentId":-1,"menuId":42,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-12-15 19:39:58","updatedBy":0,"updatedAt":"2022-12-15 19:39:58","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_44 -$876 -[{"id":150,"menuId":44,"apiId":74,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:49:20","deletedBy":0,"deletedAt":""},{"id":151,"menuId":44,"apiId":75,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:49:46","deletedBy":0,"deletedAt":""},{"id":152,"menuId":44,"apiId":76,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:50:04","deletedBy":0,"deletedAt":""},{"id":153,"menuId":44,"apiId":77,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:50:28","deletedBy":0,"deletedAt":""},{"id":154,"menuId":44,"apiId":78,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:51:03","deletedBy":0,"deletedAt":""},{"id":155,"menuId":44,"apiId":79,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:51:27","deletedBy":0,"deletedAt":""},{"id":156,"menuId":44,"apiId":80,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-09 23:51:47","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_74 -$253 -[{"id":313,"menuId":74,"apiId":240,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:35:50","deletedBy":0,"deletedAt":""},{"id":318,"menuId":74,"apiId":243,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:40:07","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_48 -$704 -[{"id":129,"parentId":-1,"menuId":48,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:22","updatedBy":0,"updatedAt":"2022-11-07 22:44:22","deletedBy":0,"deletedAt":""},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:23","updatedBy":0,"updatedAt":"2022-11-07 22:44:23","deletedBy":0,"deletedAt":""},{"id":131,"parentId":-1,"menuId":48,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:25","updatedBy":0,"updatedAt":"2022-11-07 22:44:25","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_48 -$956 -[{"id":189,"parentId":-1,"menuId":48,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:56","updatedBy":0,"updatedAt":"2022-11-07 22:44:56","deletedBy":0,"deletedAt":""},{"id":190,"parentId":-1,"menuId":48,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:44:57","updatedBy":0,"updatedAt":"2022-11-07 22:44:57","deletedBy":0,"deletedAt":""},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:45:03","updatedBy":0,"updatedAt":"2022-11-07 22:45:03","deletedBy":0,"deletedAt":""},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","code":"address","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 22:45:13","updatedBy":0,"updatedAt":"2022-11-07 22:45:13","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_48 -$883 -[{"id":360,"menuId":48,"apiId":286,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:25:29","deletedBy":0,"deletedAt":""},{"id":361,"menuId":48,"apiId":287,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:25:57","deletedBy":0,"deletedAt":""},{"id":362,"menuId":48,"apiId":288,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:26:19","deletedBy":0,"deletedAt":""},{"id":363,"menuId":48,"apiId":289,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:26:42","deletedBy":0,"deletedAt":""},{"id":364,"menuId":48,"apiId":290,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:27:03","deletedBy":0,"deletedAt":""},{"id":365,"menuId":48,"apiId":291,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:27:23","deletedBy":0,"deletedAt":""},{"id":366,"menuId":48,"apiId":292,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:27:44","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_49 -$470 -[{"id":45,"parentId":-1,"menuId":49,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:35:35","updatedBy":0,"updatedAt":"2022-11-03 20:35:35","deletedBy":0,"deletedAt":""},{"id":46,"parentId":-1,"menuId":49,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:42:52","updatedBy":0,"updatedAt":"2022-11-03 20:42:52","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_49 -$1451 -[{"id":45,"parentId":-1,"menuId":49,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:43:02","updatedBy":0,"updatedAt":"2022-11-03 20:43:02","deletedBy":0,"deletedAt":""},{"id":46,"parentId":-1,"menuId":49,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:43:15","updatedBy":0,"updatedAt":"2022-11-03 20:43:15","deletedBy":0,"deletedAt":""},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","code":"operatorType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:44:09","updatedBy":0,"updatedAt":"2022-11-03 20:44:09","deletedBy":0,"deletedAt":""},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","code":"operName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:45:06","updatedBy":0,"updatedAt":"2022-11-03 20:45:06","deletedBy":0,"deletedAt":""},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","code":"operLocation","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:45:20","updatedBy":0,"updatedAt":"2022-11-03 20:45:20","deletedBy":0,"deletedAt":""},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","code":"operTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:45:31","updatedBy":0,"updatedAt":"2022-11-03 20:45:31","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_49 -$379 -[{"id":279,"menuId":49,"apiId":200,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:01:40","deletedBy":0,"deletedAt":""},{"id":280,"menuId":49,"apiId":201,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:03:07","deletedBy":0,"deletedAt":""},{"id":281,"menuId":49,"apiId":202,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:03:31","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_50 -$234 -[{"id":47,"parentId":-1,"menuId":50,"name":"强退","types":"out","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:48:01","updatedBy":0,"updatedAt":"2022-11-03 20:48:01","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_50 -$950 -[{"id":51,"parentId":-1,"menuId":50,"name":"操作","code":"handle","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:48:09","updatedBy":0,"updatedAt":"2022-11-03 20:48:09","deletedBy":0,"deletedAt":""},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","code":"userName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:49:36","updatedBy":0,"updatedAt":"2022-11-03 20:49:36","deletedBy":0,"deletedAt":""},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","code":"ip","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:49:45","updatedBy":0,"updatedAt":"2022-11-03 20:49:45","deletedBy":0,"deletedAt":""},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","code":"os","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-03 20:49:53","updatedBy":0,"updatedAt":"2022-11-03 20:49:53","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_50 -$253 -[{"id":282,"menuId":50,"apiId":203,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:05:00","deletedBy":0,"deletedAt":""},{"id":283,"menuId":50,"apiId":204,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:05:28","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_51 -$486 -[{"id":192,"parentId":-1,"menuId":51,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-17 22:19:03","updatedBy":1,"updatedAt":"2023-05-21 22:17:47","deletedBy":0,"deletedAt":""},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","types":"mutipleBind","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-17 22:23:05","updatedBy":1,"updatedAt":"2023-05-21 22:17:49","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_51 -$1917 -[{"id":261,"parentId":-1,"menuId":51,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:23:00","updatedBy":0,"updatedAt":"2023-05-22 11:23:00","deletedBy":0,"deletedAt":""},{"id":262,"parentId":-1,"menuId":51,"name":"标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:23:15","updatedBy":0,"updatedAt":"2023-05-22 11:23:15","deletedBy":0,"deletedAt":""},{"id":263,"parentId":-1,"menuId":51,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:23:36","updatedBy":0,"updatedAt":"2023-05-22 11:23:36","deletedBy":0,"deletedAt":""},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","code":"productName","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:23:51","updatedBy":0,"updatedAt":"2023-05-22 11:23:51","deletedBy":0,"deletedAt":""},{"id":265,"parentId":-1,"menuId":51,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:24:06","updatedBy":0,"updatedAt":"2023-05-22 11:24:06","deletedBy":0,"deletedAt":""},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","code":"registryTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:24:35","updatedBy":0,"updatedAt":"2023-05-22 11:24:35","deletedBy":0,"deletedAt":""},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:24:55","updatedBy":0,"updatedAt":"2023-05-22 11:24:55","deletedBy":0,"deletedAt":""},{"id":268,"parentId":-1,"menuId":51,"name":"说明","code":"desc","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 11:25:12","updatedBy":0,"updatedAt":"2023-05-22 11:25:12","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_51 -$3529 -[{"id":189,"menuId":51,"apiId":112,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:06:54","deletedBy":0,"deletedAt":""},{"id":190,"menuId":51,"apiId":113,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:07:11","deletedBy":0,"deletedAt":""},{"id":191,"menuId":51,"apiId":114,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:07:26","deletedBy":0,"deletedAt":""},{"id":192,"menuId":51,"apiId":115,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:07:43","deletedBy":0,"deletedAt":""},{"id":193,"menuId":51,"apiId":116,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:08:00","deletedBy":0,"deletedAt":""},{"id":197,"menuId":51,"apiId":120,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:09:33","deletedBy":0,"deletedAt":""},{"id":198,"menuId":51,"apiId":121,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:09:49","deletedBy":0,"deletedAt":""},{"id":200,"menuId":51,"apiId":123,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:10:55","deletedBy":0,"deletedAt":""},{"id":201,"menuId":51,"apiId":124,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:11:09","deletedBy":0,"deletedAt":""},{"id":202,"menuId":51,"apiId":125,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:11:30","deletedBy":0,"deletedAt":""},{"id":203,"menuId":51,"apiId":126,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:11:47","deletedBy":0,"deletedAt":""},{"id":204,"menuId":51,"apiId":127,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:12:01","deletedBy":0,"deletedAt":""},{"id":205,"menuId":51,"apiId":128,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:12:13","deletedBy":0,"deletedAt":""},{"id":206,"menuId":51,"apiId":129,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:12:26","deletedBy":0,"deletedAt":""},{"id":207,"menuId":51,"apiId":130,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:12:44","deletedBy":0,"deletedAt":""},{"id":208,"menuId":51,"apiId":131,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:01","deletedBy":0,"deletedAt":""},{"id":209,"menuId":51,"apiId":132,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:13","deletedBy":0,"deletedAt":""},{"id":210,"menuId":51,"apiId":133,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:25","deletedBy":0,"deletedAt":""},{"id":211,"menuId":51,"apiId":134,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:42","deletedBy":0,"deletedAt":""},{"id":212,"menuId":51,"apiId":135,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:13:59","deletedBy":0,"deletedAt":""},{"id":213,"menuId":51,"apiId":136,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:14:13","deletedBy":0,"deletedAt":""},{"id":214,"menuId":51,"apiId":137,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:14:28","deletedBy":0,"deletedAt":""},{"id":215,"menuId":51,"apiId":138,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:14:43","deletedBy":0,"deletedAt":""},{"id":216,"menuId":51,"apiId":139,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:14:58","deletedBy":0,"deletedAt":""},{"id":415,"menuId":51,"apiId":323,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-23 08:19:13","deletedBy":0,"deletedAt":""},{"id":416,"menuId":51,"apiId":324,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-23 08:19:24","deletedBy":0,"deletedAt":""},{"id":417,"menuId":51,"apiId":325,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-23 08:19:35","deletedBy":0,"deletedAt":""},{"id":418,"menuId":51,"apiId":326,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-23 08:19:47","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_61 -$950 -[{"id":84,"parentId":-1,"menuId":61,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:52:32","updatedBy":0,"updatedAt":"2022-11-06 09:52:32","deletedBy":0,"deletedAt":""},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:52:33","updatedBy":0,"updatedAt":"2022-11-06 09:52:33","deletedBy":0,"deletedAt":""},{"id":86,"parentId":-1,"menuId":61,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:52:38","updatedBy":0,"updatedAt":"2022-11-06 09:52:38","deletedBy":0,"deletedAt":""},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","types":"pro-status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:54:09","updatedBy":0,"updatedAt":"2022-11-06 09:54:09","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_61 -$1441 -[{"id":114,"parentId":-1,"menuId":61,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:55:37","updatedBy":0,"updatedAt":"2022-11-06 09:55:37","deletedBy":0,"deletedAt":""},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-05 17:55:43","updatedBy":1,"updatedAt":"2022-11-06 09:55:59","deletedBy":0,"deletedAt":""},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:56:07","updatedBy":0,"updatedAt":"2022-11-06 09:56:07","deletedBy":0,"deletedAt":""},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","code":"dataType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:56:15","updatedBy":0,"updatedAt":"2022-11-06 09:56:15","deletedBy":0,"deletedAt":""},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","code":"value","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:56:22","updatedBy":0,"updatedAt":"2022-11-06 09:56:22","deletedBy":0,"deletedAt":""},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:56:31","updatedBy":0,"updatedAt":"2022-11-06 09:56:31","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_61 -$1135 -[{"id":219,"menuId":61,"apiId":142,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:16:42","deletedBy":0,"deletedAt":""},{"id":220,"menuId":61,"apiId":143,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:16:59","deletedBy":0,"deletedAt":""},{"id":230,"menuId":61,"apiId":153,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:20:00","deletedBy":0,"deletedAt":""},{"id":231,"menuId":61,"apiId":154,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:20:15","deletedBy":0,"deletedAt":""},{"id":232,"menuId":61,"apiId":155,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:20:39","deletedBy":0,"deletedAt":""},{"id":234,"menuId":61,"apiId":157,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:21:16","deletedBy":0,"deletedAt":""},{"id":235,"menuId":61,"apiId":158,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:21:31","deletedBy":0,"deletedAt":""},{"id":236,"menuId":61,"apiId":159,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:21:48","deletedBy":0,"deletedAt":""},{"id":237,"menuId":61,"apiId":160,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:22:07","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_64 -$937 -[{"id":88,"parentId":-1,"menuId":64,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:58:15","updatedBy":0,"updatedAt":"2022-11-06 09:58:15","deletedBy":0,"deletedAt":""},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:58:16","updatedBy":0,"updatedAt":"2022-11-06 09:58:16","deletedBy":0,"deletedAt":""},{"id":90,"parentId":-1,"menuId":64,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:58:18","updatedBy":0,"updatedAt":"2022-11-06 09:58:18","deletedBy":0,"deletedAt":""},{"id":91,"parentId":-1,"menuId":64,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 09:58:21","updatedBy":0,"updatedAt":"2022-11-06 09:58:21","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_64 -$1915 -[{"id":120,"parentId":-1,"menuId":64,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:29","updatedBy":0,"updatedAt":"2022-11-06 10:01:29","deletedBy":0,"deletedAt":""},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","code":"key","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:38","updatedBy":0,"updatedAt":"2022-11-06 10:01:38","deletedBy":0,"deletedAt":""},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:45","updatedBy":0,"updatedAt":"2022-11-06 10:01:45","deletedBy":0,"deletedAt":""},{"id":123,"parentId":-1,"menuId":64,"name":"类型","code":"dataType","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:51","updatedBy":0,"updatedAt":"2022-11-06 10:01:51","deletedBy":0,"deletedAt":""},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","code":"from","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:01:59","updatedBy":0,"updatedAt":"2022-11-06 10:01:59","deletedBy":0,"deletedAt":""},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","code":"default","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:02:10","updatedBy":0,"updatedAt":"2022-11-06 10:02:10","deletedBy":0,"deletedAt":""},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","code":"value","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:02:17","updatedBy":0,"updatedAt":"2022-11-06 10:02:17","deletedBy":0,"deletedAt":""},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 10:02:24","updatedBy":0,"updatedAt":"2022-11-06 10:02:24","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_64 -$883 -[{"id":243,"menuId":64,"apiId":166,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:24:08","deletedBy":0,"deletedAt":""},{"id":245,"menuId":64,"apiId":168,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:24:47","deletedBy":0,"deletedAt":""},{"id":246,"menuId":64,"apiId":169,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:25:10","deletedBy":0,"deletedAt":""},{"id":248,"menuId":64,"apiId":171,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:25:38","deletedBy":0,"deletedAt":""},{"id":249,"menuId":64,"apiId":172,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:25:55","deletedBy":0,"deletedAt":""},{"id":250,"menuId":64,"apiId":173,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:26:11","deletedBy":0,"deletedAt":""},{"id":251,"menuId":64,"apiId":174,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 13:26:31","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_66 -$1882 -[{"id":100,"parentId":-1,"menuId":66,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-05 15:42:25","updatedBy":1,"updatedAt":"2022-11-11 15:14:45","deletedBy":0,"deletedAt":""},{"id":101,"parentId":-1,"menuId":66,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 23:43:23","updatedBy":0,"updatedAt":"2022-11-06 23:43:23","deletedBy":0,"deletedAt":""},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 23:43:26","updatedBy":0,"updatedAt":"2022-11-06 23:43:26","deletedBy":0,"deletedAt":""},{"id":103,"parentId":-1,"menuId":66,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-05 15:45:29","updatedBy":1,"updatedAt":"2022-11-11 15:14:47","deletedBy":0,"deletedAt":""},{"id":104,"parentId":105,"menuId":66,"name":"删除","types":"del","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 15:46:02","updatedBy":1,"updatedAt":"2022-12-12 22:38:08","deletedBy":0,"deletedAt":""},{"id":105,"parentId":-1,"menuId":66,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 07:46:18","updatedBy":1,"updatedAt":"2022-11-11 15:13:45","deletedBy":0,"deletedAt":""},{"id":106,"parentId":105,"menuId":66,"name":"启用","types":"on","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-05 23:46:34","updatedBy":1,"updatedAt":"2022-12-12 22:37:51","deletedBy":0,"deletedAt":""},{"id":107,"parentId":105,"menuId":66,"name":"禁用","types":"off","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 15:46:48","updatedBy":1,"updatedAt":"2022-12-12 22:38:01","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_66 -$1650 -[{"id":145,"parentId":-1,"menuId":66,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 00:01:36","updatedBy":0,"updatedAt":"2022-11-07 00:01:36","deletedBy":0,"deletedAt":""},{"id":146,"parentId":-1,"menuId":66,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 00:01:52","updatedBy":0,"updatedAt":"2022-11-07 00:01:52","deletedBy":0,"deletedAt":""},{"id":147,"parentId":-1,"menuId":66,"name":"类型","code":"type","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 00:02:08","updatedBy":0,"updatedAt":"2022-11-07 00:02:08","deletedBy":0,"deletedAt":""},{"id":148,"parentId":-1,"menuId":66,"name":"地址","code":"address","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-07 00:02:21","updatedBy":0,"updatedAt":"2022-11-07 00:02:21","deletedBy":0,"deletedAt":""},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","code":"createTime","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-06 16:02:46","updatedBy":1,"updatedAt":"2022-11-07 00:02:55","deletedBy":0,"deletedAt":""},{"id":200,"parentId":-1,"menuId":66,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:10:17","updatedBy":0,"updatedAt":"2022-11-11 15:10:17","deletedBy":0,"deletedAt":""},{"id":201,"parentId":-1,"menuId":66,"name":"操作","code":"auth","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:12:19","updatedBy":0,"updatedAt":"2022-11-11 15:12:19","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_68 -$253 -[{"id":311,"menuId":68,"apiId":240,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:35:50","deletedBy":0,"deletedAt":""},{"id":316,"menuId":68,"apiId":242,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:39:17","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_69 -$253 -[{"id":312,"menuId":69,"apiId":240,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:35:50","deletedBy":0,"deletedAt":""},{"id":315,"menuId":69,"apiId":241,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:38:37","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuButton_70 -$1885 -[{"id":137,"parentId":-1,"menuId":70,"name":"详情","types":"detail","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:34:48","updatedBy":0,"updatedAt":"2022-11-11 17:34:48","deletedBy":0,"deletedAt":""},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","types":"edit","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:34:57","updatedBy":0,"updatedAt":"2022-11-11 17:34:57","deletedBy":0,"deletedAt":""},{"id":139,"parentId":-1,"menuId":70,"name":"更多","types":"more","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:35:06","updatedBy":0,"updatedAt":"2022-11-11 17:35:06","deletedBy":0,"deletedAt":""},{"id":140,"parentId":139,"menuId":70,"name":"启用","types":"on","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 09:35:23","updatedBy":1,"updatedAt":"2022-12-12 22:39:12","deletedBy":0,"deletedAt":""},{"id":141,"parentId":139,"menuId":70,"name":"禁用","types":"off","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 09:35:35","updatedBy":1,"updatedAt":"2022-12-12 22:39:18","deletedBy":0,"deletedAt":""},{"id":142,"parentId":139,"menuId":70,"name":"删除","types":"delete","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 09:35:50","updatedBy":1,"updatedAt":"2022-12-12 22:39:06","deletedBy":0,"deletedAt":""},{"id":143,"parentId":-1,"menuId":70,"name":"查询","types":"query","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:36:51","updatedBy":0,"updatedAt":"2022-11-11 17:36:51","deletedBy":0,"deletedAt":""},{"id":144,"parentId":-1,"menuId":70,"name":"新增","types":"add","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 17:36:56","updatedBy":0,"updatedAt":"2022-11-11 17:36:56","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$25 -SagooIOT_sysMenuColumn_70 -$1647 -[{"id":202,"parentId":-1,"menuId":70,"name":"操作","code":"auth","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:35:32","updatedBy":0,"updatedAt":"2022-11-11 15:35:32","deletedBy":0,"deletedAt":""},{"id":203,"parentId":-1,"menuId":70,"name":"ID","code":"id","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:02","updatedBy":0,"updatedAt":"2022-11-11 15:36:02","deletedBy":0,"deletedAt":""},{"id":204,"parentId":-1,"menuId":70,"name":"名称","code":"name","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:11","updatedBy":0,"updatedAt":"2022-11-11 15:36:11","deletedBy":0,"deletedAt":""},{"id":205,"parentId":-1,"menuId":70,"name":"类型","code":"types","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:22","updatedBy":0,"updatedAt":"2022-11-11 15:36:22","deletedBy":0,"deletedAt":""},{"id":206,"parentId":-1,"menuId":70,"name":"地址","code":"addr","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:32","updatedBy":0,"updatedAt":"2022-11-11 15:36:32","deletedBy":0,"deletedAt":""},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","code":"createdAt","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:36:51","updatedBy":0,"updatedAt":"2022-11-11 15:36:51","deletedBy":0,"deletedAt":""},{"id":208,"parentId":-1,"menuId":70,"name":"状态","code":"status","description":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 15:37:43","updatedBy":0,"updatedAt":"2022-11-11 15:37:43","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_71 -$253 -[{"id":319,"menuId":71,"apiId":244,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:41:50","deletedBy":0,"deletedAt":""},{"id":323,"menuId":71,"apiId":245,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:42:34","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_72 -$253 -[{"id":320,"menuId":72,"apiId":244,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:41:50","deletedBy":0,"deletedAt":""},{"id":324,"menuId":72,"apiId":246,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:43:04","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$22 -SagooIOT_sysMenuApi_73 -$253 -[{"id":321,"menuId":73,"apiId":244,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:41:50","deletedBy":0,"deletedAt":""},{"id":325,"menuId":73,"apiId":247,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 22:43:53","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$15 -SagooIOT_sysApi -$77161 -[{"id":20,"parentId":90,"name":"获取组织数量","types":2,"method":"","address":"/api/v1/system/organization/count","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-07 21:03:50","updatedBy":0,"updatedAt":"2022-11-07 21:03:50","deletedBy":0,"deletedAt":""},{"id":48,"parentId":90,"name":"换热站数据条形图数据","types":2,"method":"","address":"/api/v1/statistics/bar/chart/data","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-07 13:23:39","updatedBy":1,"updatedAt":"2022-11-09 23:05:44","deletedBy":0,"deletedAt":""},{"id":50,"parentId":90,"name":"换热站失水分析条形图列表(api数据)","types":2,"method":"","address":"/api/v1/energy/huanlu/water/flow/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-07 21:24:04","updatedBy":0,"updatedAt":"2022-11-07 21:24:04","deletedBy":0,"deletedAt":""},{"id":51,"parentId":90,"name":"换热站失水分析折线图列表(api数据)","types":2,"method":"","address":"/api/v1/energy/huanlu/water/loss/line/chart","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-07 21:24:17","updatedBy":0,"updatedAt":"2022-11-07 21:24:17","deletedBy":0,"deletedAt":""},{"id":52,"parentId":90,"name":"换热站数据统计","types":2,"method":"","address":"/api/v1/statistics/city/data","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:00:06","updatedBy":0,"updatedAt":"2022-11-09 23:00:06","deletedBy":0,"deletedAt":""},{"id":53,"parentId":90,"name":"环路回温占比数据","types":2,"method":"","address":"/api/v1/statistics/tempering/ratio/data","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:06:39","updatedBy":0,"updatedAt":"2022-11-09 23:06:39","deletedBy":0,"deletedAt":""},{"id":55,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:09:21","updatedBy":0,"updatedAt":"2022-11-09 23:09:21","deletedBy":0,"deletedAt":""},{"id":56,"parentId":90,"name":"根据ID获取指定城市的风力图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getWindpowerEchartById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:11:05","updatedBy":0,"updatedAt":"2022-11-09 23:11:05","deletedBy":0,"deletedAt":""},{"id":57,"parentId":90,"name":"根据ID获取指定城市的温度图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getTemperatureEchartById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:11:34","updatedBy":0,"updatedAt":"2022-11-09 23:11:34","deletedBy":0,"deletedAt":""},{"id":58,"parentId":90,"name":"根据ID获取指定城市的天气","types":2,"method":"","address":"/api/v1/envirotronics/weather/getInfoById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:11:58","updatedBy":0,"updatedAt":"2022-11-09 23:11:58","deletedBy":0,"deletedAt":""},{"id":59,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 15:18:02","updatedBy":1,"updatedAt":"2022-11-09 23:28:13","deletedBy":0,"deletedAt":""},{"id":60,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:29:19","updatedBy":0,"updatedAt":"2022-11-09 23:29:19","deletedBy":0,"deletedAt":""},{"id":61,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 15:30:37","updatedBy":1,"updatedAt":"2022-11-10 22:47:24","deletedBy":0,"deletedAt":""},{"id":62,"parentId":90,"name":"获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getList","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 15:37:55","updatedBy":1,"updatedAt":"2022-11-09 23:40:23","deletedBy":0,"deletedAt":""},{"id":63,"parentId":90,"name":"添加组态拓扑图","types":2,"method":"POST","address":"/api/v1/configure/diagram/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:38:37","updatedBy":1,"updatedAt":"2023-04-08 22:51:54","deletedBy":0,"deletedAt":""},{"id":64,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 15:39:00","updatedBy":1,"updatedAt":"2022-11-09 23:40:16","deletedBy":0,"deletedAt":""},{"id":65,"parentId":90,"name":"编辑组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:43:04","updatedBy":0,"updatedAt":"2022-11-09 23:43:04","deletedBy":0,"deletedAt":""},{"id":66,"parentId":90,"name":"根据文件夹ID获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoByFolderId","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:43:27","updatedBy":0,"updatedAt":"2022-11-09 23:43:27","deletedBy":0,"deletedAt":""},{"id":67,"parentId":90,"name":"根据ID获取拓扑图信息","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:43:53","updatedBy":0,"updatedAt":"2022-11-09 23:43:53","deletedBy":0,"deletedAt":""},{"id":68,"parentId":90,"name":"添加文件夹","types":2,"method":"","address":"/api/v1/configure/folder/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:45:04","updatedBy":0,"updatedAt":"2022-11-09 23:45:04","deletedBy":0,"deletedAt":""},{"id":69,"parentId":90,"name":"删除文件夹","types":2,"method":"","address":"/api/v1/configure/folder/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:45:22","updatedBy":0,"updatedAt":"2022-11-09 23:45:22","deletedBy":0,"deletedAt":""},{"id":70,"parentId":90,"name":"编辑文件夹","types":2,"method":"","address":"/api/v1/configure/folder/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:45:42","updatedBy":0,"updatedAt":"2022-11-09 23:45:42","deletedBy":0,"deletedAt":""},{"id":71,"parentId":90,"name":"编辑组态图状态","types":2,"method":"","address":"/api/v1/configure/folder/editStatus","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 15:46:48","updatedBy":1,"updatedAt":"2022-11-09 23:47:27","deletedBy":0,"deletedAt":""},{"id":72,"parentId":90,"name":"根据ID获取文件夹","types":2,"method":"","address":"/api/v1/configure/folder/getInfoById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:47:53","updatedBy":0,"updatedAt":"2022-11-09 23:47:53","deletedBy":0,"deletedAt":""},{"id":73,"parentId":90,"name":"获取文件夹列表","types":2,"method":"","address":"/api/v1/configure/folder/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:48:14","updatedBy":0,"updatedAt":"2022-11-09 23:48:14","deletedBy":0,"deletedAt":""},{"id":74,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:49:20","updatedBy":0,"updatedAt":"2022-11-09 23:49:20","deletedBy":0,"deletedAt":""},{"id":75,"parentId":90,"name":"添加大屏项目","types":2,"method":"","address":"/api/v1/screen/project/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:49:46","updatedBy":0,"updatedAt":"2022-11-09 23:49:46","deletedBy":0,"deletedAt":""},{"id":76,"parentId":90,"name":"根据ID删除大屏项目","types":2,"method":"","address":"/api/v1/screen/project/delProjectById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:50:04","updatedBy":0,"updatedAt":"2022-11-09 23:50:04","deletedBy":0,"deletedAt":""},{"id":77,"parentId":90,"name":"编辑大屏项目","types":2,"method":"","address":"/api/v1/screen/project/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:50:28","updatedBy":0,"updatedAt":"2022-11-09 23:50:28","deletedBy":0,"deletedAt":""},{"id":78,"parentId":90,"name":"获取项目数据","types":2,"method":"","address":"/api/v1/screen/project/getData","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:51:03","updatedBy":0,"updatedAt":"2022-11-09 23:51:03","deletedBy":0,"deletedAt":""},{"id":79,"parentId":90,"name":"根据ID获取大屏项目","types":2,"method":"","address":"/api/v1/screen/project/getProjectById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:51:27","updatedBy":0,"updatedAt":"2022-11-09 23:51:27","deletedBy":0,"deletedAt":""},{"id":80,"parentId":90,"name":"保存大屏项目数据","types":2,"method":"","address":"/api/v1/screen/project/save/data","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-09 23:51:47","updatedBy":0,"updatedAt":"2022-11-09 23:51:47","deletedBy":0,"deletedAt":""},{"id":81,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 00:00:30","updatedBy":0,"updatedAt":"2022-11-10 00:00:30","deletedBy":0,"deletedAt":""},{"id":82,"parentId":90,"name":"修改规则实例流程状态","types":2,"method":"","address":"/api/v1/rule-engine/instance/status","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 00:11:46","updatedBy":0,"updatedAt":"2022-11-10 00:11:46","deletedBy":0,"deletedAt":""},{"id":83,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 00:13:04","updatedBy":0,"updatedAt":"2022-11-10 00:13:04","deletedBy":0,"deletedAt":""},{"id":84,"parentId":90,"name":"添加用户","types":2,"method":"","address":"/api/v1/system/user/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 00:13:38","updatedBy":0,"updatedAt":"2022-11-10 00:13:38","deletedBy":0,"deletedAt":""},{"id":85,"parentId":90,"name":"根据ID删除用户","types":2,"method":"","address":"/api/v1/system/user/delInfoById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 00:14:14","updatedBy":0,"updatedAt":"2022-11-10 00:14:14","deletedBy":0,"deletedAt":""},{"id":86,"parentId":90,"name":"编辑用户","types":2,"method":"","address":"/api/v1/system/user/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 00:14:34","updatedBy":0,"updatedAt":"2022-11-10 00:14:34","deletedBy":0,"deletedAt":""},{"id":87,"parentId":90,"name":"根据ID获取用户","types":2,"method":"","address":"/api/v1/system/user/getInfoById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 00:15:04","updatedBy":0,"updatedAt":"2022-11-10 00:15:04","deletedBy":0,"deletedAt":""},{"id":88,"parentId":90,"name":"所有用户列表","types":2,"method":"","address":"/api/v1/system/user/getAll","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 00:15:39","updatedBy":0,"updatedAt":"2022-11-10 00:15:39","deletedBy":0,"deletedAt":""},{"id":89,"parentId":90,"name":"重置用户密码","types":2,"method":"","address":"/api/v1/system/user/resetPassword","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 00:16:04","updatedBy":0,"updatedAt":"2022-11-10 00:16:04","deletedBy":0,"deletedAt":""},{"id":90,"parentId":-1,"name":"接口分类","types":1,"method":"","address":"","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":10,"createdAt":"2022-11-10 01:09:20","updatedBy":0,"updatedAt":"","deletedBy":0,"deletedAt":""},{"id":91,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 11:13:53","updatedBy":0,"updatedAt":"2022-11-10 11:13:53","deletedBy":0,"deletedAt":""},{"id":92,"parentId":90,"name":"产品分类:添加","types":2,"method":"","address":"/api/v1/product/category/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 11:39:54","updatedBy":0,"updatedAt":"2022-11-10 11:39:54","deletedBy":0,"deletedAt":""},{"id":93,"parentId":90,"name":"产品分类:编辑","types":2,"method":"","address":"/api/v1/product/category/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 11:40:25","updatedBy":0,"updatedAt":"2022-11-10 11:40:25","deletedBy":0,"deletedAt":""},{"id":94,"parentId":90,"name":"产品分类:删除","types":2,"method":"","address":"/api/v1/product/category/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 11:41:08","updatedBy":0,"updatedAt":"2022-11-10 11:41:08","deletedBy":0,"deletedAt":""},{"id":95,"parentId":90,"name":"asdf ","types":2,"method":"","address":"afd","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 12:03:49","updatedBy":0,"updatedAt":"2022-11-10 12:03:49","deletedBy":0,"deletedAt":""},{"id":96,"parentId":90,"name":"产品:添加","types":2,"method":"","address":"/api/v1/product/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:01:09","updatedBy":0,"updatedAt":"2022-11-10 13:01:09","deletedBy":0,"deletedAt":""},{"id":97,"parentId":90,"name":"产品:编辑","types":2,"method":"","address":"/api/v1/product/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:01:37","updatedBy":0,"updatedAt":"2022-11-10 13:01:37","deletedBy":0,"deletedAt":""},{"id":98,"parentId":90,"name":"产品:删除","types":2,"method":"","address":"/api/v1/product/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:01:54","updatedBy":0,"updatedAt":"2022-11-10 13:01:54","deletedBy":0,"deletedAt":""},{"id":99,"parentId":90,"name":"产品:发布","types":2,"method":"","address":"/api/v1/product/deploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:02:10","updatedBy":0,"updatedAt":"2022-11-10 13:02:10","deletedBy":0,"deletedAt":""},{"id":100,"parentId":90,"name":"产品:停用","types":2,"method":"","address":"/api/v1/product/undeploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:02:24","updatedBy":0,"updatedAt":"2022-11-10 13:02:24","deletedBy":0,"deletedAt":""},{"id":101,"parentId":90,"name":"产品:图标上传","types":2,"method":"","address":"/api/v1/product/icon/upload","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:02:41","updatedBy":0,"updatedAt":"2022-11-10 13:02:41","deletedBy":0,"deletedAt":""},{"id":102,"parentId":90,"name":"产品:列表","types":2,"method":"","address":"/api/v1/product/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:02:57","updatedBy":0,"updatedAt":"2022-11-10 13:02:57","deletedBy":0,"deletedAt":""},{"id":103,"parentId":90,"name":"产品:详情","types":2,"method":"","address":"/api/v1/product/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:03:17","updatedBy":0,"updatedAt":"2022-11-10 13:03:17","deletedBy":0,"deletedAt":""},{"id":104,"parentId":90,"name":"产品:详情,按key查询","types":2,"method":"","address":"/api/v1/product/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:03:43","updatedBy":0,"updatedAt":"2022-11-10 13:03:43","deletedBy":0,"deletedAt":""},{"id":105,"parentId":90,"name":"设备:添加","types":2,"method":"","address":"/api/v1/product/device/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:04:19","updatedBy":0,"updatedAt":"2022-11-10 13:04:19","deletedBy":0,"deletedAt":""},{"id":106,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:04:35","updatedBy":0,"updatedAt":"2022-11-10 13:04:35","deletedBy":0,"deletedAt":""},{"id":107,"parentId":90,"name":"设备:删除","types":2,"method":"","address":"/api/v1/product/device/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:04:58","updatedBy":0,"updatedAt":"2022-11-10 13:04:58","deletedBy":0,"deletedAt":""},{"id":108,"parentId":90,"name":"设备:启用","types":2,"method":"","address":"/api/v1/product/device/deploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:05:19","updatedBy":0,"updatedAt":"2022-11-10 13:05:19","deletedBy":0,"deletedAt":""},{"id":109,"parentId":90,"name":"设备:停用","types":2,"method":"","address":"/api/v1/product/device/undeploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:05:34","updatedBy":0,"updatedAt":"2022-11-10 13:05:34","deletedBy":0,"deletedAt":""},{"id":110,"parentId":90,"name":"设备:上线","types":2,"method":"","address":"/api/v1/product/device/online","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:06:13","updatedBy":0,"updatedAt":"2022-11-10 13:06:13","deletedBy":0,"deletedAt":""},{"id":111,"parentId":90,"name":"设备:下线","types":2,"method":"","address":"/api/v1/product/device/offline","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:06:30","updatedBy":0,"updatedAt":"2022-11-10 13:06:30","deletedBy":0,"deletedAt":""},{"id":112,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:06:54","updatedBy":0,"updatedAt":"2022-11-10 13:06:54","deletedBy":0,"deletedAt":""},{"id":113,"parentId":90,"name":"设备:运行状态","types":2,"method":"","address":"/api/v1/product/device/run_status","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:07:11","updatedBy":0,"updatedAt":"2022-11-10 13:07:11","deletedBy":0,"deletedAt":""},{"id":114,"parentId":90,"name":"设备:获取指定属性值","types":2,"method":"","address":"/api/v1/product/device/property/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:07:26","updatedBy":0,"updatedAt":"2022-11-10 13:07:26","deletedBy":0,"deletedAt":""},{"id":115,"parentId":90,"name":"设备:属性详情列表","types":2,"method":"","address":"/api/v1/product/device/property/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:07:43","updatedBy":0,"updatedAt":"2022-11-10 13:07:43","deletedBy":0,"deletedAt":""},{"id":116,"parentId":90,"name":"设备:已发布产品设备列表","types":2,"method":"","address":"/api/v1/product/device/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:08:00","updatedBy":0,"updatedAt":"2022-11-10 13:08:00","deletedBy":0,"deletedAt":""},{"id":117,"parentId":90,"name":"设备:搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/device/page_list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:08:18","updatedBy":0,"updatedAt":"2022-11-10 13:08:18","deletedBy":0,"deletedAt":""},{"id":118,"parentId":90,"name":"设备:详情","types":2,"method":"","address":"/api/v1/product/device/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:08:37","updatedBy":0,"updatedAt":"2022-11-10 13:08:37","deletedBy":0,"deletedAt":""},{"id":119,"parentId":90,"name":"设备:详情,按key查询","types":2,"method":"","address":"/api/v1/product/device/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:09:01","updatedBy":0,"updatedAt":"2022-11-10 13:09:01","deletedBy":0,"deletedAt":""},{"id":120,"parentId":90,"name":"日志:类型列表","types":2,"method":"","address":"/api/v1/product/log/type","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:09:33","updatedBy":0,"updatedAt":"2022-11-10 13:09:33","deletedBy":0,"deletedAt":""},{"id":121,"parentId":90,"name":"日志:搜索","types":2,"method":"","address":"/api/v1/product/log/search","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:09:49","updatedBy":0,"updatedAt":"2022-11-10 13:09:49","deletedBy":0,"deletedAt":""},{"id":122,"parentId":90,"name":"数据类型:列表","types":2,"method":"","address":"/api/v1/product/tsl/data_type","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:10:39","updatedBy":0,"updatedAt":"2022-11-10 13:10:39","deletedBy":0,"deletedAt":""},{"id":123,"parentId":90,"name":"属性:添加","types":2,"method":"","address":"/api/v1/product/tsl/property/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:10:55","updatedBy":0,"updatedAt":"2022-11-10 13:10:55","deletedBy":0,"deletedAt":""},{"id":124,"parentId":90,"name":"属性:编辑","types":2,"method":"","address":"/api/v1/product/tsl/property/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:11:09","updatedBy":0,"updatedAt":"2022-11-10 13:11:09","deletedBy":0,"deletedAt":""},{"id":125,"parentId":90,"name":"属性:删除","types":2,"method":"","address":"/api/v1/product/tsl/property/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:11:30","updatedBy":0,"updatedAt":"2022-11-10 13:11:30","deletedBy":0,"deletedAt":""},{"id":126,"parentId":90,"name":"属性:列表","types":2,"method":"","address":"/api/v1/product/tsl/property/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:11:47","updatedBy":0,"updatedAt":"2022-11-10 13:11:47","deletedBy":0,"deletedAt":""},{"id":127,"parentId":90,"name":"属性:所有属性列表","types":2,"method":"","address":"/api/v1/product/tsl/property/all","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:12:01","updatedBy":0,"updatedAt":"2022-11-10 13:12:01","deletedBy":0,"deletedAt":""},{"id":128,"parentId":90,"name":"功能:添加","types":2,"method":"","address":"/api/v1/product/tsl/function/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:12:13","updatedBy":0,"updatedAt":"2022-11-10 13:12:13","deletedBy":0,"deletedAt":""},{"id":129,"parentId":90,"name":"功能:编辑","types":2,"method":"","address":"/api/v1/product/tsl/function/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:12:26","updatedBy":0,"updatedAt":"2022-11-10 13:12:26","deletedBy":0,"deletedAt":""},{"id":130,"parentId":90,"name":"功能:删除","types":2,"method":"","address":"/api/v1/product/tsl/function/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:12:44","updatedBy":0,"updatedAt":"2022-11-10 13:12:44","deletedBy":0,"deletedAt":""},{"id":131,"parentId":90,"name":"功能:列表","types":2,"method":"","address":"/api/v1/product/tsl/function/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:13:01","updatedBy":0,"updatedAt":"2022-11-10 13:13:01","deletedBy":0,"deletedAt":""},{"id":132,"parentId":90,"name":"事件:添加","types":2,"method":"","address":"/api/v1/product/tsl/event/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:13:13","updatedBy":0,"updatedAt":"2022-11-10 13:13:13","deletedBy":0,"deletedAt":""},{"id":133,"parentId":90,"name":"事件:编辑","types":2,"method":"","address":"/api/v1/product/tsl/event/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:13:25","updatedBy":0,"updatedAt":"2022-11-10 13:13:25","deletedBy":0,"deletedAt":""},{"id":134,"parentId":90,"name":"事件:删除","types":2,"method":"","address":"/api/v1/product/tsl/event/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:13:42","updatedBy":0,"updatedAt":"2022-11-10 13:13:42","deletedBy":0,"deletedAt":""},{"id":135,"parentId":90,"name":"事件:列表","types":2,"method":"","address":"/api/v1/product/tsl/event/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:13:59","updatedBy":0,"updatedAt":"2022-11-10 13:13:59","deletedBy":0,"deletedAt":""},{"id":136,"parentId":90,"name":"标签:添加","types":2,"method":"","address":"/api/v1/product/tsl/tag/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:14:13","updatedBy":0,"updatedAt":"2022-11-10 13:14:13","deletedBy":0,"deletedAt":""},{"id":137,"parentId":90,"name":"标签:编辑","types":2,"method":"","address":"/api/v1/product/tsl/tag/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:14:28","updatedBy":0,"updatedAt":"2022-11-10 13:14:28","deletedBy":0,"deletedAt":""},{"id":138,"parentId":90,"name":"标签:删除","types":2,"method":"","address":"/api/v1/product/tsl/tag/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:14:43","updatedBy":0,"updatedAt":"2022-11-10 13:14:43","deletedBy":0,"deletedAt":""},{"id":139,"parentId":90,"name":"标签:列表","types":2,"method":"","address":"/api/v1/product/tsl/tag/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:14:58","updatedBy":0,"updatedAt":"2022-11-10 13:14:58","deletedBy":0,"deletedAt":""},{"id":140,"parentId":90,"name":"数据库数据源:添加","types":2,"method":"","address":"/api/v1/source/db/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:16:03","updatedBy":0,"updatedAt":"2022-11-10 13:16:03","deletedBy":0,"deletedAt":""},{"id":141,"parentId":90,"name":"数据库数据源:编辑","types":2,"method":"","address":"/api/v1/source/db/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:16:16","updatedBy":0,"updatedAt":"2022-11-10 13:16:16","deletedBy":0,"deletedAt":""},{"id":142,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:16:42","updatedBy":0,"updatedAt":"2022-11-10 13:16:42","deletedBy":0,"deletedAt":""},{"id":143,"parentId":90,"name":"数据库数据源:获取数据","types":2,"method":"","address":"/api/v1/source/db/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:16:59","updatedBy":0,"updatedAt":"2022-11-10 13:16:59","deletedBy":0,"deletedAt":""},{"id":144,"parentId":90,"name":"设备数据源:添加","types":2,"method":"","address":"/api/v1/source/device/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:17:21","updatedBy":0,"updatedAt":"2022-11-10 13:17:21","deletedBy":0,"deletedAt":""},{"id":145,"parentId":90,"name":"设备数据源:编辑","types":2,"method":"","address":"/api/v1/source/device/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:17:37","updatedBy":0,"updatedAt":"2022-11-10 13:17:37","deletedBy":0,"deletedAt":""},{"id":146,"parentId":90,"name":"设备数据源:获取设备数据","types":2,"method":"","address":"/api/v1/source/device/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:18:02","updatedBy":0,"updatedAt":"2022-11-10 13:18:02","deletedBy":0,"deletedAt":""},{"id":147,"parentId":90,"name":"API 数据源:添加","types":2,"method":"","address":"/api/v1/source/api/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:18:17","updatedBy":0,"updatedAt":"2022-11-10 13:18:17","deletedBy":0,"deletedAt":""},{"id":148,"parentId":90,"name":"API 数据源:编辑","types":2,"method":"","address":"/api/v1/source/api/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:18:30","updatedBy":0,"updatedAt":"2022-11-10 13:18:30","deletedBy":0,"deletedAt":""},{"id":149,"parentId":90,"name":"API 数据源:获取api数据","types":2,"method":"","address":"/api/v1/source/api/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:18:47","updatedBy":0,"updatedAt":"2022-11-10 13:18:47","deletedBy":0,"deletedAt":""},{"id":150,"parentId":90,"name":"数据源:删除","types":2,"method":"","address":"/api/v1/source/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:19:00","updatedBy":0,"updatedAt":"2022-11-10 13:19:00","deletedBy":0,"deletedAt":""},{"id":151,"parentId":90,"name":"数据源:列表","types":2,"method":"","address":"/api/v1/source/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:19:28","updatedBy":0,"updatedAt":"2022-11-10 13:19:28","deletedBy":0,"deletedAt":""},{"id":152,"parentId":90,"name":"数据源:获取源数据记录","types":2,"method":"","address":"/api/v1/source/getdata","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:19:43","updatedBy":0,"updatedAt":"2022-11-10 13:19:43","deletedBy":0,"deletedAt":""},{"id":153,"parentId":90,"name":"数据源:详情","types":2,"method":"","address":"/api/v1/source/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:20:00","updatedBy":0,"updatedAt":"2022-11-10 13:20:00","deletedBy":0,"deletedAt":""},{"id":154,"parentId":90,"name":"数据源:发布","types":2,"method":"","address":"/api/v1/source/deploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:20:15","updatedBy":0,"updatedAt":"2022-11-10 13:20:15","deletedBy":0,"deletedAt":""},{"id":155,"parentId":90,"name":"数据源:停用","types":2,"method":"","address":"/api/v1/source/undeploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:20:39","updatedBy":0,"updatedAt":"2022-11-10 13:20:39","deletedBy":0,"deletedAt":""},{"id":156,"parentId":90,"name":"数据源:复制数据源","types":2,"method":"","address":"/api/v1/source/copy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:20:55","updatedBy":0,"updatedAt":"2022-11-10 13:20:55","deletedBy":0,"deletedAt":""},{"id":157,"parentId":90,"name":"数据节点:添加","types":2,"method":"","address":"/api/v1/source/node/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:21:16","updatedBy":0,"updatedAt":"2022-11-10 13:21:16","deletedBy":0,"deletedAt":""},{"id":158,"parentId":90,"name":"数据节点:编辑","types":2,"method":"","address":"/api/v1/source/node/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:21:31","updatedBy":0,"updatedAt":"2022-11-10 13:21:31","deletedBy":0,"deletedAt":""},{"id":159,"parentId":90,"name":"数据节点:删除","types":2,"method":"","address":"/api/v1/source/node/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:21:48","updatedBy":0,"updatedAt":"2022-11-10 13:21:48","deletedBy":0,"deletedAt":""},{"id":160,"parentId":90,"name":"数据节点:列表","types":2,"method":"","address":"/api/v1/source/node/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:22:07","updatedBy":0,"updatedAt":"2022-11-10 13:22:07","deletedBy":0,"deletedAt":""},{"id":161,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:22:52","updatedBy":0,"updatedAt":"2022-11-10 13:22:52","deletedBy":0,"deletedAt":""},{"id":162,"parentId":90,"name":"模型:编辑","types":2,"method":"","address":"/api/v1/source/template/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:23:06","updatedBy":0,"updatedAt":"2022-11-10 13:23:06","deletedBy":0,"deletedAt":""},{"id":163,"parentId":90,"name":"模型:删除","types":2,"method":"","address":"/api/v1/source/template/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:23:20","updatedBy":0,"updatedAt":"2022-11-10 13:23:20","deletedBy":0,"deletedAt":""},{"id":164,"parentId":90,"name":"模型:搜索列表","types":2,"method":"","address":"/api/v1/source/template/search","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:23:35","updatedBy":0,"updatedAt":"2022-11-10 13:23:35","deletedBy":0,"deletedAt":""},{"id":165,"parentId":90,"name":"模型:已发布列表","types":2,"method":"","address":"/api/v1/source/template/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:23:48","updatedBy":0,"updatedAt":"2022-11-10 13:23:48","deletedBy":0,"deletedAt":""},{"id":166,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:24:08","updatedBy":0,"updatedAt":"2022-11-10 13:24:08","deletedBy":0,"deletedAt":""},{"id":167,"parentId":90,"name":"模型:获取模型数据记录","types":2,"method":"","address":"/api/v1/source/template/getdata","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:24:32","updatedBy":0,"updatedAt":"2022-11-10 13:24:32","deletedBy":0,"deletedAt":""},{"id":168,"parentId":90,"name":"模型:发布","types":2,"method":"","address":"/api/v1/source/template/deploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:24:47","updatedBy":0,"updatedAt":"2022-11-10 13:24:47","deletedBy":0,"deletedAt":""},{"id":169,"parentId":90,"name":"模型:停用","types":2,"method":"","address":"/api/v1/source/template/undeploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:25:10","updatedBy":0,"updatedAt":"2022-11-10 13:25:10","deletedBy":0,"deletedAt":""},{"id":170,"parentId":90,"name":"模型:复制数据模型","types":2,"method":"","address":"/api/v1/source/template/copy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:25:24","updatedBy":0,"updatedAt":"2022-11-10 13:25:24","deletedBy":0,"deletedAt":""},{"id":171,"parentId":90,"name":"节点:添加","types":2,"method":"","address":"/api/v1/source/template/node/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:25:38","updatedBy":0,"updatedAt":"2022-11-10 13:25:38","deletedBy":0,"deletedAt":""},{"id":172,"parentId":90,"name":"节点:编辑","types":2,"method":"","address":"/api/v1/source/template/node/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:25:55","updatedBy":0,"updatedAt":"2022-11-10 13:25:55","deletedBy":0,"deletedAt":""},{"id":173,"parentId":90,"name":"节点:删除","types":2,"method":"","address":"/api/v1/source/template/node/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:26:11","updatedBy":0,"updatedAt":"2022-11-10 13:26:11","deletedBy":0,"deletedAt":""},{"id":174,"parentId":90,"name":"节点:列表","types":2,"method":"","address":"/api/v1/source/template/node/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 13:26:31","updatedBy":0,"updatedAt":"2022-11-10 13:26:31","deletedBy":0,"deletedAt":""},{"id":175,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:38:27","updatedBy":0,"updatedAt":"2022-11-10 22:38:27","deletedBy":0,"deletedAt":""},{"id":176,"parentId":90,"name":"添加组织","types":2,"method":"","address":"/api/v1/system/organization/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:39:19","updatedBy":0,"updatedAt":"2022-11-10 22:39:19","deletedBy":0,"deletedAt":""},{"id":177,"parentId":90,"name":"根据ID删除组织","types":2,"method":"","address":"/api/v1/system/organization/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:39:38","updatedBy":0,"updatedAt":"2022-11-10 22:39:38","deletedBy":0,"deletedAt":""},{"id":178,"parentId":90,"name":"根据ID获取组织详情","types":2,"method":"","address":"/api/v1/system/organization/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:39:57","updatedBy":0,"updatedAt":"2022-11-10 22:39:57","deletedBy":0,"deletedAt":""},{"id":179,"parentId":90,"name":"编辑组织","types":2,"method":"","address":"/api/v1/system/organization/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:40:17","updatedBy":0,"updatedAt":"2022-11-10 22:40:17","deletedBy":0,"deletedAt":""},{"id":180,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:40:50","updatedBy":0,"updatedAt":"2022-11-10 22:40:50","deletedBy":0,"deletedAt":""},{"id":181,"parentId":90,"name":"根据ID删除部门","types":2,"method":"","address":"/api/v1/system/dept/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:41:18","updatedBy":0,"updatedAt":"2022-11-10 22:41:18","deletedBy":0,"deletedAt":""},{"id":182,"parentId":90,"name":"根据ID获取部门详情","types":2,"method":"","address":"/api/v1/system/dept/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:41:38","updatedBy":0,"updatedAt":"2022-11-10 22:41:38","deletedBy":0,"deletedAt":""},{"id":183,"parentId":90,"name":"编辑部门","types":2,"method":"","address":"/api/v1/system/dept/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:42:03","updatedBy":0,"updatedAt":"2022-11-10 22:42:03","deletedBy":0,"deletedAt":""},{"id":184,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:47:57","updatedBy":0,"updatedAt":"2022-11-10 22:47:57","deletedBy":0,"deletedAt":""},{"id":185,"parentId":90,"name":"根据ID删除岗位","types":2,"method":"","address":"/api/v1/system/post/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:48:17","updatedBy":0,"updatedAt":"2022-11-10 22:48:17","deletedBy":0,"deletedAt":""},{"id":186,"parentId":90,"name":"根据ID获取岗位详情","types":2,"method":"","address":"/api/v1/system/post/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:48:36","updatedBy":0,"updatedAt":"2022-11-10 22:48:36","deletedBy":0,"deletedAt":""},{"id":187,"parentId":90,"name":"编辑岗位","types":2,"method":"","address":"/api/v1/system/post/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:49:02","updatedBy":0,"updatedAt":"2022-11-10 22:49:02","deletedBy":0,"deletedAt":""},{"id":188,"parentId":90,"name":"获取岗位列表","types":2,"method":"","address":"/api/v1/system/post/tree","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:49:30","updatedBy":0,"updatedAt":"2022-11-10 22:49:30","deletedBy":0,"deletedAt":""},{"id":189,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:51:06","updatedBy":0,"updatedAt":"2022-11-10 22:51:06","deletedBy":0,"deletedAt":""},{"id":190,"parentId":90,"name":"角色数据权限授权","types":2,"method":"","address":"/api/v1/system/role/dataScope","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:52:12","updatedBy":0,"updatedAt":"2022-11-10 22:52:12","deletedBy":0,"deletedAt":""},{"id":191,"parentId":90,"name":"根据ID删除角色","types":2,"method":"","address":"/api/v1/system/role/delInfoById","remark":"\n","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:52:34","updatedBy":0,"updatedAt":"2022-11-10 22:52:34","deletedBy":0,"deletedAt":""},{"id":192,"parentId":90,"name":"编辑角色","types":2,"method":"","address":"/api/v1/system/role/edit","remark":"\n","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:57:24","updatedBy":0,"updatedAt":"2022-11-10 22:57:24","deletedBy":0,"deletedAt":""},{"id":193,"parentId":90,"name":"根据ID获取权限信息","types":2,"method":"","address":"/api/v1/system/role/getAuthorizeById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:57:45","updatedBy":0,"updatedAt":"2022-11-10 22:57:45","deletedBy":0,"deletedAt":""},{"id":194,"parentId":90,"name":"根据ID获取角色","types":2,"method":"","address":"/api/v1/system/role/getInfoById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:58:06","updatedBy":0,"updatedAt":"2022-11-10 22:58:06","deletedBy":0,"deletedAt":""},{"id":195,"parentId":90,"name":"角色树状列表","types":2,"method":"","address":"/api/v1/system/role/tree","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:58:24","updatedBy":0,"updatedAt":"2022-11-10 22:58:24","deletedBy":0,"deletedAt":""},{"id":196,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 22:59:01","updatedBy":0,"updatedAt":"2022-11-10 22:59:01","deletedBy":0,"deletedAt":""},{"id":197,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:00:17","updatedBy":0,"updatedAt":"2022-11-10 23:00:17","deletedBy":0,"deletedAt":""},{"id":198,"parentId":90,"name":"根据ID删除访问日志","types":2,"method":"","address":"/api/v1/system/login/log/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:00:44","updatedBy":0,"updatedAt":"2022-11-10 23:00:44","deletedBy":0,"deletedAt":""},{"id":199,"parentId":90,"name":"根据ID获取访问日志详情","types":2,"method":"","address":"/api/v1/system/login/log/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:01:09","updatedBy":0,"updatedAt":"2022-11-10 23:01:09","deletedBy":0,"deletedAt":""},{"id":200,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:01:40","updatedBy":0,"updatedAt":"2022-11-10 23:01:40","deletedBy":0,"deletedAt":""},{"id":201,"parentId":90,"name":"根据ID获取操作日志详情","types":2,"method":"","address":"/api/v1/system/oper/log/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:03:07","updatedBy":0,"updatedAt":"2022-11-10 23:03:07","deletedBy":0,"deletedAt":""},{"id":202,"parentId":90,"name":"操作日志列表","types":2,"method":"","address":"/api/v1/system/oper/log/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:03:30","updatedBy":0,"updatedAt":"2022-11-10 23:03:30","deletedBy":0,"deletedAt":""},{"id":203,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:05:00","updatedBy":0,"updatedAt":"2022-11-10 23:05:00","deletedBy":0,"deletedAt":""},{"id":204,"parentId":90,"name":"在线用户强退","types":2,"method":"","address":"/api/v1/system/userOnline/strongBack","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:05:28","updatedBy":0,"updatedAt":"2022-11-10 23:05:28","deletedBy":0,"deletedAt":""},{"id":205,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:07:42","updatedBy":0,"updatedAt":"2022-11-10 23:07:42","deletedBy":0,"deletedAt":""},{"id":206,"parentId":90,"name":"获取插件列表","types":2,"method":"","address":"/api/v1/system/plugins/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:08:06","updatedBy":0,"updatedAt":"2022-11-10 23:08:06","deletedBy":0,"deletedAt":""},{"id":207,"parentId":90,"name":"设置插件状态","types":2,"method":"","address":"/api/v1/system/plugins/set","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:09:41","updatedBy":0,"updatedAt":"2022-11-10 23:09:41","deletedBy":0,"deletedAt":""},{"id":208,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:12:10","updatedBy":0,"updatedAt":"2022-11-10 23:12:10","deletedBy":0,"deletedAt":""},{"id":209,"parentId":90,"name":"添加菜单与按钮相关关联","types":2,"method":"","address":"/api/v1/system/menu/button/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:12:33","updatedBy":0,"updatedAt":"2022-11-10 23:12:33","deletedBy":0,"deletedAt":""},{"id":210,"parentId":90,"name":"根据ID删除菜单按钮","types":2,"method":"","address":"/api/v1/system/menu/button/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:12:49","updatedBy":0,"updatedAt":"2022-11-10 23:12:49","deletedBy":0,"deletedAt":""},{"id":211,"parentId":90,"name":"根据ID获取菜单按钮详情","types":2,"method":"","address":"/api/v1/system/menu/button/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:13:07","updatedBy":0,"updatedAt":"2022-11-10 23:13:07","deletedBy":0,"deletedAt":""},{"id":212,"parentId":90,"name":"编辑菜单按钮","types":2,"method":"","address":"/api/v1/system/menu/button/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:13:24","updatedBy":0,"updatedAt":"2022-11-10 23:13:24","deletedBy":0,"deletedAt":""},{"id":213,"parentId":90,"name":"编辑菜单按钮状态","types":2,"method":"","address":"/api/v1/system/menu/button/editStatus","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:13:42","updatedBy":0,"updatedAt":"2022-11-10 23:13:42","deletedBy":0,"deletedAt":""},{"id":214,"parentId":90,"name":"菜单与按钮树列表","types":2,"method":"","address":"/api/v1/system/menu/button/tree","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:14:04","updatedBy":0,"updatedAt":"2022-11-10 23:14:04","deletedBy":0,"deletedAt":""},{"id":215,"parentId":90,"name":"添加菜单与列表相关关联","types":2,"method":"","address":"/api/v1/system/menu/column/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:14:30","updatedBy":0,"updatedAt":"2022-11-10 23:14:30","deletedBy":0,"deletedAt":""},{"id":216,"parentId":90,"name":"根据ID删除菜单列表","types":2,"method":"","address":"/api/v1/system/menu/column/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:15:04","updatedBy":0,"updatedAt":"2022-11-10 23:15:04","deletedBy":0,"deletedAt":""},{"id":217,"parentId":90,"name":"根据ID获取菜单列表详情","types":2,"method":"","address":"/api/v1/system/menu/column/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:54:26","updatedBy":0,"updatedAt":"2022-11-10 23:54:26","deletedBy":0,"deletedAt":""},{"id":218,"parentId":90,"name":"编辑菜单列表","types":2,"method":"","address":"/api/v1/system/menu/column/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:57:04","updatedBy":0,"updatedAt":"2022-11-10 23:57:04","deletedBy":0,"deletedAt":""},{"id":219,"parentId":90,"name":"编辑菜单列表状态","types":2,"method":"","address":"/api/v1/system/menu/column/editStatus","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:57:35","updatedBy":0,"updatedAt":"2022-11-10 23:57:35","deletedBy":0,"deletedAt":""},{"id":220,"parentId":90,"name":"菜单与列表树列表","types":2,"method":"","address":"/api/v1/system/menu/column/tree","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:57:59","updatedBy":0,"updatedAt":"2022-11-10 23:57:59","deletedBy":0,"deletedAt":""},{"id":221,"parentId":90,"name":"根据ID删除菜单","types":2,"method":"","address":"/api/v1/system/menu/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:58:34","updatedBy":0,"updatedAt":"2022-11-10 23:58:34","deletedBy":0,"deletedAt":""},{"id":222,"parentId":90,"name":"根据ID获取菜单详情","types":2,"method":"","address":"/api/v1/system/menu/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:58:55","updatedBy":0,"updatedAt":"2022-11-10 23:58:55","deletedBy":0,"deletedAt":""},{"id":223,"parentId":90,"name":"编辑菜单","types":2,"method":"","address":"/api/v1/system/menu/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:59:17","updatedBy":0,"updatedAt":"2022-11-10 23:59:17","deletedBy":0,"deletedAt":""},{"id":224,"parentId":90,"name":"菜单列表","types":2,"method":"","address":"/api/v1/system/menu/tree","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-10 23:59:36","updatedBy":0,"updatedAt":"2022-11-10 23:59:36","deletedBy":0,"deletedAt":""},{"id":231,"parentId":227,"name":"123","types":1,"method":"","address":"","remark":"123123123","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 18:00:05","updatedBy":0,"updatedAt":"2022-11-11 18:00:05","deletedBy":0,"deletedAt":""},{"id":232,"parentId":227,"name":"123","types":1,"method":"","address":"","remark":"123123123","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 18:00:05","updatedBy":0,"updatedAt":"2022-11-11 18:00:05","deletedBy":0,"deletedAt":""},{"id":233,"parentId":231,"name":"123123","types":2,"method":"","address":"123123","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 18:00:54","updatedBy":0,"updatedAt":"2022-11-11 18:00:54","deletedBy":0,"deletedAt":""},{"id":237,"parentId":-1,"name":"天气监测","types":1,"method":"","address":"","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 21:23:33","updatedBy":0,"updatedAt":"2022-11-11 21:23:33","deletedBy":0,"deletedAt":""},{"id":238,"parentId":237,"name":"城市-风力-日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList2","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 21:28:22","updatedBy":0,"updatedAt":"2022-11-11 21:28:22","deletedBy":0,"deletedAt":""},{"id":239,"parentId":-1,"name":"网络组件","types":1,"method":"","address":"","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:32:37","updatedBy":0,"updatedAt":"2022-11-11 22:32:37","deletedBy":0,"deletedAt":""},{"id":240,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:35:50","updatedBy":0,"updatedAt":"2022-11-11 22:35:50","deletedBy":0,"deletedAt":""},{"id":241,"parentId":239,"name":"新增通道","types":2,"method":"","address":"/api/v1/network/tunnel/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 14:38:03","updatedBy":1,"updatedAt":"2022-11-11 22:38:37","deletedBy":0,"deletedAt":""},{"id":242,"parentId":239,"name":"通道详情","types":2,"method":"","address":"/api/v1/network/tunnel/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:39:17","updatedBy":0,"updatedAt":"2022-11-11 22:39:17","deletedBy":0,"deletedAt":""},{"id":243,"parentId":239,"name":"编辑通道","types":2,"method":"","address":"/api/v1/network/tunnel/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 14:39:52","updatedBy":1,"updatedAt":"2022-11-11 22:40:07","deletedBy":0,"deletedAt":""},{"id":244,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:41:50","updatedBy":0,"updatedAt":"2022-11-11 22:41:50","deletedBy":0,"deletedAt":""},{"id":245,"parentId":239,"name":"服务器详情","types":2,"method":"","address":"/api/v1/network/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 14:42:19","updatedBy":1,"updatedAt":"2022-11-11 22:42:34","deletedBy":0,"deletedAt":""},{"id":246,"parentId":239,"name":"新增服务","types":2,"method":"","address":"/api/v1/network/server/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:43:04","updatedBy":0,"updatedAt":"2022-11-11 22:43:04","deletedBy":0,"deletedAt":""},{"id":247,"parentId":239,"name":"编辑服务","types":2,"method":"","address":"/api/v1/network/server/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:43:53","updatedBy":0,"updatedAt":"2022-11-11 22:43:53","deletedBy":0,"deletedAt":""},{"id":248,"parentId":-1,"name":"城市管理","types":1,"method":"","address":"","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:45:36","updatedBy":0,"updatedAt":"2022-11-11 22:45:36","deletedBy":0,"deletedAt":""},{"id":249,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:46:15","updatedBy":0,"updatedAt":"2022-11-11 22:46:15","deletedBy":0,"deletedAt":""},{"id":250,"parentId":248,"name":"添加城市","types":2,"method":"","address":"/api/v1/common/city/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:47:06","updatedBy":0,"updatedAt":"2022-11-11 22:47:06","deletedBy":0,"deletedAt":""},{"id":251,"parentId":248,"name":"编辑城市","types":2,"method":"","address":"/api/v1/common/city/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:47:46","updatedBy":0,"updatedAt":"2022-11-11 22:47:46","deletedBy":0,"deletedAt":""},{"id":252,"parentId":248,"name":"删除城市","types":2,"method":"","address":"/api/v1/common/city/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:48:30","updatedBy":0,"updatedAt":"2022-11-11 22:48:30","deletedBy":0,"deletedAt":""},{"id":253,"parentId":248,"name":"获取城市详情","types":2,"method":"","address":"/api/v1/common/city/getInfoById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 22:49:09","updatedBy":0,"updatedAt":"2022-11-11 22:49:09","deletedBy":0,"deletedAt":""},{"id":254,"parentId":-1,"name":"系统配置","types":1,"method":"","address":"","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:08:52","updatedBy":0,"updatedAt":"2022-11-11 23:08:52","deletedBy":0,"deletedAt":""},{"id":255,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:09:43","updatedBy":0,"updatedAt":"2022-11-11 23:09:43","deletedBy":0,"deletedAt":""},{"id":256,"parentId":254,"name":"删除系统参数","types":2,"method":"","address":"/api/v1/common/config/delete","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:10:13","updatedBy":0,"updatedAt":"2022-11-11 23:10:13","deletedBy":0,"deletedAt":""},{"id":257,"parentId":-1,"name":"指数管理","types":1,"method":"","address":"","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:10:21","updatedBy":0,"updatedAt":"2022-11-11 23:10:21","deletedBy":0,"deletedAt":""},{"id":258,"parentId":254,"name":"修改系统参数","types":2,"method":"","address":"/api/v1/common/config/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:10:35","updatedBy":0,"updatedAt":"2022-11-11 23:10:35","deletedBy":0,"deletedAt":""},{"id":259,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:10:49","updatedBy":1,"updatedAt":"2022-12-15 23:44:18","deletedBy":0,"deletedAt":""},{"id":260,"parentId":254,"name":"获取系统参数","types":2,"method":"","address":"/api/v1/common/config/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:10:56","updatedBy":0,"updatedAt":"2022-11-11 23:10:56","deletedBy":0,"deletedAt":""},{"id":261,"parentId":254,"name":"系统参数列表","types":2,"method":"","address":"/api/v1/common/config/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:11:16","updatedBy":0,"updatedAt":"2022-11-11 23:11:16","deletedBy":0,"deletedAt":""},{"id":262,"parentId":257,"name":"获取数据源信息","types":2,"method":"","address":"/assess/v1/datasetup/target","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:11:29","updatedBy":1,"updatedAt":"2022-12-20 21:03:54","deletedBy":0,"deletedAt":""},{"id":263,"parentId":257,"name":"测试数据源","types":2,"method":"","address":"/assess/v1/datasetup/test","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:12:03","updatedBy":1,"updatedAt":"2022-12-20 21:04:06","deletedBy":0,"deletedAt":""},{"id":264,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:12:19","updatedBy":0,"updatedAt":"2022-11-11 23:12:19","deletedBy":0,"deletedAt":""},{"id":265,"parentId":257,"name":"添加/编辑数据源信息","types":2,"method":"GET","address":"/assess/v1/datasetup","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:12:44","updatedBy":1,"updatedAt":"2022-12-20 21:14:33","deletedBy":0,"deletedAt":""},{"id":266,"parentId":254,"name":"删除字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/delete","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:13:13","updatedBy":0,"updatedAt":"2022-11-11 23:13:13","deletedBy":0,"deletedAt":""},{"id":267,"parentId":254,"name":"修改字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:13:53","updatedBy":0,"updatedAt":"2022-11-11 23:13:53","deletedBy":0,"deletedAt":""},{"id":268,"parentId":254,"name":"获取字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:14:16","updatedBy":0,"updatedAt":"2022-11-11 23:14:16","deletedBy":0,"deletedAt":""},{"id":269,"parentId":254,"name":"字典类型列表","types":2,"method":"","address":"/api/v1/common/dict/type/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:14:39","updatedBy":0,"updatedAt":"2022-11-11 23:14:39","deletedBy":0,"deletedAt":""},{"id":270,"parentId":-1,"name":"数据源管理","types":1,"method":"","address":"","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:14:51","updatedBy":0,"updatedAt":"2022-11-11 23:14:51","deletedBy":0,"deletedAt":""},{"id":271,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:15:01","updatedBy":0,"updatedAt":"2022-11-11 23:15:01","deletedBy":0,"deletedAt":""},{"id":272,"parentId":270,"name":"数据源列表","types":2,"method":"","address":"/api/v1/source/search","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:15:23","updatedBy":0,"updatedAt":"2022-11-11 23:15:23","deletedBy":0,"deletedAt":""},{"id":273,"parentId":254,"name":"删除字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/delete","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:15:26","updatedBy":0,"updatedAt":"2022-11-11 23:15:26","deletedBy":0,"deletedAt":""},{"id":274,"parentId":254,"name":"修改字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:15:50","updatedBy":0,"updatedAt":"2022-11-11 23:15:50","deletedBy":0,"deletedAt":""},{"id":275,"parentId":254,"name":"获取字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/get","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:16:24","updatedBy":0,"updatedAt":"2022-11-11 23:16:24","deletedBy":0,"deletedAt":""},{"id":276,"parentId":254,"name":"获取字典数据公共方法","types":2,"method":"","address":"/api/v1/common/dict/data/getDictData","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:16:45","updatedBy":0,"updatedAt":"2022-11-11 23:16:45","deletedBy":0,"deletedAt":""},{"id":277,"parentId":254,"name":"字典数据列表","types":2,"method":"GET","address":"/api/v1/common/dict/data/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:17:07","updatedBy":1,"updatedAt":"2022-12-22 13:02:13","deletedBy":0,"deletedAt":""},{"id":278,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:20:30","updatedBy":0,"updatedAt":"2022-11-11 23:20:30","deletedBy":0,"deletedAt":""},{"id":279,"parentId":254,"name":"根据ID删除任务","types":2,"method":"","address":"/api/v1/system/job/delJobById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:20:52","updatedBy":0,"updatedAt":"2022-11-11 23:20:52","deletedBy":0,"deletedAt":""},{"id":280,"parentId":254,"name":"编辑定时任务","types":2,"method":"","address":"/api/v1/system/job/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:21:12","updatedBy":0,"updatedAt":"2022-11-11 23:21:12","deletedBy":0,"deletedAt":""},{"id":281,"parentId":254,"name":"根据ID获取任务","types":2,"method":"","address":"/api/v1/system/job/getJobById","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:21:35","updatedBy":0,"updatedAt":"2022-11-11 23:21:35","deletedBy":0,"deletedAt":""},{"id":282,"parentId":254,"name":"获取任务列表","types":2,"method":"","address":"/api/v1/system/job/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:21:56","updatedBy":0,"updatedAt":"2022-11-11 23:21:56","deletedBy":0,"deletedAt":""},{"id":283,"parentId":254,"name":"执行一个任务","types":2,"method":"","address":"/api/v1/system/job/run","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:22:19","updatedBy":0,"updatedAt":"2022-11-11 23:22:19","deletedBy":0,"deletedAt":""},{"id":284,"parentId":254,"name":"开始一个任务","types":2,"method":"","address":"/api/v1/system/job/start","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:22:40","updatedBy":0,"updatedAt":"2022-11-11 23:22:40","deletedBy":0,"deletedAt":""},{"id":285,"parentId":254,"name":"结束一个任务","types":2,"method":"","address":"/api/v1/system/job/stop","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:23:00","updatedBy":0,"updatedAt":"2022-11-11 23:23:00","deletedBy":0,"deletedAt":""},{"id":286,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:25:29","updatedBy":0,"updatedAt":"2022-11-11 23:25:29","deletedBy":0,"deletedAt":""},{"id":287,"parentId":254,"name":"添加Api","types":2,"method":"","address":"/api/v1/system/api/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:25:57","updatedBy":0,"updatedAt":"2022-11-11 23:25:57","deletedBy":0,"deletedAt":""},{"id":288,"parentId":254,"name":"根据ID删除Api","types":2,"method":"","address":"/api/v1/system/api/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:26:19","updatedBy":0,"updatedAt":"2022-11-11 23:26:19","deletedBy":0,"deletedAt":""},{"id":289,"parentId":254,"name":"根据ID获取Api详情","types":2,"method":"","address":"/api/v1/system/api/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:26:42","updatedBy":0,"updatedAt":"2022-11-11 23:26:42","deletedBy":0,"deletedAt":""},{"id":290,"parentId":254,"name":"编辑Api","types":2,"method":"","address":"/api/v1/system/api/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:27:03","updatedBy":0,"updatedAt":"2022-11-11 23:27:03","deletedBy":0,"deletedAt":""},{"id":291,"parentId":254,"name":"编辑Api状态","types":2,"method":"","address":"/api/v1/system/api/editStatus","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:27:23","updatedBy":0,"updatedAt":"2022-11-11 23:27:23","deletedBy":0,"deletedAt":""},{"id":292,"parentId":254,"name":"获取接口列表","types":2,"method":"","address":"/api/v1/system/api/tree","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-11 23:27:44","updatedBy":0,"updatedAt":"2022-11-11 23:27:44","deletedBy":0,"deletedAt":""},{"id":293,"parentId":-1,"name":"告警管理","types":1,"method":"","address":"","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:37:37","updatedBy":0,"updatedAt":"2022-11-23 10:37:37","deletedBy":0,"deletedAt":""},{"id":294,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:38:23","updatedBy":0,"updatedAt":"2022-11-23 10:38:23","deletedBy":0,"deletedAt":""},{"id":295,"parentId":293,"name":"告警级别:配置","types":2,"method":"","address":"/api/v1/alarm/level/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:39:02","updatedBy":0,"updatedAt":"2022-11-23 10:39:02","deletedBy":0,"deletedAt":""},{"id":296,"parentId":293,"name":"告警规则:操作符列表","types":2,"method":"","address":"/api/v1/alarm/rule/operator","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:39:30","updatedBy":0,"updatedAt":"2022-11-23 10:39:30","deletedBy":0,"deletedAt":""},{"id":297,"parentId":293,"name":"告警规则:触发类型列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_type","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:39:53","updatedBy":0,"updatedAt":"2022-11-23 10:39:53","deletedBy":0,"deletedAt":""},{"id":298,"parentId":293,"name":"告警规则:触发条件参数列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_param","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:40:14","updatedBy":0,"updatedAt":"2022-11-23 10:40:14","deletedBy":0,"deletedAt":""},{"id":299,"parentId":293,"name":"告警规则:详情","types":2,"method":"","address":"/api/v1/alarm/rule/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:40:37","updatedBy":0,"updatedAt":"2022-11-23 10:40:37","deletedBy":0,"deletedAt":""},{"id":300,"parentId":293,"name":"告警规则:列表","types":2,"method":"","address":"/api/v1/alarm/rule/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:41:01","updatedBy":0,"updatedAt":"2022-11-23 10:41:01","deletedBy":0,"deletedAt":""},{"id":301,"parentId":293,"name":"告警规则:添加","types":2,"method":"","address":"/api/v1/alarm/rule/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:41:20","updatedBy":0,"updatedAt":"2022-11-23 10:41:20","deletedBy":0,"deletedAt":""},{"id":302,"parentId":293,"name":"告警规则:编辑","types":2,"method":"","address":"/api/v1/alarm/rule/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:41:45","updatedBy":0,"updatedAt":"2022-11-23 10:41:45","deletedBy":0,"deletedAt":""},{"id":303,"parentId":293,"name":"告警规则:启用","types":2,"method":"","address":"/api/v1/alarm/rule/deploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:42:06","updatedBy":0,"updatedAt":"2022-11-23 10:42:06","deletedBy":0,"deletedAt":""},{"id":304,"parentId":293,"name":"告警规则:禁用","types":2,"method":"","address":"/api/v1/alarm/rule/undeploy","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:42:25","updatedBy":0,"updatedAt":"2022-11-23 10:42:25","deletedBy":0,"deletedAt":""},{"id":305,"parentId":293,"name":"告警规则:删除","types":2,"method":"","address":"/api/v1/alarm/rule/del","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:42:41","updatedBy":0,"updatedAt":"2022-11-23 10:42:41","deletedBy":0,"deletedAt":""},{"id":306,"parentId":293,"name":"告警日志:详情","types":2,"method":"","address":"/api/v1/alarm/log/detail","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:43:05","updatedBy":0,"updatedAt":"2022-11-23 10:43:05","deletedBy":0,"deletedAt":""},{"id":307,"parentId":293,"name":"告警日志:列表","types":2,"method":"","address":"/api/v1/alarm/log/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:43:31","updatedBy":0,"updatedAt":"2022-11-23 10:43:31","deletedBy":0,"deletedAt":""},{"id":308,"parentId":293,"name":"告警日志:告警处理","types":2,"method":"","address":"/api/v1/alarm/log/handle","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-23 10:45:49","updatedBy":0,"updatedAt":"2022-11-23 10:45:49","deletedBy":0,"deletedAt":""},{"id":309,"parentId":-1,"name":"物联概览","types":1,"method":"","address":"","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-28 10:29:39","updatedBy":0,"updatedAt":"2022-11-28 10:29:39","deletedBy":0,"deletedAt":""},{"id":310,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-28 07:45:40","updatedBy":1,"updatedAt":"2023-01-06 13:59:05","deletedBy":0,"deletedAt":""},{"id":311,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-02-03 10:20:32","updatedBy":0,"updatedAt":"2023-02-03 10:20:32","deletedBy":0,"deletedAt":""},{"id":312,"parentId":90,"name":"添加黑名单","types":2,"method":"POST","address":"/api/v1/system/blacklist/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-02-03 10:21:18","updatedBy":0,"updatedAt":"2023-02-03 10:21:18","deletedBy":0,"deletedAt":""},{"id":313,"parentId":90,"name":"删除黑名单","types":2,"method":"DELETE","address":"/api/v1/system/blacklist/delete","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-02-03 10:22:47","updatedBy":0,"updatedAt":"2023-02-03 10:22:47","deletedBy":0,"deletedAt":""},{"id":314,"parentId":90,"name":"编辑黑名单","types":2,"method":"PUT","address":"/api/v1/system/blacklist/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-02-03 10:23:24","updatedBy":0,"updatedAt":"2023-02-03 10:23:24","deletedBy":0,"deletedAt":""},{"id":315,"parentId":90,"name":"更新黑名单状态","types":2,"method":"POST","address":"/api/v1/system/blacklist/status","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-02-03 10:23:54","updatedBy":0,"updatedAt":"2023-02-03 10:23:54","deletedBy":0,"deletedAt":""},{"id":316,"parentId":90,"name":"修改用户个人资料","types":2,"method":"PUT","address":"/api/v1/system/user/editUserInfo","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-03-28 12:43:16","updatedBy":1,"updatedAt":"2023-03-28 12:43:54","deletedBy":0,"deletedAt":""},{"id":317,"parentId":90,"name":"证书列表","types":2,"method":"GET","address":"/api/v1/system/certificate/list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 22:18:47","updatedBy":1,"updatedAt":"2023-04-09 22:19:59","deletedBy":0,"deletedAt":""},{"id":318,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 22:19:27","updatedBy":1,"updatedAt":"2023-04-09 22:19:45","deletedBy":0,"deletedAt":""},{"id":319,"parentId":90,"name":"证书编辑","types":2,"method":"PUT","address":"/api/v1/system/certificate/edit","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 22:20:23","updatedBy":1,"updatedAt":"2023-04-09 22:21:47","deletedBy":0,"deletedAt":""},{"id":320,"parentId":90,"name":"删除证书","types":2,"method":"DELETE","address":"/api/v1/system/certificate/delete","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 22:21:28","updatedBy":1,"updatedAt":"2023-04-09 22:21:38","deletedBy":0,"deletedAt":""},{"id":321,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-10 20:46:32","updatedBy":1,"updatedAt":"2023-04-10 20:46:50","deletedBy":0,"deletedAt":""},{"id":322,"parentId":90,"name":"修改系统基础配置","types":2,"method":"PUT","address":"/api/v1/editBaseSetting","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-10 20:47:26","updatedBy":0,"updatedAt":"2023-04-10 20:47:26","deletedBy":0,"deletedAt":""},{"id":323,"parentId":90,"name":"已绑定子设备列表","types":2,"method":"GET","address":"/api/v1/product/device/bind_list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-05-23 08:17:05","updatedBy":1,"updatedAt":"2023-05-23 08:19:13","deletedBy":0,"deletedAt":""},{"id":324,"parentId":90,"name":"子设备列表","types":2,"method":"GET","address":"/api/v1/product/device/sub_list","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-05-23 08:17:54","updatedBy":1,"updatedAt":"2023-05-23 08:19:24","deletedBy":0,"deletedAt":""},{"id":325,"parentId":90,"name":"批量绑定子设备","types":2,"method":"POST","address":"/api/v1/product/device/bind_sub","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-05-23 08:18:28","updatedBy":1,"updatedAt":"2023-05-23 08:19:35","deletedBy":0,"deletedAt":""},{"id":326,"parentId":90,"name":"批量解绑子设备","types":2,"method":"POST","address":"/api/v1/product/device/unbind_sub","remark":"","status":1,"sort":0,"isDeleted":0,"createBy":1,"createdAt":"2023-05-23 08:18:56","updatedBy":1,"updatedAt":"2023-05-23 08:19:47","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$23 -SagooIOT_sysAuthorize_3 -$9186 -[{"id":569,"roleId":3,"itemsType":"menu","itemsId":84,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":570,"roleId":3,"itemsType":"menu","itemsId":95,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":574,"roleId":3,"itemsType":"menu","itemsId":1,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":575,"roleId":3,"itemsType":"menu","itemsId":15,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":576,"roleId":3,"itemsType":"menu","itemsId":13,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":577,"roleId":3,"itemsType":"menu","itemsId":12,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":578,"roleId":3,"itemsType":"menu","itemsId":14,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":579,"roleId":3,"itemsType":"menu","itemsId":10,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":580,"roleId":3,"itemsType":"menu","itemsId":2,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":581,"roleId":3,"itemsType":"menu","itemsId":16,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":582,"roleId":3,"itemsType":"menu","itemsId":21,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":583,"roleId":3,"itemsType":"menu","itemsId":32,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":584,"roleId":3,"itemsType":"menu","itemsId":37,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":585,"roleId":3,"itemsType":"menu","itemsId":61,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":586,"roleId":3,"itemsType":"menu","itemsId":64,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":588,"roleId":3,"itemsType":"menu","itemsId":46,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":589,"roleId":3,"itemsType":"menu","itemsId":48,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":590,"roleId":3,"itemsType":"menu","itemsId":85,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":593,"roleId":3,"itemsType":"menu","itemsId":20,"isCheckAll":0,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":594,"roleId":3,"itemsType":"menu","itemsId":27,"isCheckAll":0,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":595,"roleId":3,"itemsType":"button","itemsId":18,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":596,"roleId":3,"itemsType":"button","itemsId":19,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":597,"roleId":3,"itemsType":"button","itemsId":21,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":598,"roleId":3,"itemsType":"button","itemsId":25,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":599,"roleId":3,"itemsType":"button","itemsId":26,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":600,"roleId":3,"itemsType":"button","itemsId":27,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":601,"roleId":3,"itemsType":"column","itemsId":4,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":602,"roleId":3,"itemsType":"column","itemsId":5,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":603,"roleId":3,"itemsType":"column","itemsId":7,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":604,"roleId":3,"itemsType":"column","itemsId":13,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":605,"roleId":3,"itemsType":"column","itemsId":14,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":606,"roleId":3,"itemsType":"column","itemsId":15,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":607,"roleId":3,"itemsType":"column","itemsId":16,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":608,"roleId":3,"itemsType":"column","itemsId":21,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":609,"roleId":3,"itemsType":"column","itemsId":8,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":610,"roleId":3,"itemsType":"column","itemsId":10,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":611,"roleId":3,"itemsType":"column","itemsId":11,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":612,"roleId":3,"itemsType":"column","itemsId":12,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":613,"roleId":3,"itemsType":"column","itemsId":22,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":614,"roleId":3,"itemsType":"column","itemsId":23,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":615,"roleId":3,"itemsType":"column","itemsId":24,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":616,"roleId":3,"itemsType":"column","itemsId":25,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":617,"roleId":3,"itemsType":"column","itemsId":26,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":618,"roleId":3,"itemsType":"column","itemsId":27,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":619,"roleId":3,"itemsType":"column","itemsId":28,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":620,"roleId":3,"itemsType":"column","itemsId":29,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":621,"roleId":3,"itemsType":"column","itemsId":30,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":622,"roleId":3,"itemsType":"column","itemsId":31,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":623,"roleId":3,"itemsType":"column","itemsId":32,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":624,"roleId":3,"itemsType":"column","itemsId":33,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":625,"roleId":3,"itemsType":"column","itemsId":34,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":626,"roleId":3,"itemsType":"column","itemsId":35,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":627,"roleId":3,"itemsType":"column","itemsId":36,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":628,"roleId":3,"itemsType":"column","itemsId":37,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":629,"roleId":3,"itemsType":"column","itemsId":38,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":630,"roleId":3,"itemsType":"column","itemsId":39,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""},{"id":631,"roleId":3,"itemsType":"api","itemsId":57,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2022-11-04 22:59:55","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$23 -SagooIOT_sysAuthorize_7 -$66123 -[{"id":9754,"roleId":7,"itemsType":"menu","itemsId":56,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9755,"roleId":7,"itemsType":"menu","itemsId":84,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9756,"roleId":7,"itemsType":"menu","itemsId":95,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9757,"roleId":7,"itemsType":"menu","itemsId":91,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9758,"roleId":7,"itemsType":"menu","itemsId":92,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9759,"roleId":7,"itemsType":"menu","itemsId":11,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9760,"roleId":7,"itemsType":"menu","itemsId":34,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9761,"roleId":7,"itemsType":"menu","itemsId":52,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9762,"roleId":7,"itemsType":"menu","itemsId":36,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9763,"roleId":7,"itemsType":"menu","itemsId":51,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9764,"roleId":7,"itemsType":"menu","itemsId":35,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9765,"roleId":7,"itemsType":"menu","itemsId":65,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9766,"roleId":7,"itemsType":"menu","itemsId":66,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9767,"roleId":7,"itemsType":"menu","itemsId":68,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9768,"roleId":7,"itemsType":"menu","itemsId":69,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9769,"roleId":7,"itemsType":"menu","itemsId":74,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9770,"roleId":7,"itemsType":"menu","itemsId":70,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9771,"roleId":7,"itemsType":"menu","itemsId":71,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9772,"roleId":7,"itemsType":"menu","itemsId":72,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9773,"roleId":7,"itemsType":"menu","itemsId":73,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9774,"roleId":7,"itemsType":"menu","itemsId":23,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9775,"roleId":7,"itemsType":"menu","itemsId":25,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9776,"roleId":7,"itemsType":"menu","itemsId":44,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9777,"roleId":7,"itemsType":"menu","itemsId":88,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9778,"roleId":7,"itemsType":"menu","itemsId":89,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9779,"roleId":7,"itemsType":"menu","itemsId":90,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9780,"roleId":7,"itemsType":"menu","itemsId":26,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9781,"roleId":7,"itemsType":"menu","itemsId":30,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9782,"roleId":7,"itemsType":"menu","itemsId":31,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9783,"roleId":7,"itemsType":"menu","itemsId":29,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9784,"roleId":7,"itemsType":"menu","itemsId":40,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9785,"roleId":7,"itemsType":"menu","itemsId":41,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9786,"roleId":7,"itemsType":"menu","itemsId":116,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9787,"roleId":7,"itemsType":"menu","itemsId":117,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9788,"roleId":7,"itemsType":"menu","itemsId":42,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9789,"roleId":7,"itemsType":"menu","itemsId":80,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9790,"roleId":7,"itemsType":"menu","itemsId":114,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9791,"roleId":7,"itemsType":"menu","itemsId":115,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9792,"roleId":7,"itemsType":"menu","itemsId":124,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9793,"roleId":7,"itemsType":"menu","itemsId":122,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9794,"roleId":7,"itemsType":"menu","itemsId":123,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9795,"roleId":7,"itemsType":"menu","itemsId":130,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9796,"roleId":7,"itemsType":"menu","itemsId":131,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9797,"roleId":7,"itemsType":"menu","itemsId":1,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9798,"roleId":7,"itemsType":"menu","itemsId":15,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9799,"roleId":7,"itemsType":"menu","itemsId":13,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9800,"roleId":7,"itemsType":"menu","itemsId":12,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9801,"roleId":7,"itemsType":"menu","itemsId":14,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9802,"roleId":7,"itemsType":"menu","itemsId":10,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9803,"roleId":7,"itemsType":"menu","itemsId":119,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9804,"roleId":7,"itemsType":"menu","itemsId":20,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9805,"roleId":7,"itemsType":"menu","itemsId":2,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9806,"roleId":7,"itemsType":"menu","itemsId":16,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9807,"roleId":7,"itemsType":"menu","itemsId":21,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9808,"roleId":7,"itemsType":"menu","itemsId":22,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9809,"roleId":7,"itemsType":"menu","itemsId":27,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9810,"roleId":7,"itemsType":"menu","itemsId":32,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9811,"roleId":7,"itemsType":"menu","itemsId":37,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9812,"roleId":7,"itemsType":"menu","itemsId":39,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9813,"roleId":7,"itemsType":"menu","itemsId":61,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9814,"roleId":7,"itemsType":"menu","itemsId":64,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9815,"roleId":7,"itemsType":"menu","itemsId":46,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9816,"roleId":7,"itemsType":"menu","itemsId":48,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9817,"roleId":7,"itemsType":"menu","itemsId":85,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9818,"roleId":7,"itemsType":"menu","itemsId":133,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9819,"roleId":7,"itemsType":"menu","itemsId":19,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9820,"roleId":7,"itemsType":"menu","itemsId":17,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9821,"roleId":7,"itemsType":"menu","itemsId":120,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9822,"roleId":7,"itemsType":"menu","itemsId":110,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9823,"roleId":7,"itemsType":"menu","itemsId":129,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9824,"roleId":7,"itemsType":"menu","itemsId":18,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9825,"roleId":7,"itemsType":"menu","itemsId":49,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9826,"roleId":7,"itemsType":"menu","itemsId":50,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9827,"roleId":7,"itemsType":"button","itemsId":156,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9828,"roleId":7,"itemsType":"button","itemsId":12,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9829,"roleId":7,"itemsType":"button","itemsId":96,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9830,"roleId":7,"itemsType":"button","itemsId":136,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9831,"roleId":7,"itemsType":"button","itemsId":101,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9832,"roleId":7,"itemsType":"button","itemsId":103,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9833,"roleId":7,"itemsType":"button","itemsId":137,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9834,"roleId":7,"itemsType":"button","itemsId":143,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9835,"roleId":7,"itemsType":"button","itemsId":160,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9836,"roleId":7,"itemsType":"button","itemsId":149,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9837,"roleId":7,"itemsType":"button","itemsId":188,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9838,"roleId":7,"itemsType":"button","itemsId":42,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9839,"roleId":7,"itemsType":"button","itemsId":43,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9840,"roleId":7,"itemsType":"button","itemsId":30,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9841,"roleId":7,"itemsType":"button","itemsId":80,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9842,"roleId":7,"itemsType":"button","itemsId":83,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9843,"roleId":7,"itemsType":"button","itemsId":90,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9844,"roleId":7,"itemsType":"button","itemsId":145,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9845,"roleId":7,"itemsType":"button","itemsId":146,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9846,"roleId":7,"itemsType":"button","itemsId":46,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9847,"roleId":7,"itemsType":"column","itemsId":224,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9848,"roleId":7,"itemsType":"column","itemsId":225,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9849,"roleId":7,"itemsType":"column","itemsId":226,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9850,"roleId":7,"itemsType":"column","itemsId":227,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9851,"roleId":7,"itemsType":"column","itemsId":228,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9852,"roleId":7,"itemsType":"column","itemsId":229,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9853,"roleId":7,"itemsType":"column","itemsId":230,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9854,"roleId":7,"itemsType":"column","itemsId":231,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9855,"roleId":7,"itemsType":"column","itemsId":232,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9856,"roleId":7,"itemsType":"column","itemsId":1,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9857,"roleId":7,"itemsType":"column","itemsId":3,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9858,"roleId":7,"itemsType":"column","itemsId":128,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9859,"roleId":7,"itemsType":"column","itemsId":129,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9860,"roleId":7,"itemsType":"column","itemsId":130,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9861,"roleId":7,"itemsType":"column","itemsId":131,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9862,"roleId":7,"itemsType":"column","itemsId":132,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9863,"roleId":7,"itemsType":"column","itemsId":133,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9864,"roleId":7,"itemsType":"column","itemsId":134,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9865,"roleId":7,"itemsType":"column","itemsId":137,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9866,"roleId":7,"itemsType":"column","itemsId":138,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9867,"roleId":7,"itemsType":"column","itemsId":139,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9868,"roleId":7,"itemsType":"column","itemsId":140,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9869,"roleId":7,"itemsType":"column","itemsId":142,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9870,"roleId":7,"itemsType":"column","itemsId":143,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9871,"roleId":7,"itemsType":"column","itemsId":144,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9872,"roleId":7,"itemsType":"column","itemsId":135,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9873,"roleId":7,"itemsType":"column","itemsId":136,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9874,"roleId":7,"itemsType":"column","itemsId":252,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9875,"roleId":7,"itemsType":"column","itemsId":145,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9876,"roleId":7,"itemsType":"column","itemsId":146,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9877,"roleId":7,"itemsType":"column","itemsId":147,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9878,"roleId":7,"itemsType":"column","itemsId":148,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9879,"roleId":7,"itemsType":"column","itemsId":149,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9880,"roleId":7,"itemsType":"column","itemsId":200,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9881,"roleId":7,"itemsType":"column","itemsId":201,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9882,"roleId":7,"itemsType":"column","itemsId":202,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9883,"roleId":7,"itemsType":"column","itemsId":203,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9884,"roleId":7,"itemsType":"column","itemsId":204,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9885,"roleId":7,"itemsType":"column","itemsId":205,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9886,"roleId":7,"itemsType":"column","itemsId":206,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9887,"roleId":7,"itemsType":"column","itemsId":207,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9888,"roleId":7,"itemsType":"column","itemsId":208,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9889,"roleId":7,"itemsType":"column","itemsId":234,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9890,"roleId":7,"itemsType":"column","itemsId":235,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9891,"roleId":7,"itemsType":"column","itemsId":236,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9892,"roleId":7,"itemsType":"column","itemsId":237,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9893,"roleId":7,"itemsType":"column","itemsId":238,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9894,"roleId":7,"itemsType":"column","itemsId":239,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9895,"roleId":7,"itemsType":"column","itemsId":240,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9896,"roleId":7,"itemsType":"column","itemsId":241,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9897,"roleId":7,"itemsType":"column","itemsId":242,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9898,"roleId":7,"itemsType":"column","itemsId":220,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9899,"roleId":7,"itemsType":"column","itemsId":221,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9900,"roleId":7,"itemsType":"column","itemsId":222,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9901,"roleId":7,"itemsType":"column","itemsId":223,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9902,"roleId":7,"itemsType":"column","itemsId":211,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9903,"roleId":7,"itemsType":"column","itemsId":212,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9904,"roleId":7,"itemsType":"column","itemsId":213,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9905,"roleId":7,"itemsType":"column","itemsId":214,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9906,"roleId":7,"itemsType":"column","itemsId":215,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9907,"roleId":7,"itemsType":"column","itemsId":216,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9908,"roleId":7,"itemsType":"column","itemsId":217,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9909,"roleId":7,"itemsType":"column","itemsId":218,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9910,"roleId":7,"itemsType":"column","itemsId":219,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9911,"roleId":7,"itemsType":"column","itemsId":253,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9912,"roleId":7,"itemsType":"column","itemsId":254,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9913,"roleId":7,"itemsType":"column","itemsId":255,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9914,"roleId":7,"itemsType":"column","itemsId":256,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9915,"roleId":7,"itemsType":"column","itemsId":257,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9916,"roleId":7,"itemsType":"column","itemsId":13,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9917,"roleId":7,"itemsType":"column","itemsId":14,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9918,"roleId":7,"itemsType":"column","itemsId":15,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9919,"roleId":7,"itemsType":"column","itemsId":16,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9920,"roleId":7,"itemsType":"column","itemsId":21,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9921,"roleId":7,"itemsType":"column","itemsId":8,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9922,"roleId":7,"itemsType":"column","itemsId":9,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9923,"roleId":7,"itemsType":"column","itemsId":10,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9924,"roleId":7,"itemsType":"column","itemsId":11,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9925,"roleId":7,"itemsType":"column","itemsId":12,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9926,"roleId":7,"itemsType":"column","itemsId":22,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9927,"roleId":7,"itemsType":"column","itemsId":23,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9928,"roleId":7,"itemsType":"column","itemsId":24,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9929,"roleId":7,"itemsType":"column","itemsId":25,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9930,"roleId":7,"itemsType":"column","itemsId":26,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9931,"roleId":7,"itemsType":"column","itemsId":233,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9932,"roleId":7,"itemsType":"column","itemsId":27,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9933,"roleId":7,"itemsType":"column","itemsId":28,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9934,"roleId":7,"itemsType":"column","itemsId":29,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9935,"roleId":7,"itemsType":"column","itemsId":30,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9936,"roleId":7,"itemsType":"column","itemsId":31,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9937,"roleId":7,"itemsType":"column","itemsId":32,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9938,"roleId":7,"itemsType":"column","itemsId":33,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9939,"roleId":7,"itemsType":"column","itemsId":34,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9940,"roleId":7,"itemsType":"column","itemsId":35,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9941,"roleId":7,"itemsType":"column","itemsId":36,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9942,"roleId":7,"itemsType":"column","itemsId":37,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9943,"roleId":7,"itemsType":"column","itemsId":38,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9944,"roleId":7,"itemsType":"column","itemsId":39,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9945,"roleId":7,"itemsType":"column","itemsId":246,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9946,"roleId":7,"itemsType":"column","itemsId":247,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9947,"roleId":7,"itemsType":"column","itemsId":248,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9948,"roleId":7,"itemsType":"column","itemsId":249,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9949,"roleId":7,"itemsType":"column","itemsId":250,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9950,"roleId":7,"itemsType":"column","itemsId":150,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9951,"roleId":7,"itemsType":"column","itemsId":152,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9952,"roleId":7,"itemsType":"column","itemsId":153,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9953,"roleId":7,"itemsType":"column","itemsId":154,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9954,"roleId":7,"itemsType":"column","itemsId":155,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9955,"roleId":7,"itemsType":"column","itemsId":156,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9956,"roleId":7,"itemsType":"column","itemsId":157,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9957,"roleId":7,"itemsType":"column","itemsId":158,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9958,"roleId":7,"itemsType":"column","itemsId":159,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9959,"roleId":7,"itemsType":"column","itemsId":160,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9960,"roleId":7,"itemsType":"column","itemsId":161,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9961,"roleId":7,"itemsType":"column","itemsId":162,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9962,"roleId":7,"itemsType":"column","itemsId":163,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9963,"roleId":7,"itemsType":"column","itemsId":164,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9964,"roleId":7,"itemsType":"column","itemsId":165,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9965,"roleId":7,"itemsType":"column","itemsId":166,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9966,"roleId":7,"itemsType":"column","itemsId":167,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9967,"roleId":7,"itemsType":"column","itemsId":168,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9968,"roleId":7,"itemsType":"column","itemsId":169,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9969,"roleId":7,"itemsType":"column","itemsId":170,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9970,"roleId":7,"itemsType":"column","itemsId":171,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9971,"roleId":7,"itemsType":"column","itemsId":172,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9972,"roleId":7,"itemsType":"column","itemsId":173,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9973,"roleId":7,"itemsType":"column","itemsId":174,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9974,"roleId":7,"itemsType":"column","itemsId":175,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9975,"roleId":7,"itemsType":"column","itemsId":176,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9976,"roleId":7,"itemsType":"column","itemsId":177,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9977,"roleId":7,"itemsType":"column","itemsId":178,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9978,"roleId":7,"itemsType":"column","itemsId":179,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9979,"roleId":7,"itemsType":"column","itemsId":180,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9980,"roleId":7,"itemsType":"column","itemsId":17,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9981,"roleId":7,"itemsType":"column","itemsId":18,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9982,"roleId":7,"itemsType":"column","itemsId":19,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9983,"roleId":7,"itemsType":"column","itemsId":20,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9984,"roleId":7,"itemsType":"column","itemsId":209,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9985,"roleId":7,"itemsType":"column","itemsId":110,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9986,"roleId":7,"itemsType":"column","itemsId":111,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9987,"roleId":7,"itemsType":"column","itemsId":112,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9988,"roleId":7,"itemsType":"column","itemsId":113,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9989,"roleId":7,"itemsType":"column","itemsId":198,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9990,"roleId":7,"itemsType":"column","itemsId":199,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9991,"roleId":7,"itemsType":"column","itemsId":210,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9992,"roleId":7,"itemsType":"column","itemsId":245,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9993,"roleId":7,"itemsType":"column","itemsId":114,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9994,"roleId":7,"itemsType":"column","itemsId":115,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9995,"roleId":7,"itemsType":"column","itemsId":116,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9996,"roleId":7,"itemsType":"column","itemsId":117,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9997,"roleId":7,"itemsType":"column","itemsId":118,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9998,"roleId":7,"itemsType":"column","itemsId":119,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":9999,"roleId":7,"itemsType":"column","itemsId":120,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10000,"roleId":7,"itemsType":"column","itemsId":121,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10001,"roleId":7,"itemsType":"column","itemsId":122,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10002,"roleId":7,"itemsType":"column","itemsId":123,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10003,"roleId":7,"itemsType":"column","itemsId":124,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10004,"roleId":7,"itemsType":"column","itemsId":125,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10005,"roleId":7,"itemsType":"column","itemsId":126,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10006,"roleId":7,"itemsType":"column","itemsId":127,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10007,"roleId":7,"itemsType":"column","itemsId":181,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10008,"roleId":7,"itemsType":"column","itemsId":182,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10009,"roleId":7,"itemsType":"column","itemsId":183,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10010,"roleId":7,"itemsType":"column","itemsId":184,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10011,"roleId":7,"itemsType":"column","itemsId":185,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10012,"roleId":7,"itemsType":"column","itemsId":186,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10013,"roleId":7,"itemsType":"column","itemsId":187,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10014,"roleId":7,"itemsType":"column","itemsId":188,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10015,"roleId":7,"itemsType":"column","itemsId":189,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10016,"roleId":7,"itemsType":"column","itemsId":190,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10017,"roleId":7,"itemsType":"column","itemsId":191,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10018,"roleId":7,"itemsType":"column","itemsId":192,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10019,"roleId":7,"itemsType":"column","itemsId":193,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10020,"roleId":7,"itemsType":"column","itemsId":194,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10021,"roleId":7,"itemsType":"column","itemsId":195,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10022,"roleId":7,"itemsType":"column","itemsId":196,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10023,"roleId":7,"itemsType":"column","itemsId":197,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10024,"roleId":7,"itemsType":"column","itemsId":55,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10025,"roleId":7,"itemsType":"column","itemsId":56,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10026,"roleId":7,"itemsType":"column","itemsId":57,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10027,"roleId":7,"itemsType":"column","itemsId":58,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10028,"roleId":7,"itemsType":"column","itemsId":59,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10029,"roleId":7,"itemsType":"column","itemsId":40,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10030,"roleId":7,"itemsType":"column","itemsId":41,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10031,"roleId":7,"itemsType":"column","itemsId":42,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10032,"roleId":7,"itemsType":"column","itemsId":43,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10033,"roleId":7,"itemsType":"column","itemsId":44,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10034,"roleId":7,"itemsType":"column","itemsId":45,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10035,"roleId":7,"itemsType":"column","itemsId":46,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10036,"roleId":7,"itemsType":"column","itemsId":47,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10037,"roleId":7,"itemsType":"column","itemsId":48,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10038,"roleId":7,"itemsType":"column","itemsId":49,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10039,"roleId":7,"itemsType":"column","itemsId":50,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10040,"roleId":7,"itemsType":"column","itemsId":51,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10041,"roleId":7,"itemsType":"column","itemsId":52,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10042,"roleId":7,"itemsType":"column","itemsId":53,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10043,"roleId":7,"itemsType":"column","itemsId":54,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10044,"roleId":7,"itemsType":"api","itemsId":116,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10045,"roleId":7,"itemsType":"api","itemsId":117,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10046,"roleId":7,"itemsType":"api","itemsId":118,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10047,"roleId":7,"itemsType":"api","itemsId":119,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10048,"roleId":7,"itemsType":"api","itemsId":310,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10049,"roleId":7,"itemsType":"api","itemsId":390,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10050,"roleId":7,"itemsType":"api","itemsId":131,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10051,"roleId":7,"itemsType":"api","itemsId":132,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10052,"roleId":7,"itemsType":"api","itemsId":179,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10053,"roleId":7,"itemsType":"api","itemsId":180,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10054,"roleId":7,"itemsType":"api","itemsId":181,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10055,"roleId":7,"itemsType":"api","itemsId":261,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10056,"roleId":7,"itemsType":"api","itemsId":194,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10057,"roleId":7,"itemsType":"api","itemsId":195,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10058,"roleId":7,"itemsType":"api","itemsId":196,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10059,"roleId":7,"itemsType":"api","itemsId":199,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10060,"roleId":7,"itemsType":"api","itemsId":189,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10061,"roleId":7,"itemsType":"api","itemsId":190,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10062,"roleId":7,"itemsType":"api","itemsId":191,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10063,"roleId":7,"itemsType":"api","itemsId":192,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10064,"roleId":7,"itemsType":"api","itemsId":193,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10065,"roleId":7,"itemsType":"api","itemsId":197,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10066,"roleId":7,"itemsType":"api","itemsId":198,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10067,"roleId":7,"itemsType":"api","itemsId":203,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10068,"roleId":7,"itemsType":"api","itemsId":204,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10069,"roleId":7,"itemsType":"api","itemsId":208,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10070,"roleId":7,"itemsType":"api","itemsId":212,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10071,"roleId":7,"itemsType":"api","itemsId":216,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10072,"roleId":7,"itemsType":"api","itemsId":133,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10073,"roleId":7,"itemsType":"api","itemsId":311,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10074,"roleId":7,"itemsType":"api","itemsId":316,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10075,"roleId":7,"itemsType":"api","itemsId":312,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10076,"roleId":7,"itemsType":"api","itemsId":313,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10077,"roleId":7,"itemsType":"api","itemsId":319,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10078,"roleId":7,"itemsType":"api","itemsId":323,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10079,"roleId":7,"itemsType":"api","itemsId":320,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10080,"roleId":7,"itemsType":"api","itemsId":321,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10081,"roleId":7,"itemsType":"api","itemsId":139,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10082,"roleId":7,"itemsType":"api","itemsId":141,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10083,"roleId":7,"itemsType":"api","itemsId":142,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10084,"roleId":7,"itemsType":"api","itemsId":148,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10085,"roleId":7,"itemsType":"api","itemsId":149,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10086,"roleId":7,"itemsType":"api","itemsId":150,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10087,"roleId":7,"itemsType":"api","itemsId":154,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10088,"roleId":7,"itemsType":"api","itemsId":155,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10089,"roleId":7,"itemsType":"api","itemsId":157,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10090,"roleId":7,"itemsType":"api","itemsId":158,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10091,"roleId":7,"itemsType":"api","itemsId":367,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10092,"roleId":7,"itemsType":"api","itemsId":369,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10093,"roleId":7,"itemsType":"api","itemsId":370,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10094,"roleId":7,"itemsType":"api","itemsId":371,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10095,"roleId":7,"itemsType":"api","itemsId":372,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10096,"roleId":7,"itemsType":"api","itemsId":373,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10097,"roleId":7,"itemsType":"api","itemsId":374,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10098,"roleId":7,"itemsType":"api","itemsId":368,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10099,"roleId":7,"itemsType":"api","itemsId":380,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10100,"roleId":7,"itemsType":"api","itemsId":381,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10101,"roleId":7,"itemsType":"api","itemsId":161,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10102,"roleId":7,"itemsType":"api","itemsId":165,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10103,"roleId":7,"itemsType":"api","itemsId":166,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10104,"roleId":7,"itemsType":"api","itemsId":252,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10105,"roleId":7,"itemsType":"api","itemsId":255,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10106,"roleId":7,"itemsType":"api","itemsId":259,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10107,"roleId":7,"itemsType":"api","itemsId":262,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10108,"roleId":7,"itemsType":"api","itemsId":265,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10109,"roleId":7,"itemsType":"api","itemsId":267,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10110,"roleId":7,"itemsType":"api","itemsId":272,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10111,"roleId":7,"itemsType":"api","itemsId":273,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10112,"roleId":7,"itemsType":"api","itemsId":274,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10113,"roleId":7,"itemsType":"api","itemsId":391,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10114,"roleId":7,"itemsType":"api","itemsId":290,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10115,"roleId":7,"itemsType":"api","itemsId":293,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10116,"roleId":7,"itemsType":"api","itemsId":296,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10117,"roleId":7,"itemsType":"api","itemsId":299,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10118,"roleId":7,"itemsType":"api","itemsId":301,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10119,"roleId":7,"itemsType":"api","itemsId":303,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10120,"roleId":7,"itemsType":"api","itemsId":335,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10121,"roleId":7,"itemsType":"api","itemsId":336,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10122,"roleId":7,"itemsType":"api","itemsId":343,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10123,"roleId":7,"itemsType":"api","itemsId":344,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10124,"roleId":7,"itemsType":"api","itemsId":349,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10125,"roleId":7,"itemsType":"api","itemsId":350,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10126,"roleId":7,"itemsType":"api","itemsId":385,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10127,"roleId":7,"itemsType":"api","itemsId":386,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10128,"roleId":7,"itemsType":"api","itemsId":168,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10129,"roleId":7,"itemsType":"api","itemsId":223,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10130,"roleId":7,"itemsType":"api","itemsId":226,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10131,"roleId":7,"itemsType":"api","itemsId":228,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10132,"roleId":7,"itemsType":"api","itemsId":229,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10133,"roleId":7,"itemsType":"api","itemsId":346,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10134,"roleId":7,"itemsType":"api","itemsId":241,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10135,"roleId":7,"itemsType":"api","itemsId":242,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10136,"roleId":7,"itemsType":"api","itemsId":244,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10137,"roleId":7,"itemsType":"api","itemsId":219,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10138,"roleId":7,"itemsType":"api","itemsId":220,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10139,"roleId":7,"itemsType":"api","itemsId":230,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10140,"roleId":7,"itemsType":"api","itemsId":237,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10141,"roleId":7,"itemsType":"api","itemsId":243,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10142,"roleId":7,"itemsType":"api","itemsId":251,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10143,"roleId":7,"itemsType":"api","itemsId":355,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10144,"roleId":7,"itemsType":"api","itemsId":356,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10145,"roleId":7,"itemsType":"api","itemsId":360,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10146,"roleId":7,"itemsType":"api","itemsId":363,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10147,"roleId":7,"itemsType":"api","itemsId":366,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10148,"roleId":7,"itemsType":"api","itemsId":326,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10149,"roleId":7,"itemsType":"api","itemsId":330,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10150,"roleId":7,"itemsType":"api","itemsId":275,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10151,"roleId":7,"itemsType":"api","itemsId":284,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10152,"roleId":7,"itemsType":"api","itemsId":285,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10153,"roleId":7,"itemsType":"api","itemsId":286,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10154,"roleId":7,"itemsType":"api","itemsId":276,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10155,"roleId":7,"itemsType":"api","itemsId":278,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10156,"roleId":7,"itemsType":"api","itemsId":280,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10157,"roleId":7,"itemsType":"api","itemsId":281,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10158,"roleId":7,"itemsType":"api","itemsId":282,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""},{"id":10159,"roleId":7,"itemsType":"api","itemsId":283,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-06-19 11:37:22","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$23 -SagooIOT_sysAuthorize_8 -$14076 -[{"id":9667,"roleId":8,"itemsType":"menu","itemsId":56,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9668,"roleId":8,"itemsType":"menu","itemsId":84,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9669,"roleId":8,"itemsType":"menu","itemsId":95,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9670,"roleId":8,"itemsType":"menu","itemsId":93,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9671,"roleId":8,"itemsType":"menu","itemsId":94,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9672,"roleId":8,"itemsType":"menu","itemsId":1,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9673,"roleId":8,"itemsType":"menu","itemsId":15,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9674,"roleId":8,"itemsType":"menu","itemsId":13,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9675,"roleId":8,"itemsType":"menu","itemsId":12,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9676,"roleId":8,"itemsType":"menu","itemsId":14,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9677,"roleId":8,"itemsType":"menu","itemsId":10,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9678,"roleId":8,"itemsType":"menu","itemsId":119,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9679,"roleId":8,"itemsType":"menu","itemsId":19,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9680,"roleId":8,"itemsType":"menu","itemsId":9,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9681,"roleId":8,"itemsType":"menu","itemsId":17,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9682,"roleId":8,"itemsType":"menu","itemsId":120,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9683,"roleId":8,"itemsType":"menu","itemsId":110,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9684,"roleId":8,"itemsType":"menu","itemsId":129,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9685,"roleId":8,"itemsType":"menu","itemsId":18,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9686,"roleId":8,"itemsType":"menu","itemsId":49,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9687,"roleId":8,"itemsType":"menu","itemsId":50,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9688,"roleId":8,"itemsType":"menu","itemsId":20,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9689,"roleId":8,"itemsType":"menu","itemsId":2,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9690,"roleId":8,"itemsType":"menu","itemsId":16,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9691,"roleId":8,"itemsType":"menu","itemsId":21,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9692,"roleId":8,"itemsType":"menu","itemsId":22,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9693,"roleId":8,"itemsType":"menu","itemsId":27,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9694,"roleId":8,"itemsType":"menu","itemsId":32,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9695,"roleId":8,"itemsType":"menu","itemsId":37,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9696,"roleId":8,"itemsType":"menu","itemsId":39,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9697,"roleId":8,"itemsType":"menu","itemsId":61,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9698,"roleId":8,"itemsType":"menu","itemsId":64,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9699,"roleId":8,"itemsType":"menu","itemsId":46,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9700,"roleId":8,"itemsType":"menu","itemsId":48,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9701,"roleId":8,"itemsType":"menu","itemsId":85,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9702,"roleId":8,"itemsType":"menu","itemsId":133,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9703,"roleId":8,"itemsType":"button","itemsId":17,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9704,"roleId":8,"itemsType":"button","itemsId":18,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9705,"roleId":8,"itemsType":"button","itemsId":19,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9706,"roleId":8,"itemsType":"button","itemsId":21,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9707,"roleId":8,"itemsType":"button","itemsId":162,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9708,"roleId":8,"itemsType":"button","itemsId":25,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9709,"roleId":8,"itemsType":"button","itemsId":26,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9710,"roleId":8,"itemsType":"button","itemsId":27,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9711,"roleId":8,"itemsType":"button","itemsId":51,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9712,"roleId":8,"itemsType":"button","itemsId":108,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9713,"roleId":8,"itemsType":"button","itemsId":109,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9714,"roleId":8,"itemsType":"button","itemsId":110,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9715,"roleId":8,"itemsType":"button","itemsId":111,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9716,"roleId":8,"itemsType":"button","itemsId":112,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9717,"roleId":8,"itemsType":"column","itemsId":13,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9718,"roleId":8,"itemsType":"column","itemsId":14,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9719,"roleId":8,"itemsType":"column","itemsId":15,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9720,"roleId":8,"itemsType":"column","itemsId":16,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9721,"roleId":8,"itemsType":"column","itemsId":21,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9722,"roleId":8,"itemsType":"column","itemsId":8,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9723,"roleId":8,"itemsType":"column","itemsId":9,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9724,"roleId":8,"itemsType":"column","itemsId":10,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9725,"roleId":8,"itemsType":"column","itemsId":11,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9726,"roleId":8,"itemsType":"column","itemsId":12,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9727,"roleId":8,"itemsType":"column","itemsId":22,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9728,"roleId":8,"itemsType":"column","itemsId":45,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9729,"roleId":8,"itemsType":"column","itemsId":46,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9730,"roleId":8,"itemsType":"column","itemsId":47,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9731,"roleId":8,"itemsType":"column","itemsId":48,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9732,"roleId":8,"itemsType":"column","itemsId":49,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9733,"roleId":8,"itemsType":"column","itemsId":50,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9734,"roleId":8,"itemsType":"api","itemsId":116,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9735,"roleId":8,"itemsType":"api","itemsId":117,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9736,"roleId":8,"itemsType":"api","itemsId":118,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9737,"roleId":8,"itemsType":"api","itemsId":119,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9738,"roleId":8,"itemsType":"api","itemsId":310,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9739,"roleId":8,"itemsType":"api","itemsId":161,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9740,"roleId":8,"itemsType":"api","itemsId":162,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9741,"roleId":8,"itemsType":"api","itemsId":163,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9742,"roleId":8,"itemsType":"api","itemsId":164,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9743,"roleId":8,"itemsType":"api","itemsId":165,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9744,"roleId":8,"itemsType":"api","itemsId":166,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9745,"roleId":8,"itemsType":"api","itemsId":167,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9746,"roleId":8,"itemsType":"api","itemsId":397,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9747,"roleId":8,"itemsType":"api","itemsId":268,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9748,"roleId":8,"itemsType":"api","itemsId":269,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9749,"roleId":8,"itemsType":"api","itemsId":270,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9750,"roleId":8,"itemsType":"api","itemsId":271,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9751,"roleId":8,"itemsType":"api","itemsId":272,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9752,"roleId":8,"itemsType":"api","itemsId":273,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""},{"id":9753,"roleId":8,"itemsType":"api","itemsId":274,"isCheckAll":1,"isDeleted":0,"createdBy":0,"createdAt":"2023-04-10 23:02:07","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$15 -pluginsaaaabbbb -$27 -1231sssssseeeeee31231231231 -*3 -$3 -SET -$24 -pluginsnoticework_weixin -$189 -Corpid: "ww3da9f97a7f1babc0" -AgentID: 1000002 -Secret: "bo6nFN38dcYpZyKD7tBXnXDMCkaDCta2m3pPO6lC1U8" -Token: "mnRLL3LBiiaxskhQD5" -EncodingAESKey: "4975mx8v13S8QTNyOVcjLfw2EyJPyJTurXPVpympjkC" -*3 -$3 -SET -$21 -pluginsnoticedingding -$70 -AppKey: "sdfadfasdfasdfasdfasdf" -AppSecret: "ewrerwerwerrwerwerwerwer" -*3 -$3 -SET -$16 -pluginsnoticesms -$169 -ProviderName: "alisms" -Title: "阿里云" -RegionId: "cn-hangzhou" -AccessKeyId: "LTAI7TGCAqUzuI6B" -accessSecret: "AseYR5htpq7BTwfH6w73wqLZIwYjxa" -SignName: "沙果学习" -*3 -$3 -SET -$17 -pluginsnoticemail -$93 -MailHost: "smtp.qq.com" -MailPort: "465" -MailUser: "xinjy@qq.com" -MailPass: "zdqkqrdzplnabiig" -*3 -$3 -SET -$20 -pluginsnoticewebhook -$260 -webhook: - - PayloadURL: "http://127.0.0.1:8180/test/webhook" - Secret: "aaaadfasdfasf" - - PayloadURL: "http://127.0.0.1:8180/test/webhook22" - Secret: "aaaadfasdfasf22" - - PayloadURL: "http://127.0.0.1:8180/test/webhook33" - Secret: "aaaadfasdfasf333" -*3 -$3 -SET -$18 -pluginsnoticevoice -$6 -wwwwww -*3 -$3 -SET -$19 -SagooIOT_tag_device -$53 -["device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$74 -["device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$103 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*5 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -$4 -PXAT -$13 -1690954470575 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$37 -SagooIOT_sysConfigTagsys.auto.run.job -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForDay","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","system.iot.overview.index","device:totalForDay","device:totalForMonths","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","system.iot.overview.index","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$62 -["sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965395366 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$97 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965395368 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$127 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965395370 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$162 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965395372 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$197 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965395374 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$225 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965395376 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*5 -$3 -SET -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-9783e825a08de953831c06f98bafc23a -$917 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxMCwidXNlck5hbWUiOiJkZW1vIiwidXNlclR5cGVzIjoic3lzdGVtIiwibW9iaWxlIjoiMTg3MTExMTExMTEiLCJ1c2VyTmlja25hbWUiOiJhZG1pbiIsImJpcnRoZGF5IjoiIiwidXNlclBhc3N3b3JkIjoiIiwidXNlclNhbHQiOiJrNWpqakIzVlU4IiwidXNlckVtYWlsIjoiIiwic2V4IjowLCJhdmF0YXIiOiJodHRwczovL3poZ3kuc2Fnb28uY24vYmFzZS1hcGkvdXBsb2FkX2ZpbGUvMjAyMy0wNS0xOS9jc3E1OXIyZW9yb2VvNXRjb3kucG5nIiwiZGVwdElkIjozLCJyZW1hcmsiOiIiLCJpc0FkbWluIjoxLCJhZGRyZXNzIjoiIiwiZGVzY3JpYmUiOiIiLCJsYXN0TG9naW5JcCI6IjExNS4yMzYuMTY3Ljk4IiwibGFzdExvZ2luVGltZSI6IjIwMjMtMDYtMjAgMTE6MDQ6NDAiLCJzdGF0dXMiOjEsImlzRGVsZXRlZCI6MCwiY3JlYXRlQnkiOjEsImNyZWF0ZWRBdCI6IjIwMjItMTEtMDMgMDA6MTk6NTAiLCJ1cGRhdGVCeSI6MTAsInVwZGF0ZWRBdCI6IjIwMjMtMDYtMjAgMTE6MDQ6MzkiLCJkZWxldGVkQnkiOjAsImRlbGV0ZWRBdCI6IiJ9LCJleHAiOjE2OTA5ODE1NDEsIm5iZiI6MTY5MDk2NTMzMX0.kiNVXOaylsGKCMXwi_zltb1Ov4pYga8gl1DifgDinNQ","uuId":"332235b9e9614ac722675e1a99f7e283"} -$4 -PXAT -$13 -1690981541306 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$254 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965401354 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$287 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965401355 -*5 -$3 -SET -$20 -SagooIOT_userInfo_10 -$484 -{"id":10,"userName":"demo","userTypes":"system","mobile":"18711111111","userNickname":"admin","birthday":"","userEmail":"","sex":0,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-05-19/csq59r2eoroeo5tcoy.png","deptId":3,"remark":"","isAdmin":1,"address":"","describe":"","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-02 16:35:41","status":1,"createBy":1,"createdAt":"2022-11-03 00:19:50","updateBy":10,"updatedAt":"2023-08-02 16:35:41","roleIds":[7],"postIds":[5]} -$4 -PXAT -$13 -1690968941380 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$319 -["sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.column.switch -$286 -{"configId":25,"configName":"列表开关","configKey":"sys.column.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:09:18","updateBy":10,"updatedAt":"2023-04-10 13:24:48","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965401385 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.button.switch -$286 -{"configId":26,"configName":"按钮开关","configKey":"sys.button.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:10:36","updateBy":10,"updatedAt":"2023-04-10 13:24:45","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965401386 -*3 -$3 -SET -$25 -SagooIOT_userAuthorize_10 -$87443 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":0,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0},{"id":56,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的风力图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getWindpowerEchartById","remark":"","status":1,"sort":0},{"id":57,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的温度图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getTemperatureEchartById","remark":"","status":1,"sort":0},{"id":58,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的天气","types":2,"method":"","address":"/api/v1/envirotronics/weather/getInfoById","remark":"","status":1,"sort":0},{"id":238,"menuApiId":0,"parentId":237,"name":"城市-风力-日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList2","remark":"","status":1,"sort":0}],"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":0,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":0,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0},{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0},{"id":102,"menuApiId":0,"parentId":90,"name":"产品:列表","types":2,"method":"","address":"/api/v1/product/list","remark":"","status":1,"sort":0},{"id":103,"menuApiId":0,"parentId":90,"name":"产品:详情","types":2,"method":"","address":"/api/v1/product/detail","remark":"","status":1,"sort":0},{"id":104,"menuApiId":0,"parentId":90,"name":"产品:详情,按key查询","types":2,"method":"","address":"/api/v1/product/get","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null}],"api":[{"id":117,"menuApiId":0,"parentId":90,"name":"设备:搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/device/page_list","remark":"","status":1,"sort":0},{"id":118,"menuApiId":0,"parentId":90,"name":"设备:详情","types":2,"method":"","address":"/api/v1/product/device/detail","remark":"","status":1,"sort":0},{"id":119,"menuApiId":0,"parentId":90,"name":"设备:详情,按key查询","types":2,"method":"","address":"/api/v1/product/device/get","remark":"","status":1,"sort":0},{"id":122,"menuApiId":0,"parentId":90,"name":"数据类型:列表","types":2,"method":"","address":"/api/v1/product/tsl/data_type","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":112,"menuApiId":0,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0},{"id":113,"menuApiId":0,"parentId":90,"name":"设备:运行状态","types":2,"method":"","address":"/api/v1/product/device/run_status","remark":"","status":1,"sort":0},{"id":114,"menuApiId":0,"parentId":90,"name":"设备:获取指定属性值","types":2,"method":"","address":"/api/v1/product/device/property/get","remark":"","status":1,"sort":0},{"id":115,"menuApiId":0,"parentId":90,"name":"设备:属性详情列表","types":2,"method":"","address":"/api/v1/product/device/property/list","remark":"","status":1,"sort":0},{"id":116,"menuApiId":0,"parentId":90,"name":"设备:已发布产品设备列表","types":2,"method":"","address":"/api/v1/product/device/list","remark":"","status":1,"sort":0},{"id":120,"menuApiId":0,"parentId":90,"name":"日志:类型列表","types":2,"method":"","address":"/api/v1/product/log/type","remark":"","status":1,"sort":0},{"id":121,"menuApiId":0,"parentId":90,"name":"日志:搜索","types":2,"method":"","address":"/api/v1/product/log/search","remark":"","status":1,"sort":0},{"id":126,"menuApiId":0,"parentId":90,"name":"属性:列表","types":2,"method":"","address":"/api/v1/product/tsl/property/list","remark":"","status":1,"sort":0},{"id":127,"menuApiId":0,"parentId":90,"name":"属性:所有属性列表","types":2,"method":"","address":"/api/v1/product/tsl/property/all","remark":"","status":1,"sort":0},{"id":131,"menuApiId":0,"parentId":90,"name":"功能:列表","types":2,"method":"","address":"/api/v1/product/tsl/function/list","remark":"","status":1,"sort":0},{"id":135,"menuApiId":0,"parentId":90,"name":"事件:列表","types":2,"method":"","address":"/api/v1/product/tsl/event/list","remark":"","status":1,"sort":0},{"id":139,"menuApiId":0,"parentId":90,"name":"标签:列表","types":2,"method":"","address":"/api/v1/product/tsl/tag/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0},{"id":242,"menuApiId":0,"parentId":239,"name":"通道详情","types":2,"method":"","address":"/api/v1/network/tunnel/get","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0},{"id":245,"menuApiId":0,"parentId":239,"name":"服务器详情","types":2,"method":"","address":"/api/v1/network/get","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":62,"menuApiId":0,"parentId":90,"name":"获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getList","remark":"","status":1,"sort":0},{"id":66,"menuApiId":0,"parentId":90,"name":"根据文件夹ID获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoByFolderId","remark":"","status":1,"sort":0},{"id":67,"menuApiId":0,"parentId":90,"name":"根据ID获取拓扑图信息","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoById","remark":"","status":1,"sort":0},{"id":72,"menuApiId":0,"parentId":90,"name":"根据ID获取文件夹","types":2,"method":"","address":"/api/v1/configure/folder/getInfoById","remark":"","status":1,"sort":0},{"id":73,"menuApiId":0,"parentId":90,"name":"获取文件夹列表","types":2,"method":"","address":"/api/v1/configure/folder/list","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":0,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0},{"id":78,"menuApiId":0,"parentId":90,"name":"获取项目数据","types":2,"method":"","address":"/api/v1/screen/project/getData","remark":"","status":1,"sort":0},{"id":79,"menuApiId":0,"parentId":90,"name":"根据ID获取大屏项目","types":2,"method":"","address":"/api/v1/screen/project/getProjectById","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":295,"menuApiId":0,"parentId":293,"name":"告警级别:配置","types":2,"method":"","address":"/api/v1/alarm/level/edit","remark":"","status":1,"sort":0},{"id":296,"menuApiId":0,"parentId":293,"name":"告警规则:操作符列表","types":2,"method":"","address":"/api/v1/alarm/rule/operator","remark":"","status":1,"sort":0},{"id":297,"menuApiId":0,"parentId":293,"name":"告警规则:触发类型列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_type","remark":"","status":1,"sort":0},{"id":298,"menuApiId":0,"parentId":293,"name":"告警规则:触发条件参数列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_param","remark":"","status":1,"sort":0},{"id":299,"menuApiId":0,"parentId":293,"name":"告警规则:详情","types":2,"method":"","address":"/api/v1/alarm/rule/detail","remark":"","status":1,"sort":0},{"id":300,"menuApiId":0,"parentId":293,"name":"告警规则:列表","types":2,"method":"","address":"/api/v1/alarm/rule/list","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":306,"menuApiId":0,"parentId":293,"name":"告警日志:详情","types":2,"method":"","address":"/api/v1/alarm/log/detail","remark":"","status":1,"sort":0},{"id":307,"menuApiId":0,"parentId":293,"name":"告警日志:列表","types":2,"method":"","address":"/api/v1/alarm/log/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":null,"children":null}]}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":0,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0},{"id":87,"menuApiId":0,"parentId":90,"name":"根据ID获取用户","types":2,"method":"","address":"/api/v1/system/user/getInfoById","remark":"","status":1,"sort":0},{"id":88,"menuApiId":0,"parentId":90,"name":"所有用户列表","types":2,"method":"","address":"/api/v1/system/user/getAll","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":0,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0},{"id":178,"menuApiId":0,"parentId":90,"name":"根据ID获取组织详情","types":2,"method":"","address":"/api/v1/system/organization/detail","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":182,"menuApiId":0,"parentId":90,"name":"根据ID获取部门详情","types":2,"method":"","address":"/api/v1/system/dept/detail","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":186,"menuApiId":0,"parentId":90,"name":"根据ID获取岗位详情","types":2,"method":"","address":"/api/v1/system/post/detail","remark":"","status":1,"sort":0},{"id":188,"menuApiId":0,"parentId":90,"name":"获取岗位列表","types":2,"method":"","address":"/api/v1/system/post/tree","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":193,"menuApiId":0,"parentId":90,"name":"根据ID获取权限信息","types":2,"method":"","address":"/api/v1/system/role/getAuthorizeById","remark":"","status":1,"sort":0},{"id":194,"menuApiId":0,"parentId":90,"name":"根据ID获取角色","types":2,"method":"","address":"/api/v1/system/role/getInfoById","remark":"","status":1,"sort":0},{"id":195,"menuApiId":0,"parentId":90,"name":"角色树状列表","types":2,"method":"","address":"/api/v1/system/role/tree","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":0,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":211,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单按钮详情","types":2,"method":"","address":"/api/v1/system/menu/button/detail","remark":"","status":1,"sort":0},{"id":214,"menuApiId":0,"parentId":90,"name":"菜单与按钮树列表","types":2,"method":"","address":"/api/v1/system/menu/button/tree","remark":"","status":1,"sort":0},{"id":217,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单列表详情","types":2,"method":"","address":"/api/v1/system/menu/column/detail","remark":"","status":1,"sort":0},{"id":220,"menuApiId":0,"parentId":90,"name":"菜单与列表树列表","types":2,"method":"","address":"/api/v1/system/menu/column/tree","remark":"","status":1,"sort":0},{"id":222,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单详情","types":2,"method":"","address":"/api/v1/system/menu/detail","remark":"","status":1,"sort":0},{"id":224,"menuApiId":0,"parentId":90,"name":"菜单列表","types":2,"method":"","address":"/api/v1/system/menu/tree","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":260,"menuApiId":0,"parentId":254,"name":"获取系统参数","types":2,"method":"","address":"/api/v1/common/config/get","remark":"","status":1,"sort":0},{"id":261,"menuApiId":0,"parentId":254,"name":"系统参数列表","types":2,"method":"","address":"/api/v1/common/config/list","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":268,"menuApiId":0,"parentId":254,"name":"获取字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/get","remark":"","status":1,"sort":0},{"id":269,"menuApiId":0,"parentId":254,"name":"字典类型列表","types":2,"method":"","address":"/api/v1/common/dict/type/list","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":275,"menuApiId":0,"parentId":254,"name":"获取字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/get","remark":"","status":1,"sort":0},{"id":276,"menuApiId":0,"parentId":254,"name":"获取字典数据公共方法","types":2,"method":"","address":"/api/v1/common/dict/data/getDictData","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":0,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0},{"id":262,"menuApiId":0,"parentId":257,"name":"获取数据源信息","types":2,"method":"","address":"/assess/v1/datasetup/target","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":0,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0},{"id":146,"menuApiId":0,"parentId":90,"name":"设备数据源:获取设备数据","types":2,"method":"","address":"/api/v1/source/device/get","remark":"","status":1,"sort":0},{"id":149,"menuApiId":0,"parentId":90,"name":"API 数据源:获取api数据","types":2,"method":"","address":"/api/v1/source/api/get","remark":"","status":1,"sort":0},{"id":151,"menuApiId":0,"parentId":90,"name":"数据源:列表","types":2,"method":"","address":"/api/v1/source/list","remark":"","status":1,"sort":0},{"id":152,"menuApiId":0,"parentId":90,"name":"数据源:获取源数据记录","types":2,"method":"","address":"/api/v1/source/getdata","remark":"","status":1,"sort":0},{"id":272,"menuApiId":0,"parentId":270,"name":"数据源列表","types":2,"method":"","address":"/api/v1/source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":164,"menuApiId":0,"parentId":90,"name":"模型:搜索列表","types":2,"method":"","address":"/api/v1/source/template/search","remark":"","status":1,"sort":0},{"id":165,"menuApiId":0,"parentId":90,"name":"模型:已发布列表","types":2,"method":"","address":"/api/v1/source/template/list","remark":"","status":1,"sort":0},{"id":167,"menuApiId":0,"parentId":90,"name":"模型:获取模型数据记录","types":2,"method":"","address":"/api/v1/source/template/getdata","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0},{"id":143,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取数据","types":2,"method":"","address":"/api/v1/source/db/get","remark":"","status":1,"sort":0},{"id":153,"menuApiId":0,"parentId":90,"name":"数据源:详情","types":2,"method":"","address":"/api/v1/source/detail","remark":"","status":1,"sort":0},{"id":160,"menuApiId":0,"parentId":90,"name":"数据节点:列表","types":2,"method":"","address":"/api/v1/source/node/list","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":0,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0},{"id":174,"menuApiId":0,"parentId":90,"name":"节点:列表","types":2,"method":"","address":"/api/v1/source/template/node/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":281,"menuApiId":0,"parentId":254,"name":"根据ID获取任务","types":2,"method":"","address":"/api/v1/system/job/getJobById","remark":"","status":1,"sort":0},{"id":282,"menuApiId":0,"parentId":254,"name":"获取任务列表","types":2,"method":"","address":"/api/v1/system/job/list","remark":"","status":1,"sort":0}],"children":null},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":0,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0},{"id":289,"menuApiId":0,"parentId":254,"name":"根据ID获取Api详情","types":2,"method":"","address":"/api/v1/system/api/detail","remark":"","status":1,"sort":0},{"id":292,"menuApiId":0,"parentId":254,"name":"获取接口列表","types":2,"method":"","address":"/api/v1/system/api/tree","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":0,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0},{"id":253,"menuApiId":0,"parentId":248,"name":"获取城市详情","types":2,"method":"","address":"/api/v1/common/city/getInfoById","remark":"","status":1,"sort":0}],"children":null},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":0,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null}],"api":[{"id":205,"menuApiId":0,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0},{"id":206,"menuApiId":0,"parentId":90,"name":"获取插件列表","types":2,"method":"","address":"/api/v1/system/plugins/list","remark":"","status":1,"sort":0},{"id":207,"menuApiId":0,"parentId":90,"name":"设置插件状态","types":2,"method":"","address":"/api/v1/system/plugins/set","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":0,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0},{"id":199,"menuApiId":0,"parentId":90,"name":"根据ID获取访问日志详情","types":2,"method":"","address":"/api/v1/system/login/log/detail","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":201,"menuApiId":0,"parentId":90,"name":"根据ID获取操作日志详情","types":2,"method":"","address":"/api/v1/system/oper/log/detail","remark":"","status":1,"sort":0},{"id":202,"menuApiId":0,"parentId":90,"name":"操作日志列表","types":2,"method":"","address":"/api/v1/system/oper/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":0,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0},{"id":204,"menuApiId":0,"parentId":90,"name":"在线用户强退","types":2,"method":"","address":"/api/v1/system/userOnline/strongBack","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.button.switch -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.column.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965521763 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965521764 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965521766 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965521767 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965659969 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965659975 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965659981 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965659987 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965659994 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965659999 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-9442880f3cdff9777008ac536850b628 -$917 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxMCwidXNlck5hbWUiOiJkZW1vIiwidXNlclR5cGVzIjoic3lzdGVtIiwibW9iaWxlIjoiMTg3MTExMTExMTEiLCJ1c2VyTmlja25hbWUiOiJhZG1pbiIsImJpcnRoZGF5IjoiIiwidXNlclBhc3N3b3JkIjoiIiwidXNlclNhbHQiOiJrNWpqakIzVlU4IiwidXNlckVtYWlsIjoiIiwic2V4IjowLCJhdmF0YXIiOiJodHRwczovL3poZ3kuc2Fnb28uY24vYmFzZS1hcGkvdXBsb2FkX2ZpbGUvMjAyMy0wNS0xOS9jc3E1OXIyZW9yb2VvNXRjb3kucG5nIiwiZGVwdElkIjozLCJyZW1hcmsiOiIiLCJpc0FkbWluIjoxLCJhZGRyZXNzIjoiIiwiZGVzY3JpYmUiOiIiLCJsYXN0TG9naW5JcCI6IjE5Mi4xNjguMTAuMjMzIiwibGFzdExvZ2luVGltZSI6IjIwMjMtMDgtMDIgMTY6MzU6NDEiLCJzdGF0dXMiOjEsImlzRGVsZXRlZCI6MCwiY3JlYXRlQnkiOjEsImNyZWF0ZWRBdCI6IjIwMjItMTEtMDMgMDA6MTk6NTAiLCJ1cGRhdGVCeSI6MTAsInVwZGF0ZWRBdCI6IjIwMjMtMDgtMDIgMTY6MzU6NDEiLCJkZWxldGVkQnkiOjAsImRlbGV0ZWRBdCI6IiJ9LCJleHAiOjE2OTA5ODE4MTYsIm5iZiI6MTY5MDk2NTYwNn0._LWg4zmCZyEMnC6JhXVPIW6_nDVeQ9Ng5vMXNrKkZ5Y","uuId":"d677c0817777a4295748ace206e7f427"} -$4 -PXAT -$13 -1690981816274 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965676433 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690965676440 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-9783e825a08de953831c06f98bafc23a -*2 -$3 -DEL -$25 -SagooIOT_userAuthorize_10 -*2 -$3 -DEL -$20 -SagooIOT_userInfo_10 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966033550 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966033551 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966033553 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966033557 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966033563 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966033569 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -$1032 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiOjoxIiwibGFzdExvZ2luVGltZSI6IjIwMjMtMDYtMjAgMTE6MzM6MzEiLCJzdGF0dXMiOjEsImlzRGVsZXRlZCI6MCwiY3JlYXRlQnkiOjEsImNyZWF0ZWRBdCI6IjIwMjItMDgtMDMgMjE6MzM6MzAiLCJ1cGRhdGVCeSI6MSwidXBkYXRlZEF0IjoiMjAyMy0wNi0yMCAxMTozNDo0MCIsImRlbGV0ZWRCeSI6MCwiZGVsZXRlZEF0IjoiIn0sImV4cCI6MTY5MDk4MjIzNiwibmJmIjoxNjkwOTY2MDI2fQ.wfYMWDkf-1UMnTajeonm0LIt2Qc1fgITFYkF4PWR3mM","uuId":"e4eabc4c213f7033ffe5e15bf14a7a50"} -$4 -PXAT -$13 -1690982236998 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966097022 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966097025 -*5 -$3 -SET -$19 -SagooIOT_userInfo_1 -$581 -{"id":1,"userName":"admin","userTypes":"1","mobile":"15516567192","userNickname":"超级管理员","birthday":"","userEmail":"yxh669@qq.com1111","sex":2,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-03-28/crhqhlhsqd39kbdfqt.png","deptId":6,"remark":"","isAdmin":1,"address":"四川省成都市青羊区东城根南街68号院","describe":"大家好,我是admin。","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-02 16:47:17","status":1,"createBy":1,"createdAt":"2022-08-03 21:33:30","updateBy":1,"updatedAt":"2023-08-02 16:47:16","roleIds":[1],"postIds":[6]} -$4 -PXAT -$13 -1690969637044 -*3 -$3 -SET -$24 -SagooIOT_userAuthorize_1 -$96490 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":116,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0}],"children":null},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":157,"parentId":-1,"menuId":92,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":390,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":10,"parentId":-1,"menuId":34,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":13,"parentId":-1,"menuId":34,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":14,"parentId":-1,"menuId":34,"name":"导入","title":"导入","types":"upload","description":"","status":1,"children":null},{"id":15,"parentId":-1,"menuId":34,"name":"导出","title":"导出","types":"dwonload","description":"","status":1,"children":null},{"id":196,"parentId":-1,"menuId":34,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":null},{"id":197,"parentId":-1,"menuId":34,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":131,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":94,"parentId":-1,"menuId":36,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":97,"parentId":-1,"menuId":36,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","title":"启用与停止","types":"status","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null},{"id":260,"parentId":-1,"menuId":36,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-17 21:18:50","children":null}],"api":[{"id":106,"menuApiId":183,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":192,"parentId":-1,"menuId":51,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","title":"批量绑定","types":"mutipleBind","description":"","status":1,"children":null}],"column":[{"id":261,"parentId":-1,"menuId":51,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:00","children":null},{"id":262,"parentId":-1,"menuId":51,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:15","children":null},{"id":263,"parentId":-1,"menuId":51,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:36","children":null},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:51","children":null},{"id":265,"parentId":-1,"menuId":51,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:06","children":null},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:35","children":null},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:55","children":null},{"id":268,"parentId":-1,"menuId":51,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:25:12","children":null}],"api":[{"id":112,"menuApiId":189,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":16,"parentId":-1,"menuId":35,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":93,"parentId":-1,"menuId":35,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":133,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":198,"parentId":-1,"menuId":136,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":200,"parentId":-1,"menuId":136,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":null,"api":null,"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":100,"parentId":-1,"menuId":66,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":105,"parentId":-1,"menuId":66,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":104,"parentId":105,"menuId":66,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":106,"parentId":105,"menuId":66,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":107,"parentId":105,"menuId":66,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":313,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":311,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":312,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":139,"parentId":-1,"menuId":70,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":140,"parentId":139,"menuId":70,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":141,"parentId":139,"menuId":70,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null},{"id":142,"parentId":139,"menuId":70,"name":"删除","title":"删除","types":"delete","description":"","status":1,"children":null}]},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":144,"parentId":-1,"menuId":70,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":319,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":320,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":321,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":64,"menuApiId":138,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":150,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":158,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":157,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":158,"parentId":-1,"menuId":41,"name":"管理","title":"管理","types":"setting","description":"","status":1,"children":null},{"id":159,"parentId":-1,"menuId":41,"name":"配置","title":"配置","types":"edit","description":"","status":1,"children":null}],"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":161,"parentId":-1,"menuId":42,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":151,"parentId":-1,"menuId":114,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":153,"parentId":-1,"menuId":114,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":154,"parentId":-1,"menuId":114,"name":"状态","title":"状态","types":"status","description":"","status":1,"children":null},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","title":"级别设置","types":"level","description":"","status":1,"children":null}],"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":367,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":150,"parentId":-1,"menuId":115,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":368,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":183,"parentId":-1,"menuId":131,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":185,"parentId":-1,"menuId":131,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":186,"parentId":-1,"menuId":131,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":[{"id":318,"menuApiId":401,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":17,"parentId":-1,"menuId":15,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":19,"parentId":-1,"menuId":15,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":21,"parentId":-1,"menuId":15,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","title":"修改用户状态","types":"change-status","description":"","status":1,"children":null}],"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":161,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":25,"parentId":-1,"menuId":13,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":26,"parentId":-1,"menuId":13,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":252,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":33,"parentId":-1,"menuId":12,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":34,"parentId":-1,"menuId":12,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":180,"menuApiId":257,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":36,"parentId":-1,"menuId":14,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":38,"parentId":-1,"menuId":14,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":184,"menuApiId":263,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":39,"parentId":-1,"menuId":10,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":41,"parentId":-1,"menuId":10,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":189,"menuApiId":268,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":163,"parentId":-1,"menuId":119,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":165,"parentId":-1,"menuId":119,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":168,"parentId":165,"menuId":119,"name":"开启","title":"开启","types":"on","description":"","status":1,"children":null},{"id":169,"parentId":165,"menuId":119,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]},{"id":166,"parentId":-1,"menuId":119,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":167,"parentId":-1,"menuId":119,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":391,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"button":null,"column":null,"api":null,"children":null},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":275,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":48,"parentId":-1,"menuId":110,"name":"启用","title":"启用","types":"start","description":"","status":1,"children":null},{"id":49,"parentId":-1,"menuId":110,"name":"停用","title":"停用","types":"stop","description":"","status":1,"children":null},{"id":190,"parentId":-1,"menuId":110,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":191,"parentId":-1,"menuId":110,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","title":"通信方式","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:03:40","children":null},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","title":"功能类型","code":"handleType","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:04:08","children":null}],"api":[{"id":205,"menuApiId":284,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":44,"parentId":-1,"menuId":18,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":276,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":45,"parentId":-1,"menuId":49,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":200,"menuApiId":279,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":47,"parentId":-1,"menuId":50,"name":"强退","title":"强退","types":"out","description":"","status":1,"children":null}],"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":282,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":189,"parentId":-1,"menuId":133,"name":"保存","title":"保存","types":"save","description":"","status":1,"children":null}],"column":null,"api":[{"id":321,"menuApiId":409,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0}],"children":null},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":51,"parentId":-1,"menuId":2,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":109,"parentId":-1,"menuId":2,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":110,"parentId":-1,"menuId":2,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","title":"按钮权限","types":"btn","description":"","status":1,"children":null},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","title":"列表权限","types":"list","description":"","status":1,"children":null}]}],"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":208,"menuApiId":287,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":113,"parentId":-1,"menuId":16,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":114,"parentId":-1,"menuId":16,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":255,"menuApiId":331,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":132,"parentId":-1,"menuId":85,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":134,"parentId":-1,"menuId":85,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":326,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0}],"children":null},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":125,"parentId":-1,"menuId":46,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":127,"parentId":-1,"menuId":46,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","title":"执行一次","types":"do","description":"","status":1,"children":null}],"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":278,"menuApiId":352,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":116,"parentId":-1,"menuId":21,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":118,"parentId":-1,"menuId":21,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":264,"menuApiId":339,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":119,"parentId":-1,"menuId":22,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":121,"parentId":-1,"menuId":22,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":271,"menuApiId":345,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":50,"parentId":-1,"menuId":32,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":123,"parentId":-1,"menuId":32,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":124,"parentId":-1,"menuId":32,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":385,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":28,"parentId":-1,"menuId":37,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":31,"parentId":-1,"menuId":37,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":32,"parentId":-1,"menuId":37,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":147,"parentId":-1,"menuId":37,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":148,"parentId":-1,"menuId":37,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":168,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":78,"parentId":-1,"menuId":39,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":81,"parentId":-1,"menuId":39,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":82,"parentId":-1,"menuId":39,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","title":"设置聚合","types":"juhe","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":161,"menuApiId":238,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":84,"parentId":-1,"menuId":61,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":86,"parentId":-1,"menuId":61,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","title":"发布与停止","types":"pro-status","description":"","status":1,"children":null}],"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":219,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":88,"parentId":-1,"menuId":64,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":91,"parentId":-1,"menuId":64,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":243,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0}],"children":null}]},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":129,"parentId":-1,"menuId":48,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":131,"parentId":-1,"menuId":48,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":360,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-9442880f3cdff9777008ac536850b628 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966140807 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966140808 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966140809 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966140810 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966140811 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966140812 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-baa38e76f7ff350a62dd0a458f126b4d -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4yMzMiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMiAxNjo0NzoxNyIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAyIDE2OjQ3OjE2IiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkwOTgyMzA1LCJuYmYiOjE2OTA5NjYwOTV9.EIrVB3GCttrfqMF5NxrYIJ_iK6aoUYVJ304es1_V7tA","uuId":"3754f6e14032839e9ebebefb0c756110"} -$4 -PXAT -$13 -1690982305861 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966165884 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966165886 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -$1032 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImFkZHJlc3MiOiLlm5vlt53nnIHmiJDpg73luILpnZLnvorljLrkuJzln47moLnljZfooZc2OOWPt-mZoiIsImF2YXRhciI6Imh0dHBzOi8vemhneS5zYWdvby5jbi9iYXNlLWFwaS91cGxvYWRfZmlsZS8yMDIzLTAzLTI4L2NyaHFobGhzcWQzOWtiZGZxdC5wbmciLCJiaXJ0aGRheSI6IiIsImNyZWF0ZUJ5IjoxLCJjcmVhdGVkQXQiOiIyMDIyLTA4LTAzIDIxOjMzOjMwIiwiZGVsZXRlZEF0IjoiIiwiZGVsZXRlZEJ5IjowLCJkZXB0SWQiOjYsImRlc2NyaWJlIjoi5aSn5a625aW977yM5oiR5pivYWRtaW7jgIIiLCJpZCI6MSwiaXNBZG1pbiI6MSwiaXNEZWxldGVkIjowLCJsYXN0TG9naW5JcCI6Ijo6MSIsImxhc3RMb2dpblRpbWUiOiIyMDIzLTA2LTIwIDExOjMzOjMxIiwibW9iaWxlIjoiMTU1MTY1NjcxOTIiLCJyZW1hcmsiOiIiLCJzZXgiOjIsInN0YXR1cyI6MSwidXBkYXRlQnkiOjEsInVwZGF0ZWRBdCI6IjIwMjMtMDYtMjAgMTE6MzQ6NDAiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInVzZXJOYW1lIjoiYWRtaW4iLCJ1c2VyTmlja25hbWUiOiLotoXnuqfnrqHnkIblkZgiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyVHlwZXMiOiIxIn0sImV4cCI6MTY5MDk4MjMyOCwibmJmIjoxNjkwOTY2MDI2fQ.LYhPz_PfBu5bA7wt0cva9PFkqapn-7mvYmkv-MMWDNs","uuId":"e4eabc4c213f7033ffe5e15bf14a7a50"} -$4 -PXAT -$13 -1690982328282 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966201683 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966201685 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966201686 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966201687 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966201689 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966201690 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966350295 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966350297 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966459385 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966459387 -*3 -$3 -SET -$16 -SagooIOT_sysMenu -$39678 -[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:53:23","updatedBy":1,"updatedAt":"2022-12-09 23:58:36","deletedBy":0,"deletedAt":""},{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-07 23:31:31","updatedBy":1,"updatedAt":"2022-11-28 10:19:28","deletedBy":0,"deletedAt":""},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 04:51:33","updatedBy":1,"updatedAt":"2022-12-09 23:58:43","deletedBy":0,"deletedAt":""},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 20:49:57","updatedBy":1,"updatedAt":"2022-12-09 23:58:50","deletedBy":0,"deletedAt":""},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:52:35","updatedBy":1,"updatedAt":"2022-12-09 23:58:58","deletedBy":0,"deletedAt":""},{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-08 21:27:01","updatedBy":0,"updatedAt":"2023-04-08 21:27:01","deletedBy":0,"deletedAt":""},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 15:44:01","updatedBy":1,"updatedAt":"2022-12-08 23:04:17","deletedBy":0,"deletedAt":""},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:42:40","updatedBy":1,"updatedAt":"2023-05-22 21:44:16","deletedBy":0,"deletedAt":""},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-30 02:53:26","updatedBy":1,"updatedAt":"2022-12-09 23:40:36","deletedBy":0,"deletedAt":""},{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 09:09:30","updatedBy":1,"updatedAt":"2022-12-08 23:04:35","deletedBy":0,"deletedAt":""},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 20:48:36","updatedBy":1,"updatedAt":"2023-04-16 19:32:43","deletedBy":0,"deletedAt":""},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 06:20:26","updatedBy":1,"updatedAt":"2022-12-09 23:48:28","deletedBy":0,"deletedAt":""},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-08 23:11:42","updatedBy":1,"updatedAt":"2022-10-09 07:15:53","deletedBy":0,"deletedAt":""},{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 10:26:43","updatedBy":1,"updatedAt":"2023-02-09 21:49:18","deletedBy":0,"deletedAt":""},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:06:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:21","deletedBy":0,"deletedAt":""},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 06:50:33","updatedBy":1,"updatedAt":"2023-02-09 21:49:27","deletedBy":0,"deletedAt":""},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 07:54:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:57","deletedBy":0,"deletedAt":""},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:57:26","updatedBy":1,"updatedAt":"2022-12-09 23:51:54","deletedBy":0,"deletedAt":""},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-09 11:15:21","updatedBy":1,"updatedAt":"2023-02-09 21:49:38","deletedBy":0,"deletedAt":""},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-11 17:14:19","updatedBy":0,"updatedAt":"2022-10-11 17:14:19","deletedBy":0,"deletedAt":""},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:24","updatedBy":1,"updatedAt":"2022-12-08 23:04:43","deletedBy":0,"deletedAt":""},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-28 17:01:38","updatedBy":1,"updatedAt":"2023-02-09 21:49:47","deletedBy":0,"deletedAt":""},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 22:13:54","updatedBy":1,"updatedAt":"2022-12-09 23:57:48","deletedBy":0,"deletedAt":""},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 06:59:54","updatedBy":1,"updatedAt":"2022-12-09 23:59:06","deletedBy":0,"deletedAt":""},{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://192.168.10.233:8166/#/square-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 16:13:33","updatedBy":1,"updatedAt":"2023-08-02 16:53:19","deletedBy":0,"deletedAt":""},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-05 06:15:26","updatedBy":1,"updatedAt":"2022-12-10 00:01:38","deletedBy":0,"deletedAt":""},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:40:07","updatedBy":1,"updatedAt":"2022-12-09 23:51:23","deletedBy":0,"deletedAt":""},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:54:55","updatedBy":1,"updatedAt":"2022-12-10 00:01:45","deletedBy":0,"deletedAt":""},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-20 23:40:21","updatedBy":1,"updatedAt":"2023-03-20 23:45:02","deletedBy":0,"deletedAt":""},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:11:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:44","deletedBy":0,"deletedAt":""},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:08:47","updatedBy":1,"updatedAt":"2022-12-09 23:50:36","deletedBy":0,"deletedAt":""},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-25 18:41:55","updatedBy":1,"updatedAt":"2022-12-10 00:11:45","deletedBy":0,"deletedAt":""},{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-21 12:50:32","updatedBy":1,"updatedAt":"2022-12-08 22:57:15","deletedBy":0,"deletedAt":""},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 12:31:06","updatedBy":1,"updatedAt":"2023-06-05 07:08:02","deletedBy":0,"deletedAt":""},{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-10 09:16:37","updatedBy":1,"updatedAt":"2022-12-09 23:57:32","deletedBy":0,"deletedAt":""},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-12 11:50:16","updatedBy":1,"updatedAt":"2022-12-08 22:57:30","deletedBy":0,"deletedAt":""},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-11 07:50:06","updatedBy":1,"updatedAt":"2022-12-09 23:54:21","deletedBy":0,"deletedAt":""},{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:24","updatedBy":1,"updatedAt":"2022-12-09 23:54:34","deletedBy":0,"deletedAt":""},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:33:09","updatedBy":1,"updatedAt":"2022-12-09 23:54:42","deletedBy":0,"deletedAt":""},{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 05:59:08","updatedBy":1,"updatedAt":"2022-12-09 23:53:00","deletedBy":0,"deletedAt":""},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-14 22:01:07","updatedBy":1,"updatedAt":"2022-12-09 23:53:07","deletedBy":0,"deletedAt":""},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-29 08:23:03","updatedBy":1,"updatedAt":"2023-01-29 08:24:17","deletedBy":0,"deletedAt":""},{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:08:05","updatedBy":1,"updatedAt":"2023-03-02 13:11:39","deletedBy":0,"deletedAt":""},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:16:40","updatedBy":1,"updatedAt":"2023-03-02 13:11:55","deletedBy":0,"deletedAt":""},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-02 13:10:46","updatedBy":1,"updatedAt":"2023-03-02 13:17:21","deletedBy":0,"deletedAt":""},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:05:48","updatedBy":1,"updatedAt":"2023-04-06 21:39:21","deletedBy":0,"deletedAt":""},{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:08:29","updatedBy":1,"updatedAt":"2023-04-09 20:49:11","deletedBy":0,"deletedAt":""},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-14 22:59:56","updatedBy":1,"updatedAt":"2023-04-14 23:27:00","deletedBy":0,"deletedAt":""},{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:44:01","updatedBy":0,"updatedAt":"2023-05-22 21:44:01","deletedBy":0,"deletedAt":""},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 11:45:53","updatedBy":1,"updatedAt":"2023-06-05 07:07:43","deletedBy":0,"deletedAt":""},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 05:59:18","updatedBy":1,"updatedAt":"2022-12-10 00:11:30","deletedBy":0,"deletedAt":""},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 14:53:36","updatedBy":1,"updatedAt":"2022-12-10 00:00:39","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 22:55:17","updatedBy":1,"updatedAt":"2022-12-09 23:59:48","deletedBy":0,"deletedAt":""},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 07:01:59","updatedBy":1,"updatedAt":"2022-12-09 23:59:57","deletedBy":0,"deletedAt":""},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 15:04:21","updatedBy":1,"updatedAt":"2022-12-10 00:02:00","deletedBy":0,"deletedAt":""},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 02:21:34","updatedBy":1,"updatedAt":"2022-12-10 00:02:25","deletedBy":0,"deletedAt":""},{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 15:44:43","updatedBy":1,"updatedAt":"2022-12-09 23:49:20","deletedBy":0,"deletedAt":""},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 08:02:39","updatedBy":1,"updatedAt":"2022-12-10 00:03:36","deletedBy":0,"deletedAt":""},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:11:36","updatedBy":1,"updatedAt":"2022-12-09 23:51:38","deletedBy":0,"deletedAt":""},{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 16:57:23","updatedBy":1,"updatedAt":"2022-12-10 00:04:05","deletedBy":0,"deletedAt":""},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:10:38","updatedBy":1,"updatedAt":"2022-12-08 23:04:50","deletedBy":0,"deletedAt":""},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:36","updatedBy":1,"updatedAt":"2022-12-10 00:04:16","deletedBy":0,"deletedAt":""},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:54:33","updatedBy":1,"updatedAt":"2022-12-10 00:04:23","deletedBy":0,"deletedAt":""},{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 21:01:00","updatedBy":1,"updatedAt":"2022-12-09 23:52:18","deletedBy":0,"deletedAt":""},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 05:02:15","updatedBy":1,"updatedAt":"2022-12-09 23:52:33","deletedBy":0,"deletedAt":""},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 21:20:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:00","deletedBy":0,"deletedAt":""},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:48:19","updatedBy":1,"updatedAt":"2022-12-09 23:43:55","deletedBy":0,"deletedAt":""},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 06:43:34","updatedBy":1,"updatedAt":"2022-12-10 00:11:38","deletedBy":0,"deletedAt":""},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-14 20:25:37","updatedBy":1,"updatedAt":"2022-12-10 00:00:50","deletedBy":0,"deletedAt":""},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-15 06:40:43","updatedBy":1,"updatedAt":"2022-12-10 00:00:58","deletedBy":0,"deletedAt":""},{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 12:12:59","updatedBy":1,"updatedAt":"2022-12-08 23:09:21","deletedBy":0,"deletedAt":""},{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 21:33:48","updatedBy":1,"updatedAt":"2022-12-08 23:10:27","deletedBy":0,"deletedAt":""},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 07:30:33","updatedBy":1,"updatedAt":"2022-12-10 00:05:11","deletedBy":0,"deletedAt":""},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 19:37:24","updatedBy":1,"updatedAt":"2022-12-10 00:05:52","deletedBy":0,"deletedAt":""},{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-31 02:55:36","updatedBy":1,"updatedAt":"2022-12-09 23:40:55","deletedBy":0,"deletedAt":""},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-01 07:05:44","updatedBy":1,"updatedAt":"2022-12-09 23:43:40","deletedBy":0,"deletedAt":""},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 18:10:41","updatedBy":1,"updatedAt":"2022-12-09 23:43:48","deletedBy":0,"deletedAt":""},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 02:31:20","updatedBy":1,"updatedAt":"2022-12-09 23:41:05","deletedBy":0,"deletedAt":""},{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-05 10:36:11","updatedBy":1,"updatedAt":"2022-12-09 23:46:49","deletedBy":0,"deletedAt":""},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 16:21:10","updatedBy":1,"updatedAt":"2022-12-09 23:46:56","deletedBy":0,"deletedAt":""},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:46:52","updatedBy":1,"updatedAt":"2022-12-09 23:47:02","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -*2 -$3 -DEL -$24 -SagooIOT_userAuthorize_1 -*2 -$3 -DEL -$19 -SagooIOT_userInfo_1 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966468060 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966468062 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966468064 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966468067 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966468075 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966468076 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-9783e825a08de953831c06f98bafc23a -$917 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxMCwidXNlck5hbWUiOiJkZW1vIiwidXNlclR5cGVzIjoic3lzdGVtIiwibW9iaWxlIjoiMTg3MTExMTExMTEiLCJ1c2VyTmlja25hbWUiOiJhZG1pbiIsImJpcnRoZGF5IjoiIiwidXNlclBhc3N3b3JkIjoiIiwidXNlclNhbHQiOiJrNWpqakIzVlU4IiwidXNlckVtYWlsIjoiIiwic2V4IjowLCJhdmF0YXIiOiJodHRwczovL3poZ3kuc2Fnb28uY24vYmFzZS1hcGkvdXBsb2FkX2ZpbGUvMjAyMy0wNS0xOS9jc3E1OXIyZW9yb2VvNXRjb3kucG5nIiwiZGVwdElkIjozLCJyZW1hcmsiOiIiLCJpc0FkbWluIjoxLCJhZGRyZXNzIjoiIiwiZGVzY3JpYmUiOiIiLCJsYXN0TG9naW5JcCI6IjE5Mi4xNjguMTAuMTMxIiwibGFzdExvZ2luVGltZSI6IjIwMjMtMDgtMDIgMTY6NDA6MTYiLCJzdGF0dXMiOjEsImlzRGVsZXRlZCI6MCwiY3JlYXRlQnkiOjEsImNyZWF0ZWRBdCI6IjIwMjItMTEtMDMgMDA6MTk6NTAiLCJ1cGRhdGVCeSI6MTAsInVwZGF0ZWRBdCI6IjIwMjMtMDgtMDIgMTY6NDA6MTYiLCJkZWxldGVkQnkiOjAsImRlbGV0ZWRBdCI6IiJ9LCJleHAiOjE2OTA5ODI2MTQsIm5iZiI6MTY5MDk2NjQwNH0.PULeSahk1rhVuxLmfW8ZxX9VaUW6snfvfTam6mbiTRA","uuId":"9bbe1740fbd1985628be3840239f47e8"} -$4 -PXAT -$13 -1690982614070 -*5 -$3 -SET -$20 -SagooIOT_userInfo_10 -$484 -{"id":10,"userName":"demo","userTypes":"system","mobile":"18711111111","userNickname":"admin","birthday":"","userEmail":"","sex":0,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-05-19/csq59r2eoroeo5tcoy.png","deptId":3,"remark":"","isAdmin":1,"address":"","describe":"","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-02 16:53:34","status":1,"createBy":1,"createdAt":"2022-11-03 00:19:50","updateBy":10,"updatedAt":"2023-08-02 16:53:34","roleIds":[7],"postIds":[5]} -$4 -PXAT -$13 -1690970014091 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.column.switch -$286 -{"configId":25,"configName":"列表开关","configKey":"sys.column.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:09:18","updateBy":10,"updatedAt":"2023-04-10 13:24:48","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966474098 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.button.switch -$286 -{"configId":26,"configName":"按钮开关","configKey":"sys.button.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:10:36","updateBy":10,"updatedAt":"2023-04-10 13:24:45","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966474101 -*3 -$3 -SET -$25 -SagooIOT_userAuthorize_10 -$87444 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":0,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0},{"id":56,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的风力图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getWindpowerEchartById","remark":"","status":1,"sort":0},{"id":57,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的温度图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getTemperatureEchartById","remark":"","status":1,"sort":0},{"id":58,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的天气","types":2,"method":"","address":"/api/v1/envirotronics/weather/getInfoById","remark":"","status":1,"sort":0},{"id":238,"menuApiId":0,"parentId":237,"name":"城市-风力-日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList2","remark":"","status":1,"sort":0}],"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":0,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":0,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0},{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0},{"id":102,"menuApiId":0,"parentId":90,"name":"产品:列表","types":2,"method":"","address":"/api/v1/product/list","remark":"","status":1,"sort":0},{"id":103,"menuApiId":0,"parentId":90,"name":"产品:详情","types":2,"method":"","address":"/api/v1/product/detail","remark":"","status":1,"sort":0},{"id":104,"menuApiId":0,"parentId":90,"name":"产品:详情,按key查询","types":2,"method":"","address":"/api/v1/product/get","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null}],"api":[{"id":117,"menuApiId":0,"parentId":90,"name":"设备:搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/device/page_list","remark":"","status":1,"sort":0},{"id":118,"menuApiId":0,"parentId":90,"name":"设备:详情","types":2,"method":"","address":"/api/v1/product/device/detail","remark":"","status":1,"sort":0},{"id":119,"menuApiId":0,"parentId":90,"name":"设备:详情,按key查询","types":2,"method":"","address":"/api/v1/product/device/get","remark":"","status":1,"sort":0},{"id":122,"menuApiId":0,"parentId":90,"name":"数据类型:列表","types":2,"method":"","address":"/api/v1/product/tsl/data_type","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":112,"menuApiId":0,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0},{"id":113,"menuApiId":0,"parentId":90,"name":"设备:运行状态","types":2,"method":"","address":"/api/v1/product/device/run_status","remark":"","status":1,"sort":0},{"id":114,"menuApiId":0,"parentId":90,"name":"设备:获取指定属性值","types":2,"method":"","address":"/api/v1/product/device/property/get","remark":"","status":1,"sort":0},{"id":115,"menuApiId":0,"parentId":90,"name":"设备:属性详情列表","types":2,"method":"","address":"/api/v1/product/device/property/list","remark":"","status":1,"sort":0},{"id":116,"menuApiId":0,"parentId":90,"name":"设备:已发布产品设备列表","types":2,"method":"","address":"/api/v1/product/device/list","remark":"","status":1,"sort":0},{"id":120,"menuApiId":0,"parentId":90,"name":"日志:类型列表","types":2,"method":"","address":"/api/v1/product/log/type","remark":"","status":1,"sort":0},{"id":121,"menuApiId":0,"parentId":90,"name":"日志:搜索","types":2,"method":"","address":"/api/v1/product/log/search","remark":"","status":1,"sort":0},{"id":126,"menuApiId":0,"parentId":90,"name":"属性:列表","types":2,"method":"","address":"/api/v1/product/tsl/property/list","remark":"","status":1,"sort":0},{"id":127,"menuApiId":0,"parentId":90,"name":"属性:所有属性列表","types":2,"method":"","address":"/api/v1/product/tsl/property/all","remark":"","status":1,"sort":0},{"id":131,"menuApiId":0,"parentId":90,"name":"功能:列表","types":2,"method":"","address":"/api/v1/product/tsl/function/list","remark":"","status":1,"sort":0},{"id":135,"menuApiId":0,"parentId":90,"name":"事件:列表","types":2,"method":"","address":"/api/v1/product/tsl/event/list","remark":"","status":1,"sort":0},{"id":139,"menuApiId":0,"parentId":90,"name":"标签:列表","types":2,"method":"","address":"/api/v1/product/tsl/tag/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0},{"id":242,"menuApiId":0,"parentId":239,"name":"通道详情","types":2,"method":"","address":"/api/v1/network/tunnel/get","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0},{"id":245,"menuApiId":0,"parentId":239,"name":"服务器详情","types":2,"method":"","address":"/api/v1/network/get","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":62,"menuApiId":0,"parentId":90,"name":"获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getList","remark":"","status":1,"sort":0},{"id":66,"menuApiId":0,"parentId":90,"name":"根据文件夹ID获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoByFolderId","remark":"","status":1,"sort":0},{"id":67,"menuApiId":0,"parentId":90,"name":"根据ID获取拓扑图信息","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoById","remark":"","status":1,"sort":0},{"id":72,"menuApiId":0,"parentId":90,"name":"根据ID获取文件夹","types":2,"method":"","address":"/api/v1/configure/folder/getInfoById","remark":"","status":1,"sort":0},{"id":73,"menuApiId":0,"parentId":90,"name":"获取文件夹列表","types":2,"method":"","address":"/api/v1/configure/folder/list","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":0,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0},{"id":78,"menuApiId":0,"parentId":90,"name":"获取项目数据","types":2,"method":"","address":"/api/v1/screen/project/getData","remark":"","status":1,"sort":0},{"id":79,"menuApiId":0,"parentId":90,"name":"根据ID获取大屏项目","types":2,"method":"","address":"/api/v1/screen/project/getProjectById","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://192.168.10.233:8166/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":295,"menuApiId":0,"parentId":293,"name":"告警级别:配置","types":2,"method":"","address":"/api/v1/alarm/level/edit","remark":"","status":1,"sort":0},{"id":296,"menuApiId":0,"parentId":293,"name":"告警规则:操作符列表","types":2,"method":"","address":"/api/v1/alarm/rule/operator","remark":"","status":1,"sort":0},{"id":297,"menuApiId":0,"parentId":293,"name":"告警规则:触发类型列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_type","remark":"","status":1,"sort":0},{"id":298,"menuApiId":0,"parentId":293,"name":"告警规则:触发条件参数列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_param","remark":"","status":1,"sort":0},{"id":299,"menuApiId":0,"parentId":293,"name":"告警规则:详情","types":2,"method":"","address":"/api/v1/alarm/rule/detail","remark":"","status":1,"sort":0},{"id":300,"menuApiId":0,"parentId":293,"name":"告警规则:列表","types":2,"method":"","address":"/api/v1/alarm/rule/list","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":306,"menuApiId":0,"parentId":293,"name":"告警日志:详情","types":2,"method":"","address":"/api/v1/alarm/log/detail","remark":"","status":1,"sort":0},{"id":307,"menuApiId":0,"parentId":293,"name":"告警日志:列表","types":2,"method":"","address":"/api/v1/alarm/log/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":null,"children":null}]}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":0,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0},{"id":87,"menuApiId":0,"parentId":90,"name":"根据ID获取用户","types":2,"method":"","address":"/api/v1/system/user/getInfoById","remark":"","status":1,"sort":0},{"id":88,"menuApiId":0,"parentId":90,"name":"所有用户列表","types":2,"method":"","address":"/api/v1/system/user/getAll","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":0,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0},{"id":178,"menuApiId":0,"parentId":90,"name":"根据ID获取组织详情","types":2,"method":"","address":"/api/v1/system/organization/detail","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":182,"menuApiId":0,"parentId":90,"name":"根据ID获取部门详情","types":2,"method":"","address":"/api/v1/system/dept/detail","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":186,"menuApiId":0,"parentId":90,"name":"根据ID获取岗位详情","types":2,"method":"","address":"/api/v1/system/post/detail","remark":"","status":1,"sort":0},{"id":188,"menuApiId":0,"parentId":90,"name":"获取岗位列表","types":2,"method":"","address":"/api/v1/system/post/tree","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":193,"menuApiId":0,"parentId":90,"name":"根据ID获取权限信息","types":2,"method":"","address":"/api/v1/system/role/getAuthorizeById","remark":"","status":1,"sort":0},{"id":194,"menuApiId":0,"parentId":90,"name":"根据ID获取角色","types":2,"method":"","address":"/api/v1/system/role/getInfoById","remark":"","status":1,"sort":0},{"id":195,"menuApiId":0,"parentId":90,"name":"角色树状列表","types":2,"method":"","address":"/api/v1/system/role/tree","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":0,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":211,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单按钮详情","types":2,"method":"","address":"/api/v1/system/menu/button/detail","remark":"","status":1,"sort":0},{"id":214,"menuApiId":0,"parentId":90,"name":"菜单与按钮树列表","types":2,"method":"","address":"/api/v1/system/menu/button/tree","remark":"","status":1,"sort":0},{"id":217,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单列表详情","types":2,"method":"","address":"/api/v1/system/menu/column/detail","remark":"","status":1,"sort":0},{"id":220,"menuApiId":0,"parentId":90,"name":"菜单与列表树列表","types":2,"method":"","address":"/api/v1/system/menu/column/tree","remark":"","status":1,"sort":0},{"id":222,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单详情","types":2,"method":"","address":"/api/v1/system/menu/detail","remark":"","status":1,"sort":0},{"id":224,"menuApiId":0,"parentId":90,"name":"菜单列表","types":2,"method":"","address":"/api/v1/system/menu/tree","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":260,"menuApiId":0,"parentId":254,"name":"获取系统参数","types":2,"method":"","address":"/api/v1/common/config/get","remark":"","status":1,"sort":0},{"id":261,"menuApiId":0,"parentId":254,"name":"系统参数列表","types":2,"method":"","address":"/api/v1/common/config/list","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":268,"menuApiId":0,"parentId":254,"name":"获取字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/get","remark":"","status":1,"sort":0},{"id":269,"menuApiId":0,"parentId":254,"name":"字典类型列表","types":2,"method":"","address":"/api/v1/common/dict/type/list","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":275,"menuApiId":0,"parentId":254,"name":"获取字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/get","remark":"","status":1,"sort":0},{"id":276,"menuApiId":0,"parentId":254,"name":"获取字典数据公共方法","types":2,"method":"","address":"/api/v1/common/dict/data/getDictData","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":0,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0},{"id":262,"menuApiId":0,"parentId":257,"name":"获取数据源信息","types":2,"method":"","address":"/assess/v1/datasetup/target","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":0,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0},{"id":146,"menuApiId":0,"parentId":90,"name":"设备数据源:获取设备数据","types":2,"method":"","address":"/api/v1/source/device/get","remark":"","status":1,"sort":0},{"id":149,"menuApiId":0,"parentId":90,"name":"API 数据源:获取api数据","types":2,"method":"","address":"/api/v1/source/api/get","remark":"","status":1,"sort":0},{"id":151,"menuApiId":0,"parentId":90,"name":"数据源:列表","types":2,"method":"","address":"/api/v1/source/list","remark":"","status":1,"sort":0},{"id":152,"menuApiId":0,"parentId":90,"name":"数据源:获取源数据记录","types":2,"method":"","address":"/api/v1/source/getdata","remark":"","status":1,"sort":0},{"id":272,"menuApiId":0,"parentId":270,"name":"数据源列表","types":2,"method":"","address":"/api/v1/source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":164,"menuApiId":0,"parentId":90,"name":"模型:搜索列表","types":2,"method":"","address":"/api/v1/source/template/search","remark":"","status":1,"sort":0},{"id":165,"menuApiId":0,"parentId":90,"name":"模型:已发布列表","types":2,"method":"","address":"/api/v1/source/template/list","remark":"","status":1,"sort":0},{"id":167,"menuApiId":0,"parentId":90,"name":"模型:获取模型数据记录","types":2,"method":"","address":"/api/v1/source/template/getdata","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0},{"id":143,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取数据","types":2,"method":"","address":"/api/v1/source/db/get","remark":"","status":1,"sort":0},{"id":153,"menuApiId":0,"parentId":90,"name":"数据源:详情","types":2,"method":"","address":"/api/v1/source/detail","remark":"","status":1,"sort":0},{"id":160,"menuApiId":0,"parentId":90,"name":"数据节点:列表","types":2,"method":"","address":"/api/v1/source/node/list","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":0,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0},{"id":174,"menuApiId":0,"parentId":90,"name":"节点:列表","types":2,"method":"","address":"/api/v1/source/template/node/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":281,"menuApiId":0,"parentId":254,"name":"根据ID获取任务","types":2,"method":"","address":"/api/v1/system/job/getJobById","remark":"","status":1,"sort":0},{"id":282,"menuApiId":0,"parentId":254,"name":"获取任务列表","types":2,"method":"","address":"/api/v1/system/job/list","remark":"","status":1,"sort":0}],"children":null},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":0,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0},{"id":289,"menuApiId":0,"parentId":254,"name":"根据ID获取Api详情","types":2,"method":"","address":"/api/v1/system/api/detail","remark":"","status":1,"sort":0},{"id":292,"menuApiId":0,"parentId":254,"name":"获取接口列表","types":2,"method":"","address":"/api/v1/system/api/tree","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":0,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0},{"id":253,"menuApiId":0,"parentId":248,"name":"获取城市详情","types":2,"method":"","address":"/api/v1/common/city/getInfoById","remark":"","status":1,"sort":0}],"children":null},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":0,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null}],"api":[{"id":205,"menuApiId":0,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0},{"id":206,"menuApiId":0,"parentId":90,"name":"获取插件列表","types":2,"method":"","address":"/api/v1/system/plugins/list","remark":"","status":1,"sort":0},{"id":207,"menuApiId":0,"parentId":90,"name":"设置插件状态","types":2,"method":"","address":"/api/v1/system/plugins/set","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":0,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0},{"id":199,"menuApiId":0,"parentId":90,"name":"根据ID获取访问日志详情","types":2,"method":"","address":"/api/v1/system/login/log/detail","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":201,"menuApiId":0,"parentId":90,"name":"根据ID获取操作日志详情","types":2,"method":"","address":"/api/v1/system/oper/log/detail","remark":"","status":1,"sort":0},{"id":202,"menuApiId":0,"parentId":90,"name":"操作日志列表","types":2,"method":"","address":"/api/v1/system/oper/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":0,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0},{"id":204,"menuApiId":0,"parentId":90,"name":"在线用户强退","types":2,"method":"","address":"/api/v1/system/userOnline/strongBack","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.column.switch -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.button.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-9783e825a08de953831c06f98bafc23a -*2 -$3 -DEL -$25 -SagooIOT_userAuthorize_10 -*2 -$3 -DEL -$20 -SagooIOT_userInfo_10 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966558534 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966558537 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966558539 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966558542 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966558545 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966558548 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4yMzMiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMiAxNjo0ODo0OCIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAyIDE2OjQ4OjQ4IiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkwOTgyNzExLCJuYmYiOjE2OTA5NjY1MDF9.DnWe2QOoLFd6djrfC6fHcCMRivaWG2bYprtJC81ETcg","uuId":"916be5b3449d161c710644c29ea60bc5"} -$4 -PXAT -$13 -1690982711967 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966571985 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966571987 -*5 -$3 -SET -$19 -SagooIOT_userInfo_1 -$581 -{"id":1,"userName":"admin","userTypes":"1","mobile":"15516567192","userNickname":"超级管理员","birthday":"","userEmail":"yxh669@qq.com1111","sex":2,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-03-28/crhqhlhsqd39kbdfqt.png","deptId":6,"remark":"","isAdmin":1,"address":"四川省成都市青羊区东城根南街68号院","describe":"大家好,我是admin。","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-02 16:55:12","status":1,"createBy":1,"createdAt":"2022-08-03 21:33:30","updateBy":1,"updatedAt":"2023-08-02 16:55:11","roleIds":[1],"postIds":[6]} -$4 -PXAT -$13 -1690970111993 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$24 -SagooIOT_userAuthorize_1 -$96491 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":116,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0}],"children":null},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":157,"parentId":-1,"menuId":92,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":390,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":10,"parentId":-1,"menuId":34,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":13,"parentId":-1,"menuId":34,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":14,"parentId":-1,"menuId":34,"name":"导入","title":"导入","types":"upload","description":"","status":1,"children":null},{"id":15,"parentId":-1,"menuId":34,"name":"导出","title":"导出","types":"dwonload","description":"","status":1,"children":null},{"id":196,"parentId":-1,"menuId":34,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":null},{"id":197,"parentId":-1,"menuId":34,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":131,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":94,"parentId":-1,"menuId":36,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":97,"parentId":-1,"menuId":36,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","title":"启用与停止","types":"status","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null},{"id":260,"parentId":-1,"menuId":36,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-17 21:18:50","children":null}],"api":[{"id":106,"menuApiId":183,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":192,"parentId":-1,"menuId":51,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","title":"批量绑定","types":"mutipleBind","description":"","status":1,"children":null}],"column":[{"id":261,"parentId":-1,"menuId":51,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:00","children":null},{"id":262,"parentId":-1,"menuId":51,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:15","children":null},{"id":263,"parentId":-1,"menuId":51,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:36","children":null},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:51","children":null},{"id":265,"parentId":-1,"menuId":51,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:06","children":null},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:35","children":null},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:55","children":null},{"id":268,"parentId":-1,"menuId":51,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:25:12","children":null}],"api":[{"id":112,"menuApiId":189,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":16,"parentId":-1,"menuId":35,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":93,"parentId":-1,"menuId":35,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":133,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":198,"parentId":-1,"menuId":136,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":200,"parentId":-1,"menuId":136,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":null,"api":null,"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":100,"parentId":-1,"menuId":66,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":105,"parentId":-1,"menuId":66,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":104,"parentId":105,"menuId":66,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":106,"parentId":105,"menuId":66,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":107,"parentId":105,"menuId":66,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":313,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":311,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":312,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":139,"parentId":-1,"menuId":70,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":140,"parentId":139,"menuId":70,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":141,"parentId":139,"menuId":70,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null},{"id":142,"parentId":139,"menuId":70,"name":"删除","title":"删除","types":"delete","description":"","status":1,"children":null}]},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":144,"parentId":-1,"menuId":70,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":319,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":320,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":321,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":64,"menuApiId":138,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":150,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":158,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":157,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://192.168.10.233:8166/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":158,"parentId":-1,"menuId":41,"name":"管理","title":"管理","types":"setting","description":"","status":1,"children":null},{"id":159,"parentId":-1,"menuId":41,"name":"配置","title":"配置","types":"edit","description":"","status":1,"children":null}],"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":161,"parentId":-1,"menuId":42,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":151,"parentId":-1,"menuId":114,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":153,"parentId":-1,"menuId":114,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":154,"parentId":-1,"menuId":114,"name":"状态","title":"状态","types":"status","description":"","status":1,"children":null},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","title":"级别设置","types":"level","description":"","status":1,"children":null}],"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":367,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":150,"parentId":-1,"menuId":115,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":368,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":183,"parentId":-1,"menuId":131,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":185,"parentId":-1,"menuId":131,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":186,"parentId":-1,"menuId":131,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":[{"id":318,"menuApiId":401,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":17,"parentId":-1,"menuId":15,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":19,"parentId":-1,"menuId":15,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":21,"parentId":-1,"menuId":15,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","title":"修改用户状态","types":"change-status","description":"","status":1,"children":null}],"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":161,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":25,"parentId":-1,"menuId":13,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":26,"parentId":-1,"menuId":13,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":252,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":33,"parentId":-1,"menuId":12,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":34,"parentId":-1,"menuId":12,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":180,"menuApiId":257,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":36,"parentId":-1,"menuId":14,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":38,"parentId":-1,"menuId":14,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":184,"menuApiId":263,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":39,"parentId":-1,"menuId":10,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":41,"parentId":-1,"menuId":10,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":189,"menuApiId":268,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":163,"parentId":-1,"menuId":119,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":165,"parentId":-1,"menuId":119,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":168,"parentId":165,"menuId":119,"name":"开启","title":"开启","types":"on","description":"","status":1,"children":null},{"id":169,"parentId":165,"menuId":119,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]},{"id":166,"parentId":-1,"menuId":119,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":167,"parentId":-1,"menuId":119,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":391,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"button":null,"column":null,"api":null,"children":null},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":275,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":48,"parentId":-1,"menuId":110,"name":"启用","title":"启用","types":"start","description":"","status":1,"children":null},{"id":49,"parentId":-1,"menuId":110,"name":"停用","title":"停用","types":"stop","description":"","status":1,"children":null},{"id":190,"parentId":-1,"menuId":110,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":191,"parentId":-1,"menuId":110,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","title":"通信方式","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:03:40","children":null},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","title":"功能类型","code":"handleType","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:04:08","children":null}],"api":[{"id":205,"menuApiId":284,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":44,"parentId":-1,"menuId":18,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":276,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":45,"parentId":-1,"menuId":49,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":200,"menuApiId":279,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":47,"parentId":-1,"menuId":50,"name":"强退","title":"强退","types":"out","description":"","status":1,"children":null}],"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":282,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":189,"parentId":-1,"menuId":133,"name":"保存","title":"保存","types":"save","description":"","status":1,"children":null}],"column":null,"api":[{"id":321,"menuApiId":409,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0}],"children":null},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":51,"parentId":-1,"menuId":2,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":109,"parentId":-1,"menuId":2,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":110,"parentId":-1,"menuId":2,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","title":"按钮权限","types":"btn","description":"","status":1,"children":null},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","title":"列表权限","types":"list","description":"","status":1,"children":null}]}],"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":208,"menuApiId":287,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":113,"parentId":-1,"menuId":16,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":114,"parentId":-1,"menuId":16,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":255,"menuApiId":331,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":132,"parentId":-1,"menuId":85,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":134,"parentId":-1,"menuId":85,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":326,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0}],"children":null},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":125,"parentId":-1,"menuId":46,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":127,"parentId":-1,"menuId":46,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","title":"执行一次","types":"do","description":"","status":1,"children":null}],"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":278,"menuApiId":352,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":116,"parentId":-1,"menuId":21,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":118,"parentId":-1,"menuId":21,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":264,"menuApiId":339,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":119,"parentId":-1,"menuId":22,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":121,"parentId":-1,"menuId":22,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":271,"menuApiId":345,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":50,"parentId":-1,"menuId":32,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":123,"parentId":-1,"menuId":32,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":124,"parentId":-1,"menuId":32,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":385,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":28,"parentId":-1,"menuId":37,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":31,"parentId":-1,"menuId":37,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":32,"parentId":-1,"menuId":37,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":147,"parentId":-1,"menuId":37,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":148,"parentId":-1,"menuId":37,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":168,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":78,"parentId":-1,"menuId":39,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":81,"parentId":-1,"menuId":39,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":82,"parentId":-1,"menuId":39,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","title":"设置聚合","types":"juhe","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":161,"menuApiId":238,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":84,"parentId":-1,"menuId":61,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":86,"parentId":-1,"menuId":61,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","title":"发布与停止","types":"pro-status","description":"","status":1,"children":null}],"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":219,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":88,"parentId":-1,"menuId":64,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":91,"parentId":-1,"menuId":64,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":243,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0}],"children":null}]},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":129,"parentId":-1,"menuId":48,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":131,"parentId":-1,"menuId":48,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":360,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$16 -SagooIOT_sysMenu -$39677 -[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:53:23","updatedBy":1,"updatedAt":"2022-12-09 23:58:36","deletedBy":0,"deletedAt":""},{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-07 23:31:31","updatedBy":1,"updatedAt":"2022-11-28 10:19:28","deletedBy":0,"deletedAt":""},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 04:51:33","updatedBy":1,"updatedAt":"2022-12-09 23:58:43","deletedBy":0,"deletedAt":""},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 20:49:57","updatedBy":1,"updatedAt":"2022-12-09 23:58:50","deletedBy":0,"deletedAt":""},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:52:35","updatedBy":1,"updatedAt":"2022-12-09 23:58:58","deletedBy":0,"deletedAt":""},{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-08 21:27:01","updatedBy":0,"updatedAt":"2023-04-08 21:27:01","deletedBy":0,"deletedAt":""},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 15:44:01","updatedBy":1,"updatedAt":"2022-12-08 23:04:17","deletedBy":0,"deletedAt":""},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:42:40","updatedBy":1,"updatedAt":"2023-05-22 21:44:16","deletedBy":0,"deletedAt":""},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-30 02:53:26","updatedBy":1,"updatedAt":"2022-12-09 23:40:36","deletedBy":0,"deletedAt":""},{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 09:09:30","updatedBy":1,"updatedAt":"2022-12-08 23:04:35","deletedBy":0,"deletedAt":""},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 20:48:36","updatedBy":1,"updatedAt":"2023-04-16 19:32:43","deletedBy":0,"deletedAt":""},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 06:20:26","updatedBy":1,"updatedAt":"2022-12-09 23:48:28","deletedBy":0,"deletedAt":""},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-08 23:11:42","updatedBy":1,"updatedAt":"2022-10-09 07:15:53","deletedBy":0,"deletedAt":""},{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 10:26:43","updatedBy":1,"updatedAt":"2023-02-09 21:49:18","deletedBy":0,"deletedAt":""},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:06:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:21","deletedBy":0,"deletedAt":""},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 06:50:33","updatedBy":1,"updatedAt":"2023-02-09 21:49:27","deletedBy":0,"deletedAt":""},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 07:54:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:57","deletedBy":0,"deletedAt":""},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:57:26","updatedBy":1,"updatedAt":"2022-12-09 23:51:54","deletedBy":0,"deletedAt":""},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-09 11:15:21","updatedBy":1,"updatedAt":"2023-02-09 21:49:38","deletedBy":0,"deletedAt":""},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-11 17:14:19","updatedBy":0,"updatedAt":"2022-10-11 17:14:19","deletedBy":0,"deletedAt":""},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:24","updatedBy":1,"updatedAt":"2022-12-08 23:04:43","deletedBy":0,"deletedAt":""},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-28 17:01:38","updatedBy":1,"updatedAt":"2023-02-09 21:49:47","deletedBy":0,"deletedAt":""},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 22:13:54","updatedBy":1,"updatedAt":"2022-12-09 23:57:48","deletedBy":0,"deletedAt":""},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 06:59:54","updatedBy":1,"updatedAt":"2022-12-09 23:59:06","deletedBy":0,"deletedAt":""},{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:8166/#/square-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 16:13:33","updatedBy":1,"updatedAt":"2023-08-02 16:55:37","deletedBy":0,"deletedAt":""},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-05 06:15:26","updatedBy":1,"updatedAt":"2022-12-10 00:01:38","deletedBy":0,"deletedAt":""},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:40:07","updatedBy":1,"updatedAt":"2022-12-09 23:51:23","deletedBy":0,"deletedAt":""},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:54:55","updatedBy":1,"updatedAt":"2022-12-10 00:01:45","deletedBy":0,"deletedAt":""},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-20 23:40:21","updatedBy":1,"updatedAt":"2023-03-20 23:45:02","deletedBy":0,"deletedAt":""},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:11:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:44","deletedBy":0,"deletedAt":""},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:08:47","updatedBy":1,"updatedAt":"2022-12-09 23:50:36","deletedBy":0,"deletedAt":""},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-25 18:41:55","updatedBy":1,"updatedAt":"2022-12-10 00:11:45","deletedBy":0,"deletedAt":""},{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-21 12:50:32","updatedBy":1,"updatedAt":"2022-12-08 22:57:15","deletedBy":0,"deletedAt":""},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 12:31:06","updatedBy":1,"updatedAt":"2023-06-05 07:08:02","deletedBy":0,"deletedAt":""},{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-10 09:16:37","updatedBy":1,"updatedAt":"2022-12-09 23:57:32","deletedBy":0,"deletedAt":""},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-12 11:50:16","updatedBy":1,"updatedAt":"2022-12-08 22:57:30","deletedBy":0,"deletedAt":""},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-11 07:50:06","updatedBy":1,"updatedAt":"2022-12-09 23:54:21","deletedBy":0,"deletedAt":""},{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:24","updatedBy":1,"updatedAt":"2022-12-09 23:54:34","deletedBy":0,"deletedAt":""},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:33:09","updatedBy":1,"updatedAt":"2022-12-09 23:54:42","deletedBy":0,"deletedAt":""},{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 05:59:08","updatedBy":1,"updatedAt":"2022-12-09 23:53:00","deletedBy":0,"deletedAt":""},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-14 22:01:07","updatedBy":1,"updatedAt":"2022-12-09 23:53:07","deletedBy":0,"deletedAt":""},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-29 08:23:03","updatedBy":1,"updatedAt":"2023-01-29 08:24:17","deletedBy":0,"deletedAt":""},{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:08:05","updatedBy":1,"updatedAt":"2023-03-02 13:11:39","deletedBy":0,"deletedAt":""},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:16:40","updatedBy":1,"updatedAt":"2023-03-02 13:11:55","deletedBy":0,"deletedAt":""},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-02 13:10:46","updatedBy":1,"updatedAt":"2023-03-02 13:17:21","deletedBy":0,"deletedAt":""},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:05:48","updatedBy":1,"updatedAt":"2023-04-06 21:39:21","deletedBy":0,"deletedAt":""},{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:08:29","updatedBy":1,"updatedAt":"2023-04-09 20:49:11","deletedBy":0,"deletedAt":""},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-14 22:59:56","updatedBy":1,"updatedAt":"2023-04-14 23:27:00","deletedBy":0,"deletedAt":""},{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:44:01","updatedBy":0,"updatedAt":"2023-05-22 21:44:01","deletedBy":0,"deletedAt":""},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 11:45:53","updatedBy":1,"updatedAt":"2023-06-05 07:07:43","deletedBy":0,"deletedAt":""},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 05:59:18","updatedBy":1,"updatedAt":"2022-12-10 00:11:30","deletedBy":0,"deletedAt":""},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 14:53:36","updatedBy":1,"updatedAt":"2022-12-10 00:00:39","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 22:55:17","updatedBy":1,"updatedAt":"2022-12-09 23:59:48","deletedBy":0,"deletedAt":""},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 07:01:59","updatedBy":1,"updatedAt":"2022-12-09 23:59:57","deletedBy":0,"deletedAt":""},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 15:04:21","updatedBy":1,"updatedAt":"2022-12-10 00:02:00","deletedBy":0,"deletedAt":""},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 02:21:34","updatedBy":1,"updatedAt":"2022-12-10 00:02:25","deletedBy":0,"deletedAt":""},{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 15:44:43","updatedBy":1,"updatedAt":"2022-12-09 23:49:20","deletedBy":0,"deletedAt":""},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 08:02:39","updatedBy":1,"updatedAt":"2022-12-10 00:03:36","deletedBy":0,"deletedAt":""},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:11:36","updatedBy":1,"updatedAt":"2022-12-09 23:51:38","deletedBy":0,"deletedAt":""},{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 16:57:23","updatedBy":1,"updatedAt":"2022-12-10 00:04:05","deletedBy":0,"deletedAt":""},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:10:38","updatedBy":1,"updatedAt":"2022-12-08 23:04:50","deletedBy":0,"deletedAt":""},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:36","updatedBy":1,"updatedAt":"2022-12-10 00:04:16","deletedBy":0,"deletedAt":""},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:54:33","updatedBy":1,"updatedAt":"2022-12-10 00:04:23","deletedBy":0,"deletedAt":""},{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 21:01:00","updatedBy":1,"updatedAt":"2022-12-09 23:52:18","deletedBy":0,"deletedAt":""},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 05:02:15","updatedBy":1,"updatedAt":"2022-12-09 23:52:33","deletedBy":0,"deletedAt":""},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 21:20:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:00","deletedBy":0,"deletedAt":""},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:48:19","updatedBy":1,"updatedAt":"2022-12-09 23:43:55","deletedBy":0,"deletedAt":""},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 06:43:34","updatedBy":1,"updatedAt":"2022-12-10 00:11:38","deletedBy":0,"deletedAt":""},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-14 20:25:37","updatedBy":1,"updatedAt":"2022-12-10 00:00:50","deletedBy":0,"deletedAt":""},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-15 06:40:43","updatedBy":1,"updatedAt":"2022-12-10 00:00:58","deletedBy":0,"deletedAt":""},{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 12:12:59","updatedBy":1,"updatedAt":"2022-12-08 23:09:21","deletedBy":0,"deletedAt":""},{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 21:33:48","updatedBy":1,"updatedAt":"2022-12-08 23:10:27","deletedBy":0,"deletedAt":""},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 07:30:33","updatedBy":1,"updatedAt":"2022-12-10 00:05:11","deletedBy":0,"deletedAt":""},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 19:37:24","updatedBy":1,"updatedAt":"2022-12-10 00:05:52","deletedBy":0,"deletedAt":""},{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-31 02:55:36","updatedBy":1,"updatedAt":"2022-12-09 23:40:55","deletedBy":0,"deletedAt":""},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-01 07:05:44","updatedBy":1,"updatedAt":"2022-12-09 23:43:40","deletedBy":0,"deletedAt":""},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 18:10:41","updatedBy":1,"updatedAt":"2022-12-09 23:43:48","deletedBy":0,"deletedAt":""},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 02:31:20","updatedBy":1,"updatedAt":"2022-12-09 23:41:05","deletedBy":0,"deletedAt":""},{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-05 10:36:11","updatedBy":1,"updatedAt":"2022-12-09 23:46:49","deletedBy":0,"deletedAt":""},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 16:21:10","updatedBy":1,"updatedAt":"2022-12-09 23:46:56","deletedBy":0,"deletedAt":""},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:46:52","updatedBy":1,"updatedAt":"2022-12-09 23:47:02","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -*2 -$3 -DEL -$24 -SagooIOT_userAuthorize_1 -*2 -$3 -DEL -$19 -SagooIOT_userInfo_1 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-9783e825a08de953831c06f98bafc23a -$917 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxMCwidXNlck5hbWUiOiJkZW1vIiwidXNlclR5cGVzIjoic3lzdGVtIiwibW9iaWxlIjoiMTg3MTExMTExMTEiLCJ1c2VyTmlja25hbWUiOiJhZG1pbiIsImJpcnRoZGF5IjoiIiwidXNlclBhc3N3b3JkIjoiIiwidXNlclNhbHQiOiJrNWpqakIzVlU4IiwidXNlckVtYWlsIjoiIiwic2V4IjowLCJhdmF0YXIiOiJodHRwczovL3poZ3kuc2Fnb28uY24vYmFzZS1hcGkvdXBsb2FkX2ZpbGUvMjAyMy0wNS0xOS9jc3E1OXIyZW9yb2VvNXRjb3kucG5nIiwiZGVwdElkIjozLCJyZW1hcmsiOiIiLCJpc0FkbWluIjoxLCJhZGRyZXNzIjoiIiwiZGVzY3JpYmUiOiIiLCJsYXN0TG9naW5JcCI6IjE5Mi4xNjguMTAuMjMzIiwibGFzdExvZ2luVGltZSI6IjIwMjMtMDgtMDIgMTY6NTM6MzQiLCJzdGF0dXMiOjEsImlzRGVsZXRlZCI6MCwiY3JlYXRlQnkiOjEsImNyZWF0ZWRBdCI6IjIwMjItMTEtMDMgMDA6MTk6NTAiLCJ1cGRhdGVCeSI6MTAsInVwZGF0ZWRBdCI6IjIwMjMtMDgtMDIgMTY6NTM6MzQiLCJkZWxldGVkQnkiOjAsImRlbGV0ZWRBdCI6IiJ9LCJleHAiOjE2OTA5ODI3NTYsIm5iZiI6MTY5MDk2NjU0Nn0.7nChkphnblaJYUsQJqDteo8n24j3IOPKvT4EetSF-qQ","uuId":"3d54a4c2bd1aca2ba293ad301407205f"} -$4 -PXAT -$13 -1690982756530 -*5 -$3 -SET -$20 -SagooIOT_userInfo_10 -$484 -{"id":10,"userName":"demo","userTypes":"system","mobile":"18711111111","userNickname":"admin","birthday":"","userEmail":"","sex":0,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-05-19/csq59r2eoroeo5tcoy.png","deptId":3,"remark":"","isAdmin":1,"address":"","describe":"","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-02 16:55:57","status":1,"createBy":1,"createdAt":"2022-11-03 00:19:50","updateBy":10,"updatedAt":"2023-08-02 16:55:56","roleIds":[7],"postIds":[5]} -$4 -PXAT -$13 -1690970156548 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.column.switch -$286 -{"configId":25,"configName":"列表开关","configKey":"sys.column.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:09:18","updateBy":10,"updatedAt":"2023-04-10 13:24:48","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966616553 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.button.switch -$286 -{"configId":26,"configName":"按钮开关","configKey":"sys.button.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:10:36","updateBy":10,"updatedAt":"2023-04-10 13:24:45","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966616554 -*3 -$3 -SET -$25 -SagooIOT_userAuthorize_10 -$87443 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":0,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0},{"id":56,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的风力图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getWindpowerEchartById","remark":"","status":1,"sort":0},{"id":57,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的温度图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getTemperatureEchartById","remark":"","status":1,"sort":0},{"id":58,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的天气","types":2,"method":"","address":"/api/v1/envirotronics/weather/getInfoById","remark":"","status":1,"sort":0},{"id":238,"menuApiId":0,"parentId":237,"name":"城市-风力-日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList2","remark":"","status":1,"sort":0}],"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":0,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":0,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0},{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0},{"id":102,"menuApiId":0,"parentId":90,"name":"产品:列表","types":2,"method":"","address":"/api/v1/product/list","remark":"","status":1,"sort":0},{"id":103,"menuApiId":0,"parentId":90,"name":"产品:详情","types":2,"method":"","address":"/api/v1/product/detail","remark":"","status":1,"sort":0},{"id":104,"menuApiId":0,"parentId":90,"name":"产品:详情,按key查询","types":2,"method":"","address":"/api/v1/product/get","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null}],"api":[{"id":117,"menuApiId":0,"parentId":90,"name":"设备:搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/device/page_list","remark":"","status":1,"sort":0},{"id":118,"menuApiId":0,"parentId":90,"name":"设备:详情","types":2,"method":"","address":"/api/v1/product/device/detail","remark":"","status":1,"sort":0},{"id":119,"menuApiId":0,"parentId":90,"name":"设备:详情,按key查询","types":2,"method":"","address":"/api/v1/product/device/get","remark":"","status":1,"sort":0},{"id":122,"menuApiId":0,"parentId":90,"name":"数据类型:列表","types":2,"method":"","address":"/api/v1/product/tsl/data_type","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":112,"menuApiId":0,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0},{"id":113,"menuApiId":0,"parentId":90,"name":"设备:运行状态","types":2,"method":"","address":"/api/v1/product/device/run_status","remark":"","status":1,"sort":0},{"id":114,"menuApiId":0,"parentId":90,"name":"设备:获取指定属性值","types":2,"method":"","address":"/api/v1/product/device/property/get","remark":"","status":1,"sort":0},{"id":115,"menuApiId":0,"parentId":90,"name":"设备:属性详情列表","types":2,"method":"","address":"/api/v1/product/device/property/list","remark":"","status":1,"sort":0},{"id":116,"menuApiId":0,"parentId":90,"name":"设备:已发布产品设备列表","types":2,"method":"","address":"/api/v1/product/device/list","remark":"","status":1,"sort":0},{"id":120,"menuApiId":0,"parentId":90,"name":"日志:类型列表","types":2,"method":"","address":"/api/v1/product/log/type","remark":"","status":1,"sort":0},{"id":121,"menuApiId":0,"parentId":90,"name":"日志:搜索","types":2,"method":"","address":"/api/v1/product/log/search","remark":"","status":1,"sort":0},{"id":126,"menuApiId":0,"parentId":90,"name":"属性:列表","types":2,"method":"","address":"/api/v1/product/tsl/property/list","remark":"","status":1,"sort":0},{"id":127,"menuApiId":0,"parentId":90,"name":"属性:所有属性列表","types":2,"method":"","address":"/api/v1/product/tsl/property/all","remark":"","status":1,"sort":0},{"id":131,"menuApiId":0,"parentId":90,"name":"功能:列表","types":2,"method":"","address":"/api/v1/product/tsl/function/list","remark":"","status":1,"sort":0},{"id":135,"menuApiId":0,"parentId":90,"name":"事件:列表","types":2,"method":"","address":"/api/v1/product/tsl/event/list","remark":"","status":1,"sort":0},{"id":139,"menuApiId":0,"parentId":90,"name":"标签:列表","types":2,"method":"","address":"/api/v1/product/tsl/tag/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0},{"id":242,"menuApiId":0,"parentId":239,"name":"通道详情","types":2,"method":"","address":"/api/v1/network/tunnel/get","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0},{"id":245,"menuApiId":0,"parentId":239,"name":"服务器详情","types":2,"method":"","address":"/api/v1/network/get","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":62,"menuApiId":0,"parentId":90,"name":"获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getList","remark":"","status":1,"sort":0},{"id":66,"menuApiId":0,"parentId":90,"name":"根据文件夹ID获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoByFolderId","remark":"","status":1,"sort":0},{"id":67,"menuApiId":0,"parentId":90,"name":"根据ID获取拓扑图信息","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoById","remark":"","status":1,"sort":0},{"id":72,"menuApiId":0,"parentId":90,"name":"根据ID获取文件夹","types":2,"method":"","address":"/api/v1/configure/folder/getInfoById","remark":"","status":1,"sort":0},{"id":73,"menuApiId":0,"parentId":90,"name":"获取文件夹列表","types":2,"method":"","address":"/api/v1/configure/folder/list","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":0,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0},{"id":78,"menuApiId":0,"parentId":90,"name":"获取项目数据","types":2,"method":"","address":"/api/v1/screen/project/getData","remark":"","status":1,"sort":0},{"id":79,"menuApiId":0,"parentId":90,"name":"根据ID获取大屏项目","types":2,"method":"","address":"/api/v1/screen/project/getProjectById","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:8166/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":295,"menuApiId":0,"parentId":293,"name":"告警级别:配置","types":2,"method":"","address":"/api/v1/alarm/level/edit","remark":"","status":1,"sort":0},{"id":296,"menuApiId":0,"parentId":293,"name":"告警规则:操作符列表","types":2,"method":"","address":"/api/v1/alarm/rule/operator","remark":"","status":1,"sort":0},{"id":297,"menuApiId":0,"parentId":293,"name":"告警规则:触发类型列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_type","remark":"","status":1,"sort":0},{"id":298,"menuApiId":0,"parentId":293,"name":"告警规则:触发条件参数列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_param","remark":"","status":1,"sort":0},{"id":299,"menuApiId":0,"parentId":293,"name":"告警规则:详情","types":2,"method":"","address":"/api/v1/alarm/rule/detail","remark":"","status":1,"sort":0},{"id":300,"menuApiId":0,"parentId":293,"name":"告警规则:列表","types":2,"method":"","address":"/api/v1/alarm/rule/list","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":306,"menuApiId":0,"parentId":293,"name":"告警日志:详情","types":2,"method":"","address":"/api/v1/alarm/log/detail","remark":"","status":1,"sort":0},{"id":307,"menuApiId":0,"parentId":293,"name":"告警日志:列表","types":2,"method":"","address":"/api/v1/alarm/log/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":null,"children":null}]}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":0,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0},{"id":87,"menuApiId":0,"parentId":90,"name":"根据ID获取用户","types":2,"method":"","address":"/api/v1/system/user/getInfoById","remark":"","status":1,"sort":0},{"id":88,"menuApiId":0,"parentId":90,"name":"所有用户列表","types":2,"method":"","address":"/api/v1/system/user/getAll","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":0,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0},{"id":178,"menuApiId":0,"parentId":90,"name":"根据ID获取组织详情","types":2,"method":"","address":"/api/v1/system/organization/detail","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":182,"menuApiId":0,"parentId":90,"name":"根据ID获取部门详情","types":2,"method":"","address":"/api/v1/system/dept/detail","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":186,"menuApiId":0,"parentId":90,"name":"根据ID获取岗位详情","types":2,"method":"","address":"/api/v1/system/post/detail","remark":"","status":1,"sort":0},{"id":188,"menuApiId":0,"parentId":90,"name":"获取岗位列表","types":2,"method":"","address":"/api/v1/system/post/tree","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":193,"menuApiId":0,"parentId":90,"name":"根据ID获取权限信息","types":2,"method":"","address":"/api/v1/system/role/getAuthorizeById","remark":"","status":1,"sort":0},{"id":194,"menuApiId":0,"parentId":90,"name":"根据ID获取角色","types":2,"method":"","address":"/api/v1/system/role/getInfoById","remark":"","status":1,"sort":0},{"id":195,"menuApiId":0,"parentId":90,"name":"角色树状列表","types":2,"method":"","address":"/api/v1/system/role/tree","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":0,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":211,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单按钮详情","types":2,"method":"","address":"/api/v1/system/menu/button/detail","remark":"","status":1,"sort":0},{"id":214,"menuApiId":0,"parentId":90,"name":"菜单与按钮树列表","types":2,"method":"","address":"/api/v1/system/menu/button/tree","remark":"","status":1,"sort":0},{"id":217,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单列表详情","types":2,"method":"","address":"/api/v1/system/menu/column/detail","remark":"","status":1,"sort":0},{"id":220,"menuApiId":0,"parentId":90,"name":"菜单与列表树列表","types":2,"method":"","address":"/api/v1/system/menu/column/tree","remark":"","status":1,"sort":0},{"id":222,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单详情","types":2,"method":"","address":"/api/v1/system/menu/detail","remark":"","status":1,"sort":0},{"id":224,"menuApiId":0,"parentId":90,"name":"菜单列表","types":2,"method":"","address":"/api/v1/system/menu/tree","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":260,"menuApiId":0,"parentId":254,"name":"获取系统参数","types":2,"method":"","address":"/api/v1/common/config/get","remark":"","status":1,"sort":0},{"id":261,"menuApiId":0,"parentId":254,"name":"系统参数列表","types":2,"method":"","address":"/api/v1/common/config/list","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":268,"menuApiId":0,"parentId":254,"name":"获取字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/get","remark":"","status":1,"sort":0},{"id":269,"menuApiId":0,"parentId":254,"name":"字典类型列表","types":2,"method":"","address":"/api/v1/common/dict/type/list","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":275,"menuApiId":0,"parentId":254,"name":"获取字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/get","remark":"","status":1,"sort":0},{"id":276,"menuApiId":0,"parentId":254,"name":"获取字典数据公共方法","types":2,"method":"","address":"/api/v1/common/dict/data/getDictData","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":0,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0},{"id":262,"menuApiId":0,"parentId":257,"name":"获取数据源信息","types":2,"method":"","address":"/assess/v1/datasetup/target","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":0,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0},{"id":146,"menuApiId":0,"parentId":90,"name":"设备数据源:获取设备数据","types":2,"method":"","address":"/api/v1/source/device/get","remark":"","status":1,"sort":0},{"id":149,"menuApiId":0,"parentId":90,"name":"API 数据源:获取api数据","types":2,"method":"","address":"/api/v1/source/api/get","remark":"","status":1,"sort":0},{"id":151,"menuApiId":0,"parentId":90,"name":"数据源:列表","types":2,"method":"","address":"/api/v1/source/list","remark":"","status":1,"sort":0},{"id":152,"menuApiId":0,"parentId":90,"name":"数据源:获取源数据记录","types":2,"method":"","address":"/api/v1/source/getdata","remark":"","status":1,"sort":0},{"id":272,"menuApiId":0,"parentId":270,"name":"数据源列表","types":2,"method":"","address":"/api/v1/source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":164,"menuApiId":0,"parentId":90,"name":"模型:搜索列表","types":2,"method":"","address":"/api/v1/source/template/search","remark":"","status":1,"sort":0},{"id":165,"menuApiId":0,"parentId":90,"name":"模型:已发布列表","types":2,"method":"","address":"/api/v1/source/template/list","remark":"","status":1,"sort":0},{"id":167,"menuApiId":0,"parentId":90,"name":"模型:获取模型数据记录","types":2,"method":"","address":"/api/v1/source/template/getdata","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0},{"id":143,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取数据","types":2,"method":"","address":"/api/v1/source/db/get","remark":"","status":1,"sort":0},{"id":153,"menuApiId":0,"parentId":90,"name":"数据源:详情","types":2,"method":"","address":"/api/v1/source/detail","remark":"","status":1,"sort":0},{"id":160,"menuApiId":0,"parentId":90,"name":"数据节点:列表","types":2,"method":"","address":"/api/v1/source/node/list","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":0,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0},{"id":174,"menuApiId":0,"parentId":90,"name":"节点:列表","types":2,"method":"","address":"/api/v1/source/template/node/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":281,"menuApiId":0,"parentId":254,"name":"根据ID获取任务","types":2,"method":"","address":"/api/v1/system/job/getJobById","remark":"","status":1,"sort":0},{"id":282,"menuApiId":0,"parentId":254,"name":"获取任务列表","types":2,"method":"","address":"/api/v1/system/job/list","remark":"","status":1,"sort":0}],"children":null},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":0,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0},{"id":289,"menuApiId":0,"parentId":254,"name":"根据ID获取Api详情","types":2,"method":"","address":"/api/v1/system/api/detail","remark":"","status":1,"sort":0},{"id":292,"menuApiId":0,"parentId":254,"name":"获取接口列表","types":2,"method":"","address":"/api/v1/system/api/tree","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":0,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0},{"id":253,"menuApiId":0,"parentId":248,"name":"获取城市详情","types":2,"method":"","address":"/api/v1/common/city/getInfoById","remark":"","status":1,"sort":0}],"children":null},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":0,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null}],"api":[{"id":205,"menuApiId":0,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0},{"id":206,"menuApiId":0,"parentId":90,"name":"获取插件列表","types":2,"method":"","address":"/api/v1/system/plugins/list","remark":"","status":1,"sort":0},{"id":207,"menuApiId":0,"parentId":90,"name":"设置插件状态","types":2,"method":"","address":"/api/v1/system/plugins/set","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":0,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0},{"id":199,"menuApiId":0,"parentId":90,"name":"根据ID获取访问日志详情","types":2,"method":"","address":"/api/v1/system/login/log/detail","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":201,"menuApiId":0,"parentId":90,"name":"根据ID获取操作日志详情","types":2,"method":"","address":"/api/v1/system/oper/log/detail","remark":"","status":1,"sort":0},{"id":202,"menuApiId":0,"parentId":90,"name":"操作日志列表","types":2,"method":"","address":"/api/v1/system/oper/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":0,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0},{"id":204,"menuApiId":0,"parentId":90,"name":"在线用户强退","types":2,"method":"","address":"/api/v1/system/userOnline/strongBack","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.button.switch -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.column.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966984330 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966984337 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966984343 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966984348 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966984354 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966984360 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-3117fd35c60aa144d46b85e10ce98e82 -$917 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxMCwidXNlck5hbWUiOiJkZW1vIiwidXNlclR5cGVzIjoic3lzdGVtIiwibW9iaWxlIjoiMTg3MTExMTExMTEiLCJ1c2VyTmlja25hbWUiOiJhZG1pbiIsImJpcnRoZGF5IjoiIiwidXNlclBhc3N3b3JkIjoiIiwidXNlclNhbHQiOiJrNWpqakIzVlU4IiwidXNlckVtYWlsIjoiIiwic2V4IjowLCJhdmF0YXIiOiJodHRwczovL3poZ3kuc2Fnb28uY24vYmFzZS1hcGkvdXBsb2FkX2ZpbGUvMjAyMy0wNS0xOS9jc3E1OXIyZW9yb2VvNXRjb3kucG5nIiwiZGVwdElkIjozLCJyZW1hcmsiOiIiLCJpc0FkbWluIjoxLCJhZGRyZXNzIjoiIiwiZGVzY3JpYmUiOiIiLCJsYXN0TG9naW5JcCI6IjE5Mi4xNjguMTAuMjMzIiwibGFzdExvZ2luVGltZSI6IjIwMjMtMDgtMDIgMTY6NTU6NTciLCJzdGF0dXMiOjEsImlzRGVsZXRlZCI6MCwiY3JlYXRlQnkiOjEsImNyZWF0ZWRBdCI6IjIwMjItMTEtMDMgMDA6MTk6NTAiLCJ1cGRhdGVCeSI6MTAsInVwZGF0ZWRBdCI6IjIwMjMtMDgtMDIgMTY6NTU6NTYiLCJkZWxldGVkQnkiOjAsImRlbGV0ZWRBdCI6IiJ9LCJleHAiOjE2OTA5ODMxMzAsIm5iZiI6MTY5MDk2NjkyMH0.lyHUWzqSRadlf20u6J6jn_ok-iTRKGahwDMHGTfSKm8","uuId":"d4d5d6f944f4b050f0e78328fb98a514"} -$4 -PXAT -$13 -1690983130497 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966990523 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690966990529 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967059700 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$351 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967059703 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$390 -["sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageType -$340 -{"configId":3,"configName":"图片上传-图片类型","configKey":"sys.uploadFile.imageType","configValue":"jpg,jpeg,gif,npm,png,svg","configType":1,"remark":"图片上传后缀类型限制","status":0,"isDeleted":0,"createBy":0,"createdAt":"2022-08-06 12:44:46","updateBy":0,"updatedAt":"2022-08-06 12:44:46","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967059706 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageSize -$313 -{"configId":4,"configName":"图片上传-图片大小","configKey":"sys.uploadFile.imageSize","configValue":"50M","configType":1,"remark":"图片上传大小限制","status":0,"isDeleted":0,"createBy":0,"createdAt":"2022-08-06 12:45:35","updateBy":0,"updatedAt":"2022-08-06 12:45:35","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967059708 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967111867 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967111873 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967111879 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967111884 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967111890 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967111897 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageType -*2 -$3 -DEL -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageSize -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967154784 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967154786 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967154790 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967154794 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967185159 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967185165 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967185171 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967185177 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967185183 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967185188 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967228679 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967228682 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967228685 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967228691 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967292397 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967292408 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967606753 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967606759 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$127 -{"deviceTotal":17,"deviceOffline":7,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967670841 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967670843 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967743436 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967743438 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818336 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818337 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818339 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818340 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818342 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818343 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818715 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818716 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818717 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690967818718 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968093552 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968093553 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-9783e825a08de953831c06f98bafc23a -*2 -$3 -DEL -$25 -SagooIOT_userAuthorize_10 -*2 -$3 -DEL -$20 -SagooIOT_userInfo_10 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968310054 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968310056 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968310058 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968310061 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968310064 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968310066 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4yMzMiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMiAxNjo1NToxMiIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAyIDE2OjU1OjExIiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkwOTg0NDc4LCJuYmYiOjE2OTA5NjgyNjh9.VF4OGzW-7AP5CX8JdEKaTxYrpYz9FjXAFjCsg-2DrRc","uuId":"4607024dcdd82e1c4f3fd156f80bc52a"} -$4 -PXAT -$13 -1690984478301 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968338322 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968338323 -*5 -$3 -SET -$19 -SagooIOT_userInfo_1 -$581 -{"id":1,"userName":"admin","userTypes":"1","mobile":"15516567192","userNickname":"超级管理员","birthday":"","userEmail":"yxh669@qq.com1111","sex":2,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-03-28/crhqhlhsqd39kbdfqt.png","deptId":6,"remark":"","isAdmin":1,"address":"四川省成都市青羊区东城根南街68号院","describe":"大家好,我是admin。","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-02 17:24:38","status":1,"createBy":1,"createdAt":"2022-08-03 21:33:30","updateBy":1,"updatedAt":"2023-08-02 17:24:38","roleIds":[1],"postIds":[6]} -$4 -PXAT -$13 -1690971878328 -*3 -$3 -SET -$24 -SagooIOT_userAuthorize_1 -$96490 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":116,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0}],"children":null},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":157,"parentId":-1,"menuId":92,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":390,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":10,"parentId":-1,"menuId":34,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":13,"parentId":-1,"menuId":34,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":14,"parentId":-1,"menuId":34,"name":"导入","title":"导入","types":"upload","description":"","status":1,"children":null},{"id":15,"parentId":-1,"menuId":34,"name":"导出","title":"导出","types":"dwonload","description":"","status":1,"children":null},{"id":196,"parentId":-1,"menuId":34,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":null},{"id":197,"parentId":-1,"menuId":34,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":131,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":94,"parentId":-1,"menuId":36,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":97,"parentId":-1,"menuId":36,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","title":"启用与停止","types":"status","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null},{"id":260,"parentId":-1,"menuId":36,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-17 21:18:50","children":null}],"api":[{"id":106,"menuApiId":183,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":192,"parentId":-1,"menuId":51,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","title":"批量绑定","types":"mutipleBind","description":"","status":1,"children":null}],"column":[{"id":261,"parentId":-1,"menuId":51,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:00","children":null},{"id":262,"parentId":-1,"menuId":51,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:15","children":null},{"id":263,"parentId":-1,"menuId":51,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:36","children":null},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:51","children":null},{"id":265,"parentId":-1,"menuId":51,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:06","children":null},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:35","children":null},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:55","children":null},{"id":268,"parentId":-1,"menuId":51,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:25:12","children":null}],"api":[{"id":112,"menuApiId":189,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":16,"parentId":-1,"menuId":35,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":93,"parentId":-1,"menuId":35,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":133,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":198,"parentId":-1,"menuId":136,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":200,"parentId":-1,"menuId":136,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":null,"api":null,"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":100,"parentId":-1,"menuId":66,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":105,"parentId":-1,"menuId":66,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":104,"parentId":105,"menuId":66,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":106,"parentId":105,"menuId":66,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":107,"parentId":105,"menuId":66,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":313,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":311,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":312,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":139,"parentId":-1,"menuId":70,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":140,"parentId":139,"menuId":70,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":141,"parentId":139,"menuId":70,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null},{"id":142,"parentId":139,"menuId":70,"name":"删除","title":"删除","types":"delete","description":"","status":1,"children":null}]},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":144,"parentId":-1,"menuId":70,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":319,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":320,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":321,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":64,"menuApiId":138,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":150,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":158,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":157,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:8166/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":158,"parentId":-1,"menuId":41,"name":"管理","title":"管理","types":"setting","description":"","status":1,"children":null},{"id":159,"parentId":-1,"menuId":41,"name":"配置","title":"配置","types":"edit","description":"","status":1,"children":null}],"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":161,"parentId":-1,"menuId":42,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":151,"parentId":-1,"menuId":114,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":153,"parentId":-1,"menuId":114,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":154,"parentId":-1,"menuId":114,"name":"状态","title":"状态","types":"status","description":"","status":1,"children":null},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","title":"级别设置","types":"level","description":"","status":1,"children":null}],"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":367,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":150,"parentId":-1,"menuId":115,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":368,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":183,"parentId":-1,"menuId":131,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":185,"parentId":-1,"menuId":131,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":186,"parentId":-1,"menuId":131,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":[{"id":318,"menuApiId":401,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":17,"parentId":-1,"menuId":15,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":19,"parentId":-1,"menuId":15,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":21,"parentId":-1,"menuId":15,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","title":"修改用户状态","types":"change-status","description":"","status":1,"children":null}],"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":161,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":25,"parentId":-1,"menuId":13,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":26,"parentId":-1,"menuId":13,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":252,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":33,"parentId":-1,"menuId":12,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":34,"parentId":-1,"menuId":12,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":180,"menuApiId":257,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":36,"parentId":-1,"menuId":14,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":38,"parentId":-1,"menuId":14,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":184,"menuApiId":263,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":39,"parentId":-1,"menuId":10,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":41,"parentId":-1,"menuId":10,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":189,"menuApiId":268,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":163,"parentId":-1,"menuId":119,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":165,"parentId":-1,"menuId":119,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":168,"parentId":165,"menuId":119,"name":"开启","title":"开启","types":"on","description":"","status":1,"children":null},{"id":169,"parentId":165,"menuId":119,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]},{"id":166,"parentId":-1,"menuId":119,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":167,"parentId":-1,"menuId":119,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":391,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"button":null,"column":null,"api":null,"children":null},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":275,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":48,"parentId":-1,"menuId":110,"name":"启用","title":"启用","types":"start","description":"","status":1,"children":null},{"id":49,"parentId":-1,"menuId":110,"name":"停用","title":"停用","types":"stop","description":"","status":1,"children":null},{"id":190,"parentId":-1,"menuId":110,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":191,"parentId":-1,"menuId":110,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","title":"通信方式","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:03:40","children":null},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","title":"功能类型","code":"handleType","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:04:08","children":null}],"api":[{"id":205,"menuApiId":284,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":44,"parentId":-1,"menuId":18,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":276,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":45,"parentId":-1,"menuId":49,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":200,"menuApiId":279,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":47,"parentId":-1,"menuId":50,"name":"强退","title":"强退","types":"out","description":"","status":1,"children":null}],"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":282,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":189,"parentId":-1,"menuId":133,"name":"保存","title":"保存","types":"save","description":"","status":1,"children":null}],"column":null,"api":[{"id":321,"menuApiId":409,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0}],"children":null},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":51,"parentId":-1,"menuId":2,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":109,"parentId":-1,"menuId":2,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":110,"parentId":-1,"menuId":2,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","title":"按钮权限","types":"btn","description":"","status":1,"children":null},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","title":"列表权限","types":"list","description":"","status":1,"children":null}]}],"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":208,"menuApiId":287,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":113,"parentId":-1,"menuId":16,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":114,"parentId":-1,"menuId":16,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":255,"menuApiId":331,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":132,"parentId":-1,"menuId":85,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":134,"parentId":-1,"menuId":85,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":326,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0}],"children":null},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":125,"parentId":-1,"menuId":46,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":127,"parentId":-1,"menuId":46,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","title":"执行一次","types":"do","description":"","status":1,"children":null}],"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":278,"menuApiId":352,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":116,"parentId":-1,"menuId":21,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":118,"parentId":-1,"menuId":21,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":264,"menuApiId":339,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":119,"parentId":-1,"menuId":22,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":121,"parentId":-1,"menuId":22,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":271,"menuApiId":345,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":50,"parentId":-1,"menuId":32,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":123,"parentId":-1,"menuId":32,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":124,"parentId":-1,"menuId":32,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":385,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":28,"parentId":-1,"menuId":37,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":31,"parentId":-1,"menuId":37,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":32,"parentId":-1,"menuId":37,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":147,"parentId":-1,"menuId":37,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":148,"parentId":-1,"menuId":37,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":168,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":78,"parentId":-1,"menuId":39,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":81,"parentId":-1,"menuId":39,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":82,"parentId":-1,"menuId":39,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","title":"设置聚合","types":"juhe","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":161,"menuApiId":238,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":84,"parentId":-1,"menuId":61,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":86,"parentId":-1,"menuId":61,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","title":"发布与停止","types":"pro-status","description":"","status":1,"children":null}],"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":219,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":88,"parentId":-1,"menuId":64,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":91,"parentId":-1,"menuId":64,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":243,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0}],"children":null}]},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":129,"parentId":-1,"menuId":48,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":131,"parentId":-1,"menuId":48,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":360,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968567713 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968567715 -*3 -$3 -SET -$16 -SagooIOT_sysMenu -$39681 -[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:53:23","updatedBy":1,"updatedAt":"2022-12-09 23:58:36","deletedBy":0,"deletedAt":""},{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-07 23:31:31","updatedBy":1,"updatedAt":"2022-11-28 10:19:28","deletedBy":0,"deletedAt":""},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 04:51:33","updatedBy":1,"updatedAt":"2022-12-09 23:58:43","deletedBy":0,"deletedAt":""},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 20:49:57","updatedBy":1,"updatedAt":"2022-12-09 23:58:50","deletedBy":0,"deletedAt":""},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:52:35","updatedBy":1,"updatedAt":"2022-12-09 23:58:58","deletedBy":0,"deletedAt":""},{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-08 21:27:01","updatedBy":0,"updatedAt":"2023-04-08 21:27:01","deletedBy":0,"deletedAt":""},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 15:44:01","updatedBy":1,"updatedAt":"2022-12-08 23:04:17","deletedBy":0,"deletedAt":""},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:42:40","updatedBy":1,"updatedAt":"2023-05-22 21:44:16","deletedBy":0,"deletedAt":""},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-30 02:53:26","updatedBy":1,"updatedAt":"2022-12-09 23:40:36","deletedBy":0,"deletedAt":""},{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 09:09:30","updatedBy":1,"updatedAt":"2022-12-08 23:04:35","deletedBy":0,"deletedAt":""},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 20:48:36","updatedBy":1,"updatedAt":"2023-04-16 19:32:43","deletedBy":0,"deletedAt":""},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 06:20:26","updatedBy":1,"updatedAt":"2022-12-09 23:48:28","deletedBy":0,"deletedAt":""},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-08 23:11:42","updatedBy":1,"updatedAt":"2022-10-09 07:15:53","deletedBy":0,"deletedAt":""},{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 10:26:43","updatedBy":1,"updatedAt":"2023-02-09 21:49:18","deletedBy":0,"deletedAt":""},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:06:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:21","deletedBy":0,"deletedAt":""},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 06:50:33","updatedBy":1,"updatedAt":"2023-02-09 21:49:27","deletedBy":0,"deletedAt":""},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 07:54:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:57","deletedBy":0,"deletedAt":""},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:57:26","updatedBy":1,"updatedAt":"2022-12-09 23:51:54","deletedBy":0,"deletedAt":""},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-09 11:15:21","updatedBy":1,"updatedAt":"2023-02-09 21:49:38","deletedBy":0,"deletedAt":""},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-11 17:14:19","updatedBy":0,"updatedAt":"2022-10-11 17:14:19","deletedBy":0,"deletedAt":""},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:24","updatedBy":1,"updatedAt":"2022-12-08 23:04:43","deletedBy":0,"deletedAt":""},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-28 17:01:38","updatedBy":1,"updatedAt":"2023-02-09 21:49:47","deletedBy":0,"deletedAt":""},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 22:13:54","updatedBy":1,"updatedAt":"2022-12-09 23:57:48","deletedBy":0,"deletedAt":""},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 06:59:54","updatedBy":1,"updatedAt":"2022-12-09 23:59:06","deletedBy":0,"deletedAt":""},{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 16:13:33","updatedBy":1,"updatedAt":"2023-08-02 17:28:27","deletedBy":0,"deletedAt":""},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-05 06:15:26","updatedBy":1,"updatedAt":"2022-12-10 00:01:38","deletedBy":0,"deletedAt":""},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:40:07","updatedBy":1,"updatedAt":"2022-12-09 23:51:23","deletedBy":0,"deletedAt":""},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:54:55","updatedBy":1,"updatedAt":"2022-12-10 00:01:45","deletedBy":0,"deletedAt":""},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-20 23:40:21","updatedBy":1,"updatedAt":"2023-03-20 23:45:02","deletedBy":0,"deletedAt":""},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:11:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:44","deletedBy":0,"deletedAt":""},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:08:47","updatedBy":1,"updatedAt":"2022-12-09 23:50:36","deletedBy":0,"deletedAt":""},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-25 18:41:55","updatedBy":1,"updatedAt":"2022-12-10 00:11:45","deletedBy":0,"deletedAt":""},{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-21 12:50:32","updatedBy":1,"updatedAt":"2022-12-08 22:57:15","deletedBy":0,"deletedAt":""},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 12:31:06","updatedBy":1,"updatedAt":"2023-06-05 07:08:02","deletedBy":0,"deletedAt":""},{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-10 09:16:37","updatedBy":1,"updatedAt":"2022-12-09 23:57:32","deletedBy":0,"deletedAt":""},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-12 11:50:16","updatedBy":1,"updatedAt":"2022-12-08 22:57:30","deletedBy":0,"deletedAt":""},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-11 07:50:06","updatedBy":1,"updatedAt":"2022-12-09 23:54:21","deletedBy":0,"deletedAt":""},{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:24","updatedBy":1,"updatedAt":"2022-12-09 23:54:34","deletedBy":0,"deletedAt":""},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:33:09","updatedBy":1,"updatedAt":"2022-12-09 23:54:42","deletedBy":0,"deletedAt":""},{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 05:59:08","updatedBy":1,"updatedAt":"2022-12-09 23:53:00","deletedBy":0,"deletedAt":""},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-14 22:01:07","updatedBy":1,"updatedAt":"2022-12-09 23:53:07","deletedBy":0,"deletedAt":""},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-29 08:23:03","updatedBy":1,"updatedAt":"2023-01-29 08:24:17","deletedBy":0,"deletedAt":""},{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:08:05","updatedBy":1,"updatedAt":"2023-03-02 13:11:39","deletedBy":0,"deletedAt":""},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:16:40","updatedBy":1,"updatedAt":"2023-03-02 13:11:55","deletedBy":0,"deletedAt":""},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-02 13:10:46","updatedBy":1,"updatedAt":"2023-03-02 13:17:21","deletedBy":0,"deletedAt":""},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:05:48","updatedBy":1,"updatedAt":"2023-04-06 21:39:21","deletedBy":0,"deletedAt":""},{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:08:29","updatedBy":1,"updatedAt":"2023-04-09 20:49:11","deletedBy":0,"deletedAt":""},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-14 22:59:56","updatedBy":1,"updatedAt":"2023-04-14 23:27:00","deletedBy":0,"deletedAt":""},{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:44:01","updatedBy":0,"updatedAt":"2023-05-22 21:44:01","deletedBy":0,"deletedAt":""},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 11:45:53","updatedBy":1,"updatedAt":"2023-06-05 07:07:43","deletedBy":0,"deletedAt":""},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 05:59:18","updatedBy":1,"updatedAt":"2022-12-10 00:11:30","deletedBy":0,"deletedAt":""},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 14:53:36","updatedBy":1,"updatedAt":"2022-12-10 00:00:39","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 22:55:17","updatedBy":1,"updatedAt":"2022-12-09 23:59:48","deletedBy":0,"deletedAt":""},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 07:01:59","updatedBy":1,"updatedAt":"2022-12-09 23:59:57","deletedBy":0,"deletedAt":""},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 15:04:21","updatedBy":1,"updatedAt":"2022-12-10 00:02:00","deletedBy":0,"deletedAt":""},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 02:21:34","updatedBy":1,"updatedAt":"2022-12-10 00:02:25","deletedBy":0,"deletedAt":""},{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 15:44:43","updatedBy":1,"updatedAt":"2022-12-09 23:49:20","deletedBy":0,"deletedAt":""},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 08:02:39","updatedBy":1,"updatedAt":"2022-12-10 00:03:36","deletedBy":0,"deletedAt":""},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:11:36","updatedBy":1,"updatedAt":"2022-12-09 23:51:38","deletedBy":0,"deletedAt":""},{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 16:57:23","updatedBy":1,"updatedAt":"2022-12-10 00:04:05","deletedBy":0,"deletedAt":""},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:10:38","updatedBy":1,"updatedAt":"2022-12-08 23:04:50","deletedBy":0,"deletedAt":""},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:36","updatedBy":1,"updatedAt":"2022-12-10 00:04:16","deletedBy":0,"deletedAt":""},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:54:33","updatedBy":1,"updatedAt":"2022-12-10 00:04:23","deletedBy":0,"deletedAt":""},{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 21:01:00","updatedBy":1,"updatedAt":"2022-12-09 23:52:18","deletedBy":0,"deletedAt":""},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 05:02:15","updatedBy":1,"updatedAt":"2022-12-09 23:52:33","deletedBy":0,"deletedAt":""},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 21:20:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:00","deletedBy":0,"deletedAt":""},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:48:19","updatedBy":1,"updatedAt":"2022-12-09 23:43:55","deletedBy":0,"deletedAt":""},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 06:43:34","updatedBy":1,"updatedAt":"2022-12-10 00:11:38","deletedBy":0,"deletedAt":""},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-14 20:25:37","updatedBy":1,"updatedAt":"2022-12-10 00:00:50","deletedBy":0,"deletedAt":""},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-15 06:40:43","updatedBy":1,"updatedAt":"2022-12-10 00:00:58","deletedBy":0,"deletedAt":""},{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 12:12:59","updatedBy":1,"updatedAt":"2022-12-08 23:09:21","deletedBy":0,"deletedAt":""},{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 21:33:48","updatedBy":1,"updatedAt":"2022-12-08 23:10:27","deletedBy":0,"deletedAt":""},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 07:30:33","updatedBy":1,"updatedAt":"2022-12-10 00:05:11","deletedBy":0,"deletedAt":""},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 19:37:24","updatedBy":1,"updatedAt":"2022-12-10 00:05:52","deletedBy":0,"deletedAt":""},{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-31 02:55:36","updatedBy":1,"updatedAt":"2022-12-09 23:40:55","deletedBy":0,"deletedAt":""},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-01 07:05:44","updatedBy":1,"updatedAt":"2022-12-09 23:43:40","deletedBy":0,"deletedAt":""},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 18:10:41","updatedBy":1,"updatedAt":"2022-12-09 23:43:48","deletedBy":0,"deletedAt":""},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 02:31:20","updatedBy":1,"updatedAt":"2022-12-09 23:41:05","deletedBy":0,"deletedAt":""},{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-05 10:36:11","updatedBy":1,"updatedAt":"2022-12-09 23:46:49","deletedBy":0,"deletedAt":""},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 16:21:10","updatedBy":1,"updatedAt":"2022-12-09 23:46:56","deletedBy":0,"deletedAt":""},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:46:52","updatedBy":1,"updatedAt":"2022-12-09 23:47:02","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -*2 -$3 -DEL -$24 -SagooIOT_userAuthorize_1 -*2 -$3 -DEL -$19 -SagooIOT_userInfo_1 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968601645 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968601647 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968601649 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968601657 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968601659 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968601665 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4yMzMiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMiAxNzoyNDozOCIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAyIDE3OjI0OjM4IiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkwOTg0NzUyLCJuYmYiOjE2OTA5Njg1NDJ9.tGsNmoUdPgd9H3DO1907hxK1T1r8cMIhhLqD91ckyFM","uuId":"aa321fcdfe06e28bb63637773861676d"} -$4 -PXAT -$13 -1690984752821 -*5 -$3 -SET -$19 -SagooIOT_userInfo_1 -$581 -{"id":1,"userName":"admin","userTypes":"1","mobile":"15516567192","userNickname":"超级管理员","birthday":"","userEmail":"yxh669@qq.com1111","sex":2,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-03-28/crhqhlhsqd39kbdfqt.png","deptId":6,"remark":"","isAdmin":1,"address":"四川省成都市青羊区东城根南街68号院","describe":"大家好,我是admin。","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-02 17:29:13","status":1,"createBy":1,"createdAt":"2022-08-03 21:33:30","updateBy":1,"updatedAt":"2023-08-02 17:29:12","roleIds":[1],"postIds":[6]} -$4 -PXAT -$13 -1690972152843 -*3 -$3 -SET -$24 -SagooIOT_userAuthorize_1 -$96494 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":116,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0}],"children":null},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":157,"parentId":-1,"menuId":92,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":390,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":10,"parentId":-1,"menuId":34,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":13,"parentId":-1,"menuId":34,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":14,"parentId":-1,"menuId":34,"name":"导入","title":"导入","types":"upload","description":"","status":1,"children":null},{"id":15,"parentId":-1,"menuId":34,"name":"导出","title":"导出","types":"dwonload","description":"","status":1,"children":null},{"id":196,"parentId":-1,"menuId":34,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":null},{"id":197,"parentId":-1,"menuId":34,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":131,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":94,"parentId":-1,"menuId":36,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":97,"parentId":-1,"menuId":36,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","title":"启用与停止","types":"status","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null},{"id":260,"parentId":-1,"menuId":36,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-17 21:18:50","children":null}],"api":[{"id":106,"menuApiId":183,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":192,"parentId":-1,"menuId":51,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","title":"批量绑定","types":"mutipleBind","description":"","status":1,"children":null}],"column":[{"id":261,"parentId":-1,"menuId":51,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:00","children":null},{"id":262,"parentId":-1,"menuId":51,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:15","children":null},{"id":263,"parentId":-1,"menuId":51,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:36","children":null},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:51","children":null},{"id":265,"parentId":-1,"menuId":51,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:06","children":null},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:35","children":null},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:55","children":null},{"id":268,"parentId":-1,"menuId":51,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:25:12","children":null}],"api":[{"id":112,"menuApiId":189,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":16,"parentId":-1,"menuId":35,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":93,"parentId":-1,"menuId":35,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":133,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":198,"parentId":-1,"menuId":136,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":200,"parentId":-1,"menuId":136,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":null,"api":null,"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":100,"parentId":-1,"menuId":66,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":105,"parentId":-1,"menuId":66,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":104,"parentId":105,"menuId":66,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":106,"parentId":105,"menuId":66,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":107,"parentId":105,"menuId":66,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":313,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":311,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":312,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":139,"parentId":-1,"menuId":70,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":140,"parentId":139,"menuId":70,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":141,"parentId":139,"menuId":70,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null},{"id":142,"parentId":139,"menuId":70,"name":"删除","title":"删除","types":"delete","description":"","status":1,"children":null}]},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":144,"parentId":-1,"menuId":70,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":319,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":320,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":321,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":64,"menuApiId":138,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":150,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":158,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":157,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":158,"parentId":-1,"menuId":41,"name":"管理","title":"管理","types":"setting","description":"","status":1,"children":null},{"id":159,"parentId":-1,"menuId":41,"name":"配置","title":"配置","types":"edit","description":"","status":1,"children":null}],"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":161,"parentId":-1,"menuId":42,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":151,"parentId":-1,"menuId":114,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":153,"parentId":-1,"menuId":114,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":154,"parentId":-1,"menuId":114,"name":"状态","title":"状态","types":"status","description":"","status":1,"children":null},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","title":"级别设置","types":"level","description":"","status":1,"children":null}],"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":367,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":150,"parentId":-1,"menuId":115,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":368,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":183,"parentId":-1,"menuId":131,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":185,"parentId":-1,"menuId":131,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":186,"parentId":-1,"menuId":131,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":[{"id":318,"menuApiId":401,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":17,"parentId":-1,"menuId":15,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":19,"parentId":-1,"menuId":15,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":21,"parentId":-1,"menuId":15,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","title":"修改用户状态","types":"change-status","description":"","status":1,"children":null}],"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":161,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":25,"parentId":-1,"menuId":13,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":26,"parentId":-1,"menuId":13,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":252,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":33,"parentId":-1,"menuId":12,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":34,"parentId":-1,"menuId":12,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":180,"menuApiId":257,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":36,"parentId":-1,"menuId":14,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":38,"parentId":-1,"menuId":14,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":184,"menuApiId":263,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":39,"parentId":-1,"menuId":10,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":41,"parentId":-1,"menuId":10,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":189,"menuApiId":268,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":163,"parentId":-1,"menuId":119,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":165,"parentId":-1,"menuId":119,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":168,"parentId":165,"menuId":119,"name":"开启","title":"开启","types":"on","description":"","status":1,"children":null},{"id":169,"parentId":165,"menuId":119,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]},{"id":166,"parentId":-1,"menuId":119,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":167,"parentId":-1,"menuId":119,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":391,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"button":null,"column":null,"api":null,"children":null},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":275,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":48,"parentId":-1,"menuId":110,"name":"启用","title":"启用","types":"start","description":"","status":1,"children":null},{"id":49,"parentId":-1,"menuId":110,"name":"停用","title":"停用","types":"stop","description":"","status":1,"children":null},{"id":190,"parentId":-1,"menuId":110,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":191,"parentId":-1,"menuId":110,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","title":"通信方式","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:03:40","children":null},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","title":"功能类型","code":"handleType","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:04:08","children":null}],"api":[{"id":205,"menuApiId":284,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":44,"parentId":-1,"menuId":18,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":276,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":45,"parentId":-1,"menuId":49,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":200,"menuApiId":279,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":47,"parentId":-1,"menuId":50,"name":"强退","title":"强退","types":"out","description":"","status":1,"children":null}],"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":282,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":189,"parentId":-1,"menuId":133,"name":"保存","title":"保存","types":"save","description":"","status":1,"children":null}],"column":null,"api":[{"id":321,"menuApiId":409,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0}],"children":null},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":51,"parentId":-1,"menuId":2,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":109,"parentId":-1,"menuId":2,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":110,"parentId":-1,"menuId":2,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","title":"按钮权限","types":"btn","description":"","status":1,"children":null},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","title":"列表权限","types":"list","description":"","status":1,"children":null}]}],"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":208,"menuApiId":287,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":113,"parentId":-1,"menuId":16,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":114,"parentId":-1,"menuId":16,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":255,"menuApiId":331,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":132,"parentId":-1,"menuId":85,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":134,"parentId":-1,"menuId":85,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":326,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0}],"children":null},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":125,"parentId":-1,"menuId":46,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":127,"parentId":-1,"menuId":46,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","title":"执行一次","types":"do","description":"","status":1,"children":null}],"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":278,"menuApiId":352,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":116,"parentId":-1,"menuId":21,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":118,"parentId":-1,"menuId":21,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":264,"menuApiId":339,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":119,"parentId":-1,"menuId":22,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":121,"parentId":-1,"menuId":22,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":271,"menuApiId":345,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":50,"parentId":-1,"menuId":32,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":123,"parentId":-1,"menuId":32,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":124,"parentId":-1,"menuId":32,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":385,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":28,"parentId":-1,"menuId":37,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":31,"parentId":-1,"menuId":37,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":32,"parentId":-1,"menuId":37,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":147,"parentId":-1,"menuId":37,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":148,"parentId":-1,"menuId":37,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":168,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":78,"parentId":-1,"menuId":39,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":81,"parentId":-1,"menuId":39,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":82,"parentId":-1,"menuId":39,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","title":"设置聚合","types":"juhe","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":161,"menuApiId":238,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":84,"parentId":-1,"menuId":61,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":86,"parentId":-1,"menuId":61,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","title":"发布与停止","types":"pro-status","description":"","status":1,"children":null}],"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":219,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":88,"parentId":-1,"menuId":64,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":91,"parentId":-1,"menuId":64,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":243,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0}],"children":null}]},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":129,"parentId":-1,"menuId":48,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":131,"parentId":-1,"menuId":48,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":360,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968732207 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968732207 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968732210 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690968732210 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969152078 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969152080 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969152087 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969152089 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969464725 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969464726 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969464728 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969464729 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969464731 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969464732 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969465141 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969465142 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969465144 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969465146 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707156 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707163 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707169 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707175 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707181 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707187 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707412 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707414 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707415 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969707417 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969777421 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969777422 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969810567 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969810574 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969810576 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969810578 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969810582 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969810588 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969895648 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969895649 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969895651 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969895652 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969895654 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690969895655 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970132401 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970132403 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970132406 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970132408 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970132411 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970132424 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970140675 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970140676 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970140677 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970140678 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$20 -SagooIOT_userInfo_10 -$484 -{"id":10,"userName":"demo","userTypes":"system","mobile":"18711111111","userNickname":"admin","birthday":"","userEmail":"","sex":0,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-05-19/csq59r2eoroeo5tcoy.png","deptId":3,"remark":"","isAdmin":1,"address":"","describe":"","lastLoginIp":"192.168.10.120","lastLoginTime":"2023-08-02 17:02:10","status":1,"createBy":1,"createdAt":"2022-11-03 00:19:50","updateBy":10,"updatedAt":"2023-08-02 17:02:10","roleIds":[7],"postIds":[5]} -$4 -PXAT -$13 -1690973730336 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.column.switch -$286 -{"configId":25,"configName":"列表开关","configKey":"sys.column.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:09:18","updateBy":10,"updatedAt":"2023-04-10 13:24:48","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970190357 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.button.switch -$286 -{"configId":26,"configName":"按钮开关","configKey":"sys.button.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:10:36","updateBy":10,"updatedAt":"2023-04-10 13:24:45","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970190360 -*3 -$3 -SET -$25 -SagooIOT_userAuthorize_10 -$87447 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":0,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0},{"id":56,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的风力图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getWindpowerEchartById","remark":"","status":1,"sort":0},{"id":57,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的温度图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getTemperatureEchartById","remark":"","status":1,"sort":0},{"id":58,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的天气","types":2,"method":"","address":"/api/v1/envirotronics/weather/getInfoById","remark":"","status":1,"sort":0},{"id":238,"menuApiId":0,"parentId":237,"name":"城市-风力-日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList2","remark":"","status":1,"sort":0}],"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":0,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":0,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0},{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0},{"id":102,"menuApiId":0,"parentId":90,"name":"产品:列表","types":2,"method":"","address":"/api/v1/product/list","remark":"","status":1,"sort":0},{"id":103,"menuApiId":0,"parentId":90,"name":"产品:详情","types":2,"method":"","address":"/api/v1/product/detail","remark":"","status":1,"sort":0},{"id":104,"menuApiId":0,"parentId":90,"name":"产品:详情,按key查询","types":2,"method":"","address":"/api/v1/product/get","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null}],"api":[{"id":117,"menuApiId":0,"parentId":90,"name":"设备:搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/device/page_list","remark":"","status":1,"sort":0},{"id":118,"menuApiId":0,"parentId":90,"name":"设备:详情","types":2,"method":"","address":"/api/v1/product/device/detail","remark":"","status":1,"sort":0},{"id":119,"menuApiId":0,"parentId":90,"name":"设备:详情,按key查询","types":2,"method":"","address":"/api/v1/product/device/get","remark":"","status":1,"sort":0},{"id":122,"menuApiId":0,"parentId":90,"name":"数据类型:列表","types":2,"method":"","address":"/api/v1/product/tsl/data_type","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":112,"menuApiId":0,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0},{"id":113,"menuApiId":0,"parentId":90,"name":"设备:运行状态","types":2,"method":"","address":"/api/v1/product/device/run_status","remark":"","status":1,"sort":0},{"id":114,"menuApiId":0,"parentId":90,"name":"设备:获取指定属性值","types":2,"method":"","address":"/api/v1/product/device/property/get","remark":"","status":1,"sort":0},{"id":115,"menuApiId":0,"parentId":90,"name":"设备:属性详情列表","types":2,"method":"","address":"/api/v1/product/device/property/list","remark":"","status":1,"sort":0},{"id":116,"menuApiId":0,"parentId":90,"name":"设备:已发布产品设备列表","types":2,"method":"","address":"/api/v1/product/device/list","remark":"","status":1,"sort":0},{"id":120,"menuApiId":0,"parentId":90,"name":"日志:类型列表","types":2,"method":"","address":"/api/v1/product/log/type","remark":"","status":1,"sort":0},{"id":121,"menuApiId":0,"parentId":90,"name":"日志:搜索","types":2,"method":"","address":"/api/v1/product/log/search","remark":"","status":1,"sort":0},{"id":126,"menuApiId":0,"parentId":90,"name":"属性:列表","types":2,"method":"","address":"/api/v1/product/tsl/property/list","remark":"","status":1,"sort":0},{"id":127,"menuApiId":0,"parentId":90,"name":"属性:所有属性列表","types":2,"method":"","address":"/api/v1/product/tsl/property/all","remark":"","status":1,"sort":0},{"id":131,"menuApiId":0,"parentId":90,"name":"功能:列表","types":2,"method":"","address":"/api/v1/product/tsl/function/list","remark":"","status":1,"sort":0},{"id":135,"menuApiId":0,"parentId":90,"name":"事件:列表","types":2,"method":"","address":"/api/v1/product/tsl/event/list","remark":"","status":1,"sort":0},{"id":139,"menuApiId":0,"parentId":90,"name":"标签:列表","types":2,"method":"","address":"/api/v1/product/tsl/tag/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0},{"id":242,"menuApiId":0,"parentId":239,"name":"通道详情","types":2,"method":"","address":"/api/v1/network/tunnel/get","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0},{"id":245,"menuApiId":0,"parentId":239,"name":"服务器详情","types":2,"method":"","address":"/api/v1/network/get","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":62,"menuApiId":0,"parentId":90,"name":"获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getList","remark":"","status":1,"sort":0},{"id":66,"menuApiId":0,"parentId":90,"name":"根据文件夹ID获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoByFolderId","remark":"","status":1,"sort":0},{"id":67,"menuApiId":0,"parentId":90,"name":"根据ID获取拓扑图信息","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoById","remark":"","status":1,"sort":0},{"id":72,"menuApiId":0,"parentId":90,"name":"根据ID获取文件夹","types":2,"method":"","address":"/api/v1/configure/folder/getInfoById","remark":"","status":1,"sort":0},{"id":73,"menuApiId":0,"parentId":90,"name":"获取文件夹列表","types":2,"method":"","address":"/api/v1/configure/folder/list","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":0,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0},{"id":78,"menuApiId":0,"parentId":90,"name":"获取项目数据","types":2,"method":"","address":"/api/v1/screen/project/getData","remark":"","status":1,"sort":0},{"id":79,"menuApiId":0,"parentId":90,"name":"根据ID获取大屏项目","types":2,"method":"","address":"/api/v1/screen/project/getProjectById","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":295,"menuApiId":0,"parentId":293,"name":"告警级别:配置","types":2,"method":"","address":"/api/v1/alarm/level/edit","remark":"","status":1,"sort":0},{"id":296,"menuApiId":0,"parentId":293,"name":"告警规则:操作符列表","types":2,"method":"","address":"/api/v1/alarm/rule/operator","remark":"","status":1,"sort":0},{"id":297,"menuApiId":0,"parentId":293,"name":"告警规则:触发类型列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_type","remark":"","status":1,"sort":0},{"id":298,"menuApiId":0,"parentId":293,"name":"告警规则:触发条件参数列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_param","remark":"","status":1,"sort":0},{"id":299,"menuApiId":0,"parentId":293,"name":"告警规则:详情","types":2,"method":"","address":"/api/v1/alarm/rule/detail","remark":"","status":1,"sort":0},{"id":300,"menuApiId":0,"parentId":293,"name":"告警规则:列表","types":2,"method":"","address":"/api/v1/alarm/rule/list","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":306,"menuApiId":0,"parentId":293,"name":"告警日志:详情","types":2,"method":"","address":"/api/v1/alarm/log/detail","remark":"","status":1,"sort":0},{"id":307,"menuApiId":0,"parentId":293,"name":"告警日志:列表","types":2,"method":"","address":"/api/v1/alarm/log/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":null,"children":null}]}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":0,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0},{"id":87,"menuApiId":0,"parentId":90,"name":"根据ID获取用户","types":2,"method":"","address":"/api/v1/system/user/getInfoById","remark":"","status":1,"sort":0},{"id":88,"menuApiId":0,"parentId":90,"name":"所有用户列表","types":2,"method":"","address":"/api/v1/system/user/getAll","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":0,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0},{"id":178,"menuApiId":0,"parentId":90,"name":"根据ID获取组织详情","types":2,"method":"","address":"/api/v1/system/organization/detail","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":182,"menuApiId":0,"parentId":90,"name":"根据ID获取部门详情","types":2,"method":"","address":"/api/v1/system/dept/detail","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":186,"menuApiId":0,"parentId":90,"name":"根据ID获取岗位详情","types":2,"method":"","address":"/api/v1/system/post/detail","remark":"","status":1,"sort":0},{"id":188,"menuApiId":0,"parentId":90,"name":"获取岗位列表","types":2,"method":"","address":"/api/v1/system/post/tree","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":193,"menuApiId":0,"parentId":90,"name":"根据ID获取权限信息","types":2,"method":"","address":"/api/v1/system/role/getAuthorizeById","remark":"","status":1,"sort":0},{"id":194,"menuApiId":0,"parentId":90,"name":"根据ID获取角色","types":2,"method":"","address":"/api/v1/system/role/getInfoById","remark":"","status":1,"sort":0},{"id":195,"menuApiId":0,"parentId":90,"name":"角色树状列表","types":2,"method":"","address":"/api/v1/system/role/tree","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":0,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":211,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单按钮详情","types":2,"method":"","address":"/api/v1/system/menu/button/detail","remark":"","status":1,"sort":0},{"id":214,"menuApiId":0,"parentId":90,"name":"菜单与按钮树列表","types":2,"method":"","address":"/api/v1/system/menu/button/tree","remark":"","status":1,"sort":0},{"id":217,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单列表详情","types":2,"method":"","address":"/api/v1/system/menu/column/detail","remark":"","status":1,"sort":0},{"id":220,"menuApiId":0,"parentId":90,"name":"菜单与列表树列表","types":2,"method":"","address":"/api/v1/system/menu/column/tree","remark":"","status":1,"sort":0},{"id":222,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单详情","types":2,"method":"","address":"/api/v1/system/menu/detail","remark":"","status":1,"sort":0},{"id":224,"menuApiId":0,"parentId":90,"name":"菜单列表","types":2,"method":"","address":"/api/v1/system/menu/tree","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":260,"menuApiId":0,"parentId":254,"name":"获取系统参数","types":2,"method":"","address":"/api/v1/common/config/get","remark":"","status":1,"sort":0},{"id":261,"menuApiId":0,"parentId":254,"name":"系统参数列表","types":2,"method":"","address":"/api/v1/common/config/list","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":268,"menuApiId":0,"parentId":254,"name":"获取字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/get","remark":"","status":1,"sort":0},{"id":269,"menuApiId":0,"parentId":254,"name":"字典类型列表","types":2,"method":"","address":"/api/v1/common/dict/type/list","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":275,"menuApiId":0,"parentId":254,"name":"获取字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/get","remark":"","status":1,"sort":0},{"id":276,"menuApiId":0,"parentId":254,"name":"获取字典数据公共方法","types":2,"method":"","address":"/api/v1/common/dict/data/getDictData","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":0,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0},{"id":262,"menuApiId":0,"parentId":257,"name":"获取数据源信息","types":2,"method":"","address":"/assess/v1/datasetup/target","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":0,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0},{"id":146,"menuApiId":0,"parentId":90,"name":"设备数据源:获取设备数据","types":2,"method":"","address":"/api/v1/source/device/get","remark":"","status":1,"sort":0},{"id":149,"menuApiId":0,"parentId":90,"name":"API 数据源:获取api数据","types":2,"method":"","address":"/api/v1/source/api/get","remark":"","status":1,"sort":0},{"id":151,"menuApiId":0,"parentId":90,"name":"数据源:列表","types":2,"method":"","address":"/api/v1/source/list","remark":"","status":1,"sort":0},{"id":152,"menuApiId":0,"parentId":90,"name":"数据源:获取源数据记录","types":2,"method":"","address":"/api/v1/source/getdata","remark":"","status":1,"sort":0},{"id":272,"menuApiId":0,"parentId":270,"name":"数据源列表","types":2,"method":"","address":"/api/v1/source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":164,"menuApiId":0,"parentId":90,"name":"模型:搜索列表","types":2,"method":"","address":"/api/v1/source/template/search","remark":"","status":1,"sort":0},{"id":165,"menuApiId":0,"parentId":90,"name":"模型:已发布列表","types":2,"method":"","address":"/api/v1/source/template/list","remark":"","status":1,"sort":0},{"id":167,"menuApiId":0,"parentId":90,"name":"模型:获取模型数据记录","types":2,"method":"","address":"/api/v1/source/template/getdata","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0},{"id":143,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取数据","types":2,"method":"","address":"/api/v1/source/db/get","remark":"","status":1,"sort":0},{"id":153,"menuApiId":0,"parentId":90,"name":"数据源:详情","types":2,"method":"","address":"/api/v1/source/detail","remark":"","status":1,"sort":0},{"id":160,"menuApiId":0,"parentId":90,"name":"数据节点:列表","types":2,"method":"","address":"/api/v1/source/node/list","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":0,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0},{"id":174,"menuApiId":0,"parentId":90,"name":"节点:列表","types":2,"method":"","address":"/api/v1/source/template/node/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":281,"menuApiId":0,"parentId":254,"name":"根据ID获取任务","types":2,"method":"","address":"/api/v1/system/job/getJobById","remark":"","status":1,"sort":0},{"id":282,"menuApiId":0,"parentId":254,"name":"获取任务列表","types":2,"method":"","address":"/api/v1/system/job/list","remark":"","status":1,"sort":0}],"children":null},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":0,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0},{"id":289,"menuApiId":0,"parentId":254,"name":"根据ID获取Api详情","types":2,"method":"","address":"/api/v1/system/api/detail","remark":"","status":1,"sort":0},{"id":292,"menuApiId":0,"parentId":254,"name":"获取接口列表","types":2,"method":"","address":"/api/v1/system/api/tree","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":0,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0},{"id":253,"menuApiId":0,"parentId":248,"name":"获取城市详情","types":2,"method":"","address":"/api/v1/common/city/getInfoById","remark":"","status":1,"sort":0}],"children":null},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":0,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null}],"api":[{"id":205,"menuApiId":0,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0},{"id":206,"menuApiId":0,"parentId":90,"name":"获取插件列表","types":2,"method":"","address":"/api/v1/system/plugins/list","remark":"","status":1,"sort":0},{"id":207,"menuApiId":0,"parentId":90,"name":"设置插件状态","types":2,"method":"","address":"/api/v1/system/plugins/set","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":0,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0},{"id":199,"menuApiId":0,"parentId":90,"name":"根据ID获取访问日志详情","types":2,"method":"","address":"/api/v1/system/login/log/detail","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":201,"menuApiId":0,"parentId":90,"name":"根据ID获取操作日志详情","types":2,"method":"","address":"/api/v1/system/oper/log/detail","remark":"","status":1,"sort":0},{"id":202,"menuApiId":0,"parentId":90,"name":"操作日志列表","types":2,"method":"","address":"/api/v1/system/oper/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":0,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0},{"id":204,"menuApiId":0,"parentId":90,"name":"在线用户强退","types":2,"method":"","address":"/api/v1/system/userOnline/strongBack","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970205572 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970205573 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -*2 -$3 -DEL -$24 -SagooIOT_userAuthorize_1 -*2 -$3 -DEL -$19 -SagooIOT_userInfo_1 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970222020 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970222022 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970222026 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970222030 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970222032 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970222034 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-3117fd35c60aa144d46b85e10ce98e82 -*2 -$3 -DEL -$25 -SagooIOT_userAuthorize_10 -*2 -$3 -DEL -$20 -SagooIOT_userInfo_10 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4yMzMiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMiAxNzoyOToxMyIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAyIDE3OjI5OjEyIiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkwOTg2Mzc0LCJuYmYiOjE2OTA5NzAxNjR9.Su88RLFs0VbYunhsgcC3_6Gvmv6Nzq9ut-4PT7_TCPQ","uuId":"eda07803e19887e33c8e77ac9f40f331"} -$4 -PXAT -$13 -1690986374938 -*5 -$3 -SET -$19 -SagooIOT_userInfo_1 -$581 -{"id":1,"userName":"admin","userTypes":"1","mobile":"15516567192","userNickname":"超级管理员","birthday":"","userEmail":"yxh669@qq.com1111","sex":2,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-03-28/crhqhlhsqd39kbdfqt.png","deptId":6,"remark":"","isAdmin":1,"address":"四川省成都市青羊区东城根南街68号院","describe":"大家好,我是admin。","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-02 17:56:15","status":1,"createBy":1,"createdAt":"2022-08-03 21:33:30","updateBy":1,"updatedAt":"2023-08-02 17:56:14","roleIds":[1],"postIds":[6]} -$4 -PXAT -$13 -1690973774958 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$24 -SagooIOT_userAuthorize_1 -$96494 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":116,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0}],"children":null},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":157,"parentId":-1,"menuId":92,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":390,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":10,"parentId":-1,"menuId":34,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":13,"parentId":-1,"menuId":34,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":14,"parentId":-1,"menuId":34,"name":"导入","title":"导入","types":"upload","description":"","status":1,"children":null},{"id":15,"parentId":-1,"menuId":34,"name":"导出","title":"导出","types":"dwonload","description":"","status":1,"children":null},{"id":196,"parentId":-1,"menuId":34,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":null},{"id":197,"parentId":-1,"menuId":34,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":131,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":94,"parentId":-1,"menuId":36,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":97,"parentId":-1,"menuId":36,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","title":"启用与停止","types":"status","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null},{"id":260,"parentId":-1,"menuId":36,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-17 21:18:50","children":null}],"api":[{"id":106,"menuApiId":183,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":192,"parentId":-1,"menuId":51,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","title":"批量绑定","types":"mutipleBind","description":"","status":1,"children":null}],"column":[{"id":261,"parentId":-1,"menuId":51,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:00","children":null},{"id":262,"parentId":-1,"menuId":51,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:15","children":null},{"id":263,"parentId":-1,"menuId":51,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:36","children":null},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:51","children":null},{"id":265,"parentId":-1,"menuId":51,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:06","children":null},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:35","children":null},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:55","children":null},{"id":268,"parentId":-1,"menuId":51,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:25:12","children":null}],"api":[{"id":112,"menuApiId":189,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":16,"parentId":-1,"menuId":35,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":93,"parentId":-1,"menuId":35,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":133,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":198,"parentId":-1,"menuId":136,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":200,"parentId":-1,"menuId":136,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":null,"api":null,"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":100,"parentId":-1,"menuId":66,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":105,"parentId":-1,"menuId":66,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":104,"parentId":105,"menuId":66,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":106,"parentId":105,"menuId":66,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":107,"parentId":105,"menuId":66,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":313,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":311,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":312,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":139,"parentId":-1,"menuId":70,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":140,"parentId":139,"menuId":70,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":141,"parentId":139,"menuId":70,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null},{"id":142,"parentId":139,"menuId":70,"name":"删除","title":"删除","types":"delete","description":"","status":1,"children":null}]},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":144,"parentId":-1,"menuId":70,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":319,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":320,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":321,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":64,"menuApiId":138,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":150,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":158,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":157,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":158,"parentId":-1,"menuId":41,"name":"管理","title":"管理","types":"setting","description":"","status":1,"children":null},{"id":159,"parentId":-1,"menuId":41,"name":"配置","title":"配置","types":"edit","description":"","status":1,"children":null}],"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":161,"parentId":-1,"menuId":42,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":151,"parentId":-1,"menuId":114,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":153,"parentId":-1,"menuId":114,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":154,"parentId":-1,"menuId":114,"name":"状态","title":"状态","types":"status","description":"","status":1,"children":null},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","title":"级别设置","types":"level","description":"","status":1,"children":null}],"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":367,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":150,"parentId":-1,"menuId":115,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":368,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":183,"parentId":-1,"menuId":131,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":185,"parentId":-1,"menuId":131,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":186,"parentId":-1,"menuId":131,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":[{"id":318,"menuApiId":401,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":17,"parentId":-1,"menuId":15,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":19,"parentId":-1,"menuId":15,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":21,"parentId":-1,"menuId":15,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","title":"修改用户状态","types":"change-status","description":"","status":1,"children":null}],"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":161,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":25,"parentId":-1,"menuId":13,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":26,"parentId":-1,"menuId":13,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":252,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":33,"parentId":-1,"menuId":12,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":34,"parentId":-1,"menuId":12,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":180,"menuApiId":257,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":36,"parentId":-1,"menuId":14,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":38,"parentId":-1,"menuId":14,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":184,"menuApiId":263,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":39,"parentId":-1,"menuId":10,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":41,"parentId":-1,"menuId":10,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":189,"menuApiId":268,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":163,"parentId":-1,"menuId":119,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":165,"parentId":-1,"menuId":119,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":168,"parentId":165,"menuId":119,"name":"开启","title":"开启","types":"on","description":"","status":1,"children":null},{"id":169,"parentId":165,"menuId":119,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]},{"id":166,"parentId":-1,"menuId":119,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":167,"parentId":-1,"menuId":119,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":391,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"button":null,"column":null,"api":null,"children":null},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":275,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":48,"parentId":-1,"menuId":110,"name":"启用","title":"启用","types":"start","description":"","status":1,"children":null},{"id":49,"parentId":-1,"menuId":110,"name":"停用","title":"停用","types":"stop","description":"","status":1,"children":null},{"id":190,"parentId":-1,"menuId":110,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":191,"parentId":-1,"menuId":110,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","title":"通信方式","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:03:40","children":null},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","title":"功能类型","code":"handleType","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:04:08","children":null}],"api":[{"id":205,"menuApiId":284,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":44,"parentId":-1,"menuId":18,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":276,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":45,"parentId":-1,"menuId":49,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":200,"menuApiId":279,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":47,"parentId":-1,"menuId":50,"name":"强退","title":"强退","types":"out","description":"","status":1,"children":null}],"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":282,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":189,"parentId":-1,"menuId":133,"name":"保存","title":"保存","types":"save","description":"","status":1,"children":null}],"column":null,"api":[{"id":321,"menuApiId":409,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0}],"children":null},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":51,"parentId":-1,"menuId":2,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":109,"parentId":-1,"menuId":2,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":110,"parentId":-1,"menuId":2,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","title":"按钮权限","types":"btn","description":"","status":1,"children":null},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","title":"列表权限","types":"list","description":"","status":1,"children":null}]}],"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":208,"menuApiId":287,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":113,"parentId":-1,"menuId":16,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":114,"parentId":-1,"menuId":16,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":255,"menuApiId":331,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":132,"parentId":-1,"menuId":85,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":134,"parentId":-1,"menuId":85,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":326,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0}],"children":null},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":125,"parentId":-1,"menuId":46,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":127,"parentId":-1,"menuId":46,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","title":"执行一次","types":"do","description":"","status":1,"children":null}],"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":278,"menuApiId":352,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":116,"parentId":-1,"menuId":21,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":118,"parentId":-1,"menuId":21,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":264,"menuApiId":339,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":119,"parentId":-1,"menuId":22,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":121,"parentId":-1,"menuId":22,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":271,"menuApiId":345,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":50,"parentId":-1,"menuId":32,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":123,"parentId":-1,"menuId":32,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":124,"parentId":-1,"menuId":32,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":385,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":28,"parentId":-1,"menuId":37,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":31,"parentId":-1,"menuId":37,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":32,"parentId":-1,"menuId":37,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":147,"parentId":-1,"menuId":37,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":148,"parentId":-1,"menuId":37,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":168,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":78,"parentId":-1,"menuId":39,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":81,"parentId":-1,"menuId":39,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":82,"parentId":-1,"menuId":39,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","title":"设置聚合","types":"juhe","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":161,"menuApiId":238,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":84,"parentId":-1,"menuId":61,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":86,"parentId":-1,"menuId":61,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","title":"发布与停止","types":"pro-status","description":"","status":1,"children":null}],"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":219,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":88,"parentId":-1,"menuId":64,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":91,"parentId":-1,"menuId":64,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":243,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0}],"children":null}]},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":129,"parentId":-1,"menuId":48,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":131,"parentId":-1,"menuId":48,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":360,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-3c8fa61c3408f79bfdcf006a9dbdbb3c -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4yMzMiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMiAxNzo1NjoxNSIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAyIDE3OjU2OjE0IiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkwOTg2Mzc5LCJuYmYiOjE2OTA5NzAxNjl9.hRANeomH7WTshuEpGDuNSEmJ7t8thsHqE_Q8lbHm1To","uuId":"9d96c6dbdf02e008c3bd9cbaa412cdce"} -$4 -PXAT -$13 -1690986379413 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.column.switch -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.button.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$23 -SagooIOT_tag_sysDictTag -$23 -["sysDict_api_methods"] -*3 -$3 -SET -$28 -SagooIOT_sysDict_api_methods -$285 -{"info":{"name":"接口请求方式","remark":""},"values":[{"key":"GET","value":"GET","isDefault":0,"remark":""},{"key":"POST","value":"POST","isDefault":0,"remark":""},{"key":"PUT","value":"PUT","isDefault":0,"remark":""},{"key":"DELETE","value":"DELETE","isDefault":0,"remark":""}]} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970268480 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970268483 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$23 -SagooIOT_tag_sysDictTag -$23 -["sysDict_api_methods"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$23 -SagooIOT_tag_sysDictTag -$23 -["sysDict_api_methods"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$23 -SagooIOT_tag_sysDictTag -$23 -["sysDict_api_methods"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970331427 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970331428 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970331429 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970331429 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970397352 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970397356 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970397362 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1690970397365 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$19 -SagooIOT_userInfo_1 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-baa38e76f7ff350a62dd0a458f126b4d -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-3c8fa61c3408f79bfdcf006a9dbdbb3c -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-03":0,"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022113163 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022113164 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022113166 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022113168 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022113169 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022113170 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022271654 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022271656 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022271658 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022271660 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022271661 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691022271662 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023440264 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023440267 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023440270 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023440272 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023440276 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023440278 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023910568 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023910570 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023910572 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023910573 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023910575 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691023910577 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691024437341 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691024437343 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691024437345 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691024437353 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691024437356 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691024437362 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691025126577 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691025126578 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691025126588 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691025126589 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691025126594 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691025126595 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031034965 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031034968 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031034970 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031034972 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031034973 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031034978 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031593935 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031593936 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031593938 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031593943 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031593945 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031593947 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4xMjAiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMiAxNzo1NjoxOSIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAyIDE3OjU2OjE5IiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkxMDQ3NzcwLCJuYmYiOjE2OTEwMzE1NjB9.i4NoVHvTC6JQjmYDtAAfUTMreeQSjonwiGZoEQYP8NM","uuId":"dae53cca882e7db5424c995cef0a5d6d"} -$4 -PXAT -$13 -1691047770898 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031630915 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031630916 -*5 -$3 -SET -$19 -SagooIOT_userInfo_1 -$581 -{"id":1,"userName":"admin","userTypes":"1","mobile":"15516567192","userNickname":"超级管理员","birthday":"","userEmail":"yxh669@qq.com1111","sex":2,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-03-28/crhqhlhsqd39kbdfqt.png","deptId":6,"remark":"","isAdmin":1,"address":"四川省成都市青羊区东城根南街68号院","describe":"大家好,我是admin。","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-03 10:59:31","status":1,"createBy":1,"createdAt":"2022-08-03 21:33:30","updateBy":1,"updatedAt":"2023-08-03 10:59:30","roleIds":[1],"postIds":[6]} -$4 -PXAT -$13 -1691035170921 -*3 -$3 -SET -$24 -SagooIOT_userAuthorize_1 -$96494 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":116,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0}],"children":null},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":157,"parentId":-1,"menuId":92,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":390,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":10,"parentId":-1,"menuId":34,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":13,"parentId":-1,"menuId":34,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":14,"parentId":-1,"menuId":34,"name":"导入","title":"导入","types":"upload","description":"","status":1,"children":null},{"id":15,"parentId":-1,"menuId":34,"name":"导出","title":"导出","types":"dwonload","description":"","status":1,"children":null},{"id":196,"parentId":-1,"menuId":34,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":null},{"id":197,"parentId":-1,"menuId":34,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":131,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":94,"parentId":-1,"menuId":36,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":97,"parentId":-1,"menuId":36,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","title":"启用与停止","types":"status","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null},{"id":260,"parentId":-1,"menuId":36,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-17 21:18:50","children":null}],"api":[{"id":106,"menuApiId":183,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":192,"parentId":-1,"menuId":51,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","title":"批量绑定","types":"mutipleBind","description":"","status":1,"children":null}],"column":[{"id":261,"parentId":-1,"menuId":51,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:00","children":null},{"id":262,"parentId":-1,"menuId":51,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:15","children":null},{"id":263,"parentId":-1,"menuId":51,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:36","children":null},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:51","children":null},{"id":265,"parentId":-1,"menuId":51,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:06","children":null},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:35","children":null},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:55","children":null},{"id":268,"parentId":-1,"menuId":51,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:25:12","children":null}],"api":[{"id":112,"menuApiId":189,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":16,"parentId":-1,"menuId":35,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":93,"parentId":-1,"menuId":35,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":133,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":198,"parentId":-1,"menuId":136,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":200,"parentId":-1,"menuId":136,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":null,"api":null,"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":100,"parentId":-1,"menuId":66,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":105,"parentId":-1,"menuId":66,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":104,"parentId":105,"menuId":66,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":106,"parentId":105,"menuId":66,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":107,"parentId":105,"menuId":66,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":313,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":311,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":312,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":139,"parentId":-1,"menuId":70,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":140,"parentId":139,"menuId":70,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":141,"parentId":139,"menuId":70,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null},{"id":142,"parentId":139,"menuId":70,"name":"删除","title":"删除","types":"delete","description":"","status":1,"children":null}]},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":144,"parentId":-1,"menuId":70,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":319,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":320,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":321,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":64,"menuApiId":138,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":150,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":158,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":157,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":158,"parentId":-1,"menuId":41,"name":"管理","title":"管理","types":"setting","description":"","status":1,"children":null},{"id":159,"parentId":-1,"menuId":41,"name":"配置","title":"配置","types":"edit","description":"","status":1,"children":null}],"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":161,"parentId":-1,"menuId":42,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":151,"parentId":-1,"menuId":114,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":153,"parentId":-1,"menuId":114,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":154,"parentId":-1,"menuId":114,"name":"状态","title":"状态","types":"status","description":"","status":1,"children":null},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","title":"级别设置","types":"level","description":"","status":1,"children":null}],"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":367,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":150,"parentId":-1,"menuId":115,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":368,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":183,"parentId":-1,"menuId":131,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":185,"parentId":-1,"menuId":131,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":186,"parentId":-1,"menuId":131,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":[{"id":318,"menuApiId":401,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":17,"parentId":-1,"menuId":15,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":19,"parentId":-1,"menuId":15,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":21,"parentId":-1,"menuId":15,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","title":"修改用户状态","types":"change-status","description":"","status":1,"children":null}],"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":161,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":25,"parentId":-1,"menuId":13,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":26,"parentId":-1,"menuId":13,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":252,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":33,"parentId":-1,"menuId":12,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":34,"parentId":-1,"menuId":12,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":180,"menuApiId":257,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":36,"parentId":-1,"menuId":14,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":38,"parentId":-1,"menuId":14,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":184,"menuApiId":263,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":39,"parentId":-1,"menuId":10,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":41,"parentId":-1,"menuId":10,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":189,"menuApiId":268,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":163,"parentId":-1,"menuId":119,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":165,"parentId":-1,"menuId":119,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":168,"parentId":165,"menuId":119,"name":"开启","title":"开启","types":"on","description":"","status":1,"children":null},{"id":169,"parentId":165,"menuId":119,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]},{"id":166,"parentId":-1,"menuId":119,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":167,"parentId":-1,"menuId":119,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":391,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"button":null,"column":null,"api":null,"children":null},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":275,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":48,"parentId":-1,"menuId":110,"name":"启用","title":"启用","types":"start","description":"","status":1,"children":null},{"id":49,"parentId":-1,"menuId":110,"name":"停用","title":"停用","types":"stop","description":"","status":1,"children":null},{"id":190,"parentId":-1,"menuId":110,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":191,"parentId":-1,"menuId":110,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","title":"通信方式","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:03:40","children":null},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","title":"功能类型","code":"handleType","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:04:08","children":null}],"api":[{"id":205,"menuApiId":284,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":44,"parentId":-1,"menuId":18,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":276,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":45,"parentId":-1,"menuId":49,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":200,"menuApiId":279,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":47,"parentId":-1,"menuId":50,"name":"强退","title":"强退","types":"out","description":"","status":1,"children":null}],"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":282,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":189,"parentId":-1,"menuId":133,"name":"保存","title":"保存","types":"save","description":"","status":1,"children":null}],"column":null,"api":[{"id":321,"menuApiId":409,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0}],"children":null},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":51,"parentId":-1,"menuId":2,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":109,"parentId":-1,"menuId":2,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":110,"parentId":-1,"menuId":2,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","title":"按钮权限","types":"btn","description":"","status":1,"children":null},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","title":"列表权限","types":"list","description":"","status":1,"children":null}]}],"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":208,"menuApiId":287,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":113,"parentId":-1,"menuId":16,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":114,"parentId":-1,"menuId":16,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":255,"menuApiId":331,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":132,"parentId":-1,"menuId":85,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":134,"parentId":-1,"menuId":85,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":326,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0}],"children":null},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":125,"parentId":-1,"menuId":46,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":127,"parentId":-1,"menuId":46,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","title":"执行一次","types":"do","description":"","status":1,"children":null}],"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":278,"menuApiId":352,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":116,"parentId":-1,"menuId":21,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":118,"parentId":-1,"menuId":21,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":264,"menuApiId":339,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":119,"parentId":-1,"menuId":22,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":121,"parentId":-1,"menuId":22,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":271,"menuApiId":345,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":50,"parentId":-1,"menuId":32,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":123,"parentId":-1,"menuId":32,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":124,"parentId":-1,"menuId":32,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":385,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":28,"parentId":-1,"menuId":37,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":31,"parentId":-1,"menuId":37,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":32,"parentId":-1,"menuId":37,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":147,"parentId":-1,"menuId":37,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":148,"parentId":-1,"menuId":37,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":168,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":78,"parentId":-1,"menuId":39,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":81,"parentId":-1,"menuId":39,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":82,"parentId":-1,"menuId":39,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","title":"设置聚合","types":"juhe","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":161,"menuApiId":238,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":84,"parentId":-1,"menuId":61,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":86,"parentId":-1,"menuId":61,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","title":"发布与停止","types":"pro-status","description":"","status":1,"children":null}],"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":219,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":88,"parentId":-1,"menuId":64,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":91,"parentId":-1,"menuId":64,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":243,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0}],"children":null}]},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":129,"parentId":-1,"menuId":48,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":131,"parentId":-1,"menuId":48,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":360,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031747087 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031747087 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031747089 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031747090 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031814957 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031814960 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$16 -SagooIOT_sysMenu -$39685 -[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:53:23","updatedBy":1,"updatedAt":"2022-12-09 23:58:36","deletedBy":0,"deletedAt":""},{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-07 23:31:31","updatedBy":1,"updatedAt":"2022-11-28 10:19:28","deletedBy":0,"deletedAt":""},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 04:51:33","updatedBy":1,"updatedAt":"2022-12-09 23:58:43","deletedBy":0,"deletedAt":""},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 20:49:57","updatedBy":1,"updatedAt":"2022-12-09 23:58:50","deletedBy":0,"deletedAt":""},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:52:35","updatedBy":1,"updatedAt":"2022-12-09 23:58:58","deletedBy":0,"deletedAt":""},{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-08 21:27:01","updatedBy":0,"updatedAt":"2023-04-08 21:27:01","deletedBy":0,"deletedAt":""},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 15:44:01","updatedBy":1,"updatedAt":"2022-12-08 23:04:17","deletedBy":0,"deletedAt":""},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:42:40","updatedBy":1,"updatedAt":"2023-05-22 21:44:16","deletedBy":0,"deletedAt":""},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-30 02:53:26","updatedBy":1,"updatedAt":"2022-12-09 23:40:36","deletedBy":0,"deletedAt":""},{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 09:09:30","updatedBy":1,"updatedAt":"2022-12-08 23:04:35","deletedBy":0,"deletedAt":""},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 20:48:36","updatedBy":1,"updatedAt":"2023-04-16 19:32:43","deletedBy":0,"deletedAt":""},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 06:20:26","updatedBy":1,"updatedAt":"2022-12-09 23:48:28","deletedBy":0,"deletedAt":""},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-08 23:11:42","updatedBy":1,"updatedAt":"2022-10-09 07:15:53","deletedBy":0,"deletedAt":""},{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 10:26:43","updatedBy":1,"updatedAt":"2023-02-09 21:49:18","deletedBy":0,"deletedAt":""},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:06:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:21","deletedBy":0,"deletedAt":""},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 06:50:33","updatedBy":1,"updatedAt":"2023-02-09 21:49:27","deletedBy":0,"deletedAt":""},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 07:54:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:57","deletedBy":0,"deletedAt":""},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:57:26","updatedBy":1,"updatedAt":"2022-12-09 23:51:54","deletedBy":0,"deletedAt":""},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-09 11:15:21","updatedBy":1,"updatedAt":"2023-02-09 21:49:38","deletedBy":0,"deletedAt":""},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-11 17:14:19","updatedBy":0,"updatedAt":"2022-10-11 17:14:19","deletedBy":0,"deletedAt":""},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:24","updatedBy":1,"updatedAt":"2022-12-08 23:04:43","deletedBy":0,"deletedAt":""},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-28 17:01:38","updatedBy":1,"updatedAt":"2023-02-09 21:49:47","deletedBy":0,"deletedAt":""},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 22:13:54","updatedBy":1,"updatedAt":"2022-12-09 23:57:48","deletedBy":0,"deletedAt":""},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 06:59:54","updatedBy":1,"updatedAt":"2022-12-09 23:59:06","deletedBy":0,"deletedAt":""},{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 16:13:33","updatedBy":1,"updatedAt":"2023-08-02 17:28:27","deletedBy":0,"deletedAt":""},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-05 06:15:26","updatedBy":1,"updatedAt":"2022-12-10 00:01:38","deletedBy":0,"deletedAt":""},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/record-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:40:07","updatedBy":1,"updatedAt":"2023-08-03 11:02:39","deletedBy":0,"deletedAt":""},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:54:55","updatedBy":1,"updatedAt":"2022-12-10 00:01:45","deletedBy":0,"deletedAt":""},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-20 23:40:21","updatedBy":1,"updatedAt":"2023-03-20 23:45:02","deletedBy":0,"deletedAt":""},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:11:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:44","deletedBy":0,"deletedAt":""},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:08:47","updatedBy":1,"updatedAt":"2022-12-09 23:50:36","deletedBy":0,"deletedAt":""},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-25 18:41:55","updatedBy":1,"updatedAt":"2022-12-10 00:11:45","deletedBy":0,"deletedAt":""},{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-21 12:50:32","updatedBy":1,"updatedAt":"2022-12-08 22:57:15","deletedBy":0,"deletedAt":""},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 12:31:06","updatedBy":1,"updatedAt":"2023-06-05 07:08:02","deletedBy":0,"deletedAt":""},{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-10 09:16:37","updatedBy":1,"updatedAt":"2022-12-09 23:57:32","deletedBy":0,"deletedAt":""},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-12 11:50:16","updatedBy":1,"updatedAt":"2022-12-08 22:57:30","deletedBy":0,"deletedAt":""},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-11 07:50:06","updatedBy":1,"updatedAt":"2022-12-09 23:54:21","deletedBy":0,"deletedAt":""},{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:24","updatedBy":1,"updatedAt":"2022-12-09 23:54:34","deletedBy":0,"deletedAt":""},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:33:09","updatedBy":1,"updatedAt":"2022-12-09 23:54:42","deletedBy":0,"deletedAt":""},{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 05:59:08","updatedBy":1,"updatedAt":"2022-12-09 23:53:00","deletedBy":0,"deletedAt":""},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-14 22:01:07","updatedBy":1,"updatedAt":"2022-12-09 23:53:07","deletedBy":0,"deletedAt":""},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-29 08:23:03","updatedBy":1,"updatedAt":"2023-01-29 08:24:17","deletedBy":0,"deletedAt":""},{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:08:05","updatedBy":1,"updatedAt":"2023-03-02 13:11:39","deletedBy":0,"deletedAt":""},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:16:40","updatedBy":1,"updatedAt":"2023-03-02 13:11:55","deletedBy":0,"deletedAt":""},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-02 13:10:46","updatedBy":1,"updatedAt":"2023-03-02 13:17:21","deletedBy":0,"deletedAt":""},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:05:48","updatedBy":1,"updatedAt":"2023-04-06 21:39:21","deletedBy":0,"deletedAt":""},{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:08:29","updatedBy":1,"updatedAt":"2023-04-09 20:49:11","deletedBy":0,"deletedAt":""},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-14 22:59:56","updatedBy":1,"updatedAt":"2023-04-14 23:27:00","deletedBy":0,"deletedAt":""},{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:44:01","updatedBy":0,"updatedAt":"2023-05-22 21:44:01","deletedBy":0,"deletedAt":""},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 11:45:53","updatedBy":1,"updatedAt":"2023-06-05 07:07:43","deletedBy":0,"deletedAt":""},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 05:59:18","updatedBy":1,"updatedAt":"2022-12-10 00:11:30","deletedBy":0,"deletedAt":""},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 14:53:36","updatedBy":1,"updatedAt":"2022-12-10 00:00:39","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 22:55:17","updatedBy":1,"updatedAt":"2022-12-09 23:59:48","deletedBy":0,"deletedAt":""},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 07:01:59","updatedBy":1,"updatedAt":"2022-12-09 23:59:57","deletedBy":0,"deletedAt":""},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 15:04:21","updatedBy":1,"updatedAt":"2022-12-10 00:02:00","deletedBy":0,"deletedAt":""},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 02:21:34","updatedBy":1,"updatedAt":"2022-12-10 00:02:25","deletedBy":0,"deletedAt":""},{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 15:44:43","updatedBy":1,"updatedAt":"2022-12-09 23:49:20","deletedBy":0,"deletedAt":""},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 08:02:39","updatedBy":1,"updatedAt":"2022-12-10 00:03:36","deletedBy":0,"deletedAt":""},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn:8082/#/device-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:11:36","updatedBy":1,"updatedAt":"2022-12-09 23:51:38","deletedBy":0,"deletedAt":""},{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 16:57:23","updatedBy":1,"updatedAt":"2022-12-10 00:04:05","deletedBy":0,"deletedAt":""},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:10:38","updatedBy":1,"updatedAt":"2022-12-08 23:04:50","deletedBy":0,"deletedAt":""},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:36","updatedBy":1,"updatedAt":"2022-12-10 00:04:16","deletedBy":0,"deletedAt":""},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:54:33","updatedBy":1,"updatedAt":"2022-12-10 00:04:23","deletedBy":0,"deletedAt":""},{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 21:01:00","updatedBy":1,"updatedAt":"2022-12-09 23:52:18","deletedBy":0,"deletedAt":""},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 05:02:15","updatedBy":1,"updatedAt":"2022-12-09 23:52:33","deletedBy":0,"deletedAt":""},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 21:20:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:00","deletedBy":0,"deletedAt":""},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:48:19","updatedBy":1,"updatedAt":"2022-12-09 23:43:55","deletedBy":0,"deletedAt":""},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 06:43:34","updatedBy":1,"updatedAt":"2022-12-10 00:11:38","deletedBy":0,"deletedAt":""},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-14 20:25:37","updatedBy":1,"updatedAt":"2022-12-10 00:00:50","deletedBy":0,"deletedAt":""},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-15 06:40:43","updatedBy":1,"updatedAt":"2022-12-10 00:00:58","deletedBy":0,"deletedAt":""},{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 12:12:59","updatedBy":1,"updatedAt":"2022-12-08 23:09:21","deletedBy":0,"deletedAt":""},{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 21:33:48","updatedBy":1,"updatedAt":"2022-12-08 23:10:27","deletedBy":0,"deletedAt":""},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 07:30:33","updatedBy":1,"updatedAt":"2022-12-10 00:05:11","deletedBy":0,"deletedAt":""},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 19:37:24","updatedBy":1,"updatedAt":"2022-12-10 00:05:52","deletedBy":0,"deletedAt":""},{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-31 02:55:36","updatedBy":1,"updatedAt":"2022-12-09 23:40:55","deletedBy":0,"deletedAt":""},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-01 07:05:44","updatedBy":1,"updatedAt":"2022-12-09 23:43:40","deletedBy":0,"deletedAt":""},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 18:10:41","updatedBy":1,"updatedAt":"2022-12-09 23:43:48","deletedBy":0,"deletedAt":""},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 02:31:20","updatedBy":1,"updatedAt":"2022-12-09 23:41:05","deletedBy":0,"deletedAt":""},{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-05 10:36:11","updatedBy":1,"updatedAt":"2022-12-09 23:46:49","deletedBy":0,"deletedAt":""},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 16:21:10","updatedBy":1,"updatedAt":"2022-12-09 23:46:56","deletedBy":0,"deletedAt":""},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:46:52","updatedBy":1,"updatedAt":"2022-12-09 23:47:02","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$16 -SagooIOT_sysMenu -$39689 -[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:53:23","updatedBy":1,"updatedAt":"2022-12-09 23:58:36","deletedBy":0,"deletedAt":""},{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-07 23:31:31","updatedBy":1,"updatedAt":"2022-11-28 10:19:28","deletedBy":0,"deletedAt":""},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 04:51:33","updatedBy":1,"updatedAt":"2022-12-09 23:58:43","deletedBy":0,"deletedAt":""},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 20:49:57","updatedBy":1,"updatedAt":"2022-12-09 23:58:50","deletedBy":0,"deletedAt":""},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:52:35","updatedBy":1,"updatedAt":"2022-12-09 23:58:58","deletedBy":0,"deletedAt":""},{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-08 21:27:01","updatedBy":0,"updatedAt":"2023-04-08 21:27:01","deletedBy":0,"deletedAt":""},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 15:44:01","updatedBy":1,"updatedAt":"2022-12-08 23:04:17","deletedBy":0,"deletedAt":""},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:42:40","updatedBy":1,"updatedAt":"2023-05-22 21:44:16","deletedBy":0,"deletedAt":""},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-30 02:53:26","updatedBy":1,"updatedAt":"2022-12-09 23:40:36","deletedBy":0,"deletedAt":""},{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 09:09:30","updatedBy":1,"updatedAt":"2022-12-08 23:04:35","deletedBy":0,"deletedAt":""},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-09 20:48:36","updatedBy":1,"updatedAt":"2023-04-16 19:32:43","deletedBy":0,"deletedAt":""},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 06:20:26","updatedBy":1,"updatedAt":"2022-12-09 23:48:28","deletedBy":0,"deletedAt":""},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-08 23:11:42","updatedBy":1,"updatedAt":"2022-10-09 07:15:53","deletedBy":0,"deletedAt":""},{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 10:26:43","updatedBy":1,"updatedAt":"2023-02-09 21:49:18","deletedBy":0,"deletedAt":""},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:06:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:21","deletedBy":0,"deletedAt":""},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 06:50:33","updatedBy":1,"updatedAt":"2023-02-09 21:49:27","deletedBy":0,"deletedAt":""},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 07:54:24","updatedBy":1,"updatedAt":"2022-12-09 23:50:57","deletedBy":0,"deletedAt":""},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:57:26","updatedBy":1,"updatedAt":"2022-12-09 23:51:54","deletedBy":0,"deletedAt":""},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-09 11:15:21","updatedBy":1,"updatedAt":"2023-02-09 21:49:38","deletedBy":0,"deletedAt":""},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-11 17:14:19","updatedBy":0,"updatedAt":"2022-10-11 17:14:19","deletedBy":0,"deletedAt":""},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:24","updatedBy":1,"updatedAt":"2022-12-08 23:04:43","deletedBy":0,"deletedAt":""},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-28 17:01:38","updatedBy":1,"updatedAt":"2023-02-09 21:49:47","deletedBy":0,"deletedAt":""},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-04 22:13:54","updatedBy":1,"updatedAt":"2022-12-09 23:57:48","deletedBy":0,"deletedAt":""},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 06:59:54","updatedBy":1,"updatedAt":"2022-12-09 23:59:06","deletedBy":0,"deletedAt":""},{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 16:13:33","updatedBy":1,"updatedAt":"2023-08-02 17:28:27","deletedBy":0,"deletedAt":""},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-05 06:15:26","updatedBy":1,"updatedAt":"2022-12-10 00:01:38","deletedBy":0,"deletedAt":""},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/record-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:40:07","updatedBy":1,"updatedAt":"2023-08-03 11:02:39","deletedBy":0,"deletedAt":""},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 04:54:55","updatedBy":1,"updatedAt":"2022-12-10 00:01:45","deletedBy":0,"deletedAt":""},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-20 23:40:21","updatedBy":1,"updatedAt":"2023-03-20 23:45:02","deletedBy":0,"deletedAt":""},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:11:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:44","deletedBy":0,"deletedAt":""},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-04 02:08:47","updatedBy":1,"updatedAt":"2022-12-09 23:50:36","deletedBy":0,"deletedAt":""},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-25 18:41:55","updatedBy":1,"updatedAt":"2022-12-10 00:11:45","deletedBy":0,"deletedAt":""},{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-21 12:50:32","updatedBy":1,"updatedAt":"2022-12-08 22:57:15","deletedBy":0,"deletedAt":""},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 12:31:06","updatedBy":1,"updatedAt":"2023-06-05 07:08:02","deletedBy":0,"deletedAt":""},{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-10 09:16:37","updatedBy":1,"updatedAt":"2022-12-09 23:57:32","deletedBy":0,"deletedAt":""},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-10-12 11:50:16","updatedBy":1,"updatedAt":"2022-12-08 22:57:30","deletedBy":0,"deletedAt":""},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-11 07:50:06","updatedBy":1,"updatedAt":"2022-12-09 23:54:21","deletedBy":0,"deletedAt":""},{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-10 23:14:24","updatedBy":1,"updatedAt":"2022-12-09 23:54:34","deletedBy":0,"deletedAt":""},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-11 23:33:09","updatedBy":1,"updatedAt":"2022-12-09 23:54:42","deletedBy":0,"deletedAt":""},{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-15 05:59:08","updatedBy":1,"updatedAt":"2022-12-09 23:53:00","deletedBy":0,"deletedAt":""},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-11-14 22:01:07","updatedBy":1,"updatedAt":"2022-12-09 23:53:07","deletedBy":0,"deletedAt":""},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-01-29 08:23:03","updatedBy":1,"updatedAt":"2023-01-29 08:24:17","deletedBy":0,"deletedAt":""},{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:08:05","updatedBy":1,"updatedAt":"2023-03-02 13:11:39","deletedBy":0,"deletedAt":""},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-02-23 21:16:40","updatedBy":1,"updatedAt":"2023-03-02 13:11:55","deletedBy":0,"deletedAt":""},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-03-02 13:10:46","updatedBy":1,"updatedAt":"2023-03-02 13:17:21","deletedBy":0,"deletedAt":""},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:05:48","updatedBy":1,"updatedAt":"2023-04-06 21:39:21","deletedBy":0,"deletedAt":""},{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-03 23:08:29","updatedBy":1,"updatedAt":"2023-04-09 20:49:11","deletedBy":0,"deletedAt":""},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-04-14 22:59:56","updatedBy":1,"updatedAt":"2023-04-14 23:27:00","deletedBy":0,"deletedAt":""},{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-05-22 21:44:01","updatedBy":0,"updatedAt":"2023-05-22 21:44:01","deletedBy":0,"deletedAt":""},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2023-06-03 11:45:53","updatedBy":1,"updatedAt":"2023-06-05 07:07:43","deletedBy":0,"deletedAt":""},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 05:59:18","updatedBy":1,"updatedAt":"2022-12-10 00:11:30","deletedBy":0,"deletedAt":""},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 14:53:36","updatedBy":1,"updatedAt":"2022-12-10 00:00:39","deletedBy":0,"deletedAt":""},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 22:55:17","updatedBy":1,"updatedAt":"2022-12-09 23:59:48","deletedBy":0,"deletedAt":""},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 07:01:59","updatedBy":1,"updatedAt":"2022-12-09 23:59:57","deletedBy":0,"deletedAt":""},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 15:04:21","updatedBy":1,"updatedAt":"2022-12-10 00:02:00","deletedBy":0,"deletedAt":""},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-08 02:21:34","updatedBy":1,"updatedAt":"2022-12-10 00:02:25","deletedBy":0,"deletedAt":""},{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 15:44:43","updatedBy":1,"updatedAt":"2022-12-09 23:49:20","deletedBy":0,"deletedAt":""},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-09 08:02:39","updatedBy":1,"updatedAt":"2022-12-10 00:03:36","deletedBy":0,"deletedAt":""},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/device-frame","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 08:11:36","updatedBy":1,"updatedAt":"2023-08-03 11:02:46","deletedBy":0,"deletedAt":""},{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-10 16:57:23","updatedBy":1,"updatedAt":"2022-12-10 00:04:05","deletedBy":0,"deletedAt":""},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:10:38","updatedBy":1,"updatedAt":"2022-12-08 23:04:50","deletedBy":0,"deletedAt":""},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 01:11:36","updatedBy":1,"updatedAt":"2022-12-10 00:04:16","deletedBy":0,"deletedAt":""},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 20:54:33","updatedBy":1,"updatedAt":"2022-12-10 00:04:23","deletedBy":0,"deletedAt":""},{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 21:01:00","updatedBy":1,"updatedAt":"2022-12-09 23:52:18","deletedBy":0,"deletedAt":""},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-11 05:02:15","updatedBy":1,"updatedAt":"2022-12-09 23:52:33","deletedBy":0,"deletedAt":""},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-07 21:20:49","updatedBy":1,"updatedAt":"2022-12-09 23:50:00","deletedBy":0,"deletedAt":""},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:48:19","updatedBy":1,"updatedAt":"2022-12-09 23:43:55","deletedBy":0,"deletedAt":""},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 06:43:34","updatedBy":1,"updatedAt":"2022-12-10 00:11:38","deletedBy":0,"deletedAt":""},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-14 20:25:37","updatedBy":1,"updatedAt":"2022-12-10 00:00:50","deletedBy":0,"deletedAt":""},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-15 06:40:43","updatedBy":1,"updatedAt":"2022-12-10 00:00:58","deletedBy":0,"deletedAt":""},{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-12 12:12:59","updatedBy":1,"updatedAt":"2022-12-08 23:09:21","deletedBy":0,"deletedAt":""},{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-13 21:33:48","updatedBy":1,"updatedAt":"2022-12-08 23:10:27","deletedBy":0,"deletedAt":""},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 07:30:33","updatedBy":1,"updatedAt":"2022-12-10 00:05:11","deletedBy":0,"deletedAt":""},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-26 19:37:24","updatedBy":1,"updatedAt":"2022-12-10 00:05:52","deletedBy":0,"deletedAt":""},{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-08-31 02:55:36","updatedBy":1,"updatedAt":"2022-12-09 23:40:55","deletedBy":0,"deletedAt":""},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-01 07:05:44","updatedBy":1,"updatedAt":"2022-12-09 23:43:40","deletedBy":0,"deletedAt":""},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 18:10:41","updatedBy":1,"updatedAt":"2022-12-09 23:43:48","deletedBy":0,"deletedAt":""},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-04 02:31:20","updatedBy":1,"updatedAt":"2022-12-09 23:41:05","deletedBy":0,"deletedAt":""},{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-05 10:36:11","updatedBy":1,"updatedAt":"2022-12-09 23:46:49","deletedBy":0,"deletedAt":""},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 16:21:10","updatedBy":1,"updatedAt":"2022-12-09 23:46:56","deletedBy":0,"deletedAt":""},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"isDeleted":0,"createdBy":1,"createdAt":"2022-09-06 20:46:52","updatedBy":1,"updatedAt":"2022-12-09 23:47:02","deletedBy":0,"deletedAt":""}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -*2 -$3 -DEL -$24 -SagooIOT_userAuthorize_1 -*2 -$3 -DEL -$19 -SagooIOT_userInfo_1 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031845749 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031845751 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031845753 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031845760 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031845763 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691031845766 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4yMzMiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMyAxMDo1OTozMSIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAzIDEwOjU5OjMwIiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkxMDQ4MDA0LCJuYmYiOjE2OTEwMzE3OTR9.s6jwTKCOY6HXm1PxoDEKs4Y6Y6Ru7a-EoOWMz4PB1oE","uuId":"dc546ac208ae883063a52fe61b3f0ee7"} -$4 -PXAT -$13 -1691048004376 -*5 -$3 -SET -$19 -SagooIOT_userInfo_1 -$581 -{"id":1,"userName":"admin","userTypes":"1","mobile":"15516567192","userNickname":"超级管理员","birthday":"","userEmail":"yxh669@qq.com1111","sex":2,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-03-28/crhqhlhsqd39kbdfqt.png","deptId":6,"remark":"","isAdmin":1,"address":"四川省成都市青羊区东城根南街68号院","describe":"大家好,我是admin。","lastLoginIp":"192.168.10.233","lastLoginTime":"2023-08-03 11:03:24","status":1,"createBy":1,"createdAt":"2022-08-03 21:33:30","updateBy":1,"updatedAt":"2023-08-03 11:03:24","roleIds":[1],"postIds":[6]} -$4 -PXAT -$13 -1691035404422 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$24 -SagooIOT_userAuthorize_1 -$96502 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":116,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0}],"children":null},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":157,"parentId":-1,"menuId":92,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":390,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":10,"parentId":-1,"menuId":34,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":13,"parentId":-1,"menuId":34,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":14,"parentId":-1,"menuId":34,"name":"导入","title":"导入","types":"upload","description":"","status":1,"children":null},{"id":15,"parentId":-1,"menuId":34,"name":"导出","title":"导出","types":"dwonload","description":"","status":1,"children":null},{"id":196,"parentId":-1,"menuId":34,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":null},{"id":197,"parentId":-1,"menuId":34,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":131,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":94,"parentId":-1,"menuId":36,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":97,"parentId":-1,"menuId":36,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","title":"启用与停止","types":"status","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null},{"id":260,"parentId":-1,"menuId":36,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-17 21:18:50","children":null}],"api":[{"id":106,"menuApiId":183,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":192,"parentId":-1,"menuId":51,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","title":"批量绑定","types":"mutipleBind","description":"","status":1,"children":null}],"column":[{"id":261,"parentId":-1,"menuId":51,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:00","children":null},{"id":262,"parentId":-1,"menuId":51,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:15","children":null},{"id":263,"parentId":-1,"menuId":51,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:36","children":null},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:51","children":null},{"id":265,"parentId":-1,"menuId":51,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:06","children":null},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:35","children":null},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:55","children":null},{"id":268,"parentId":-1,"menuId":51,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:25:12","children":null}],"api":[{"id":112,"menuApiId":189,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":16,"parentId":-1,"menuId":35,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":93,"parentId":-1,"menuId":35,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":133,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":198,"parentId":-1,"menuId":136,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":200,"parentId":-1,"menuId":136,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":null,"api":null,"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":100,"parentId":-1,"menuId":66,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":105,"parentId":-1,"menuId":66,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":104,"parentId":105,"menuId":66,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":106,"parentId":105,"menuId":66,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":107,"parentId":105,"menuId":66,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":313,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":311,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":312,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":139,"parentId":-1,"menuId":70,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":140,"parentId":139,"menuId":70,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":141,"parentId":139,"menuId":70,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null},{"id":142,"parentId":139,"menuId":70,"name":"删除","title":"删除","types":"delete","description":"","status":1,"children":null}]},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":144,"parentId":-1,"menuId":70,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":319,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":320,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":321,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":64,"menuApiId":138,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":150,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":158,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":157,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":158,"parentId":-1,"menuId":41,"name":"管理","title":"管理","types":"setting","description":"","status":1,"children":null},{"id":159,"parentId":-1,"menuId":41,"name":"配置","title":"配置","types":"edit","description":"","status":1,"children":null}],"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":161,"parentId":-1,"menuId":42,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":151,"parentId":-1,"menuId":114,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":153,"parentId":-1,"menuId":114,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":154,"parentId":-1,"menuId":114,"name":"状态","title":"状态","types":"status","description":"","status":1,"children":null},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","title":"级别设置","types":"level","description":"","status":1,"children":null}],"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":367,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":150,"parentId":-1,"menuId":115,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":368,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":183,"parentId":-1,"menuId":131,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":185,"parentId":-1,"menuId":131,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":186,"parentId":-1,"menuId":131,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":[{"id":318,"menuApiId":401,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":17,"parentId":-1,"menuId":15,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":19,"parentId":-1,"menuId":15,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":21,"parentId":-1,"menuId":15,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","title":"修改用户状态","types":"change-status","description":"","status":1,"children":null}],"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":161,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":25,"parentId":-1,"menuId":13,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":26,"parentId":-1,"menuId":13,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":252,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":33,"parentId":-1,"menuId":12,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":34,"parentId":-1,"menuId":12,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":180,"menuApiId":257,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":36,"parentId":-1,"menuId":14,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":38,"parentId":-1,"menuId":14,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":184,"menuApiId":263,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":39,"parentId":-1,"menuId":10,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":41,"parentId":-1,"menuId":10,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":189,"menuApiId":268,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":163,"parentId":-1,"menuId":119,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":165,"parentId":-1,"menuId":119,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":168,"parentId":165,"menuId":119,"name":"开启","title":"开启","types":"on","description":"","status":1,"children":null},{"id":169,"parentId":165,"menuId":119,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]},{"id":166,"parentId":-1,"menuId":119,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":167,"parentId":-1,"menuId":119,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":391,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"button":null,"column":null,"api":null,"children":null},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":275,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":48,"parentId":-1,"menuId":110,"name":"启用","title":"启用","types":"start","description":"","status":1,"children":null},{"id":49,"parentId":-1,"menuId":110,"name":"停用","title":"停用","types":"stop","description":"","status":1,"children":null},{"id":190,"parentId":-1,"menuId":110,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":191,"parentId":-1,"menuId":110,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","title":"通信方式","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:03:40","children":null},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","title":"功能类型","code":"handleType","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:04:08","children":null}],"api":[{"id":205,"menuApiId":284,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":44,"parentId":-1,"menuId":18,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":276,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":45,"parentId":-1,"menuId":49,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":200,"menuApiId":279,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":47,"parentId":-1,"menuId":50,"name":"强退","title":"强退","types":"out","description":"","status":1,"children":null}],"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":282,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":189,"parentId":-1,"menuId":133,"name":"保存","title":"保存","types":"save","description":"","status":1,"children":null}],"column":null,"api":[{"id":321,"menuApiId":409,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0}],"children":null},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":51,"parentId":-1,"menuId":2,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":109,"parentId":-1,"menuId":2,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":110,"parentId":-1,"menuId":2,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","title":"按钮权限","types":"btn","description":"","status":1,"children":null},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","title":"列表权限","types":"list","description":"","status":1,"children":null}]}],"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":208,"menuApiId":287,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":113,"parentId":-1,"menuId":16,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":114,"parentId":-1,"menuId":16,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":255,"menuApiId":331,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":132,"parentId":-1,"menuId":85,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":134,"parentId":-1,"menuId":85,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":326,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0}],"children":null},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":125,"parentId":-1,"menuId":46,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":127,"parentId":-1,"menuId":46,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","title":"执行一次","types":"do","description":"","status":1,"children":null}],"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":278,"menuApiId":352,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":116,"parentId":-1,"menuId":21,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":118,"parentId":-1,"menuId":21,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":264,"menuApiId":339,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":119,"parentId":-1,"menuId":22,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":121,"parentId":-1,"menuId":22,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":271,"menuApiId":345,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":50,"parentId":-1,"menuId":32,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":123,"parentId":-1,"menuId":32,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":124,"parentId":-1,"menuId":32,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":385,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":28,"parentId":-1,"menuId":37,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":31,"parentId":-1,"menuId":37,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":32,"parentId":-1,"menuId":37,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":147,"parentId":-1,"menuId":37,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":148,"parentId":-1,"menuId":37,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":168,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":78,"parentId":-1,"menuId":39,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":81,"parentId":-1,"menuId":39,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":82,"parentId":-1,"menuId":39,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","title":"设置聚合","types":"juhe","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":161,"menuApiId":238,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":84,"parentId":-1,"menuId":61,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":86,"parentId":-1,"menuId":61,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","title":"发布与停止","types":"pro-status","description":"","status":1,"children":null}],"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":219,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":88,"parentId":-1,"menuId":64,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":91,"parentId":-1,"menuId":64,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":243,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0}],"children":null}]},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":129,"parentId":-1,"menuId":48,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":131,"parentId":-1,"menuId":48,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":360,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032001987 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032001987 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032001989 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032001989 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageType -$340 -{"configId":3,"configName":"图片上传-图片类型","configKey":"sys.uploadFile.imageType","configValue":"jpg,jpeg,gif,npm,png,svg","configType":1,"remark":"图片上传后缀类型限制","status":0,"isDeleted":0,"createBy":0,"createdAt":"2022-08-06 12:44:46","updateBy":0,"updatedAt":"2022-08-06 12:44:46","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032016422 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageSize -$313 -{"configId":4,"configName":"图片上传-图片大小","configKey":"sys.uploadFile.imageSize","configValue":"50M","configType":1,"remark":"图片上传大小限制","status":0,"isDeleted":0,"createBy":0,"createdAt":"2022-08-06 12:45:35","updateBy":0,"updatedAt":"2022-08-06 12:45:35","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032016424 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageType -*2 -$3 -DEL -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageSize -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":16,"productAdded":0,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032080797 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032080800 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032995267 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032995269 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691032995274 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033379966 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033379969 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033379974 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033444878 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033444905 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033444906 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033515035 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033515037 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":17,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":12,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033575914 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033575916 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033575916 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033575918 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033648364 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033648365 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033708811 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691033708812 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691034640394 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691034640397 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$19 -SagooIOT_userInfo_1 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035742566 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035742567 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035742569 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035742570 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035742571 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035742573 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035743099 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035743099 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035743101 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691035743102 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041117070 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041117074 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041117078 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041581749 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041581753 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041581755 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041581757 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041581759 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041581769 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041645427 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041645428 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041645428 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041645434 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041645439 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041645443 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041645454 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041660893 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041660894 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041660895 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041660897 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041660898 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041660900 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-f19620a4c7cf3df4f6508a44883f4893 -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4yMzMiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMyAxMTowMzoyNCIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAzIDExOjAzOjI0IiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkxMDU3ODE5LCJuYmYiOjE2OTEwNDE2MDl9.Est3aXYqWiDgN9QMqdrx4n4hFv6lngZp5YmvgsSgLVk","uuId":"a5a235045e8fcc7a8772676e3d357e1a"} -$4 -PXAT -$13 -1691057819993 -*5 -$3 -SET -$19 -SagooIOT_userInfo_1 -$581 -{"id":1,"userName":"admin","userTypes":"1","mobile":"15516567192","userNickname":"超级管理员","birthday":"","userEmail":"yxh669@qq.com1111","sex":2,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-03-28/crhqhlhsqd39kbdfqt.png","deptId":6,"remark":"","isAdmin":1,"address":"四川省成都市青羊区东城根南街68号院","describe":"大家好,我是admin。","lastLoginIp":"192.168.10.120","lastLoginTime":"2023-08-03 13:47:00","status":1,"createBy":1,"createdAt":"2022-08-03 21:33:30","updateBy":1,"updatedAt":"2023-08-03 13:46:59","roleIds":[1],"postIds":[6]} -$4 -PXAT -$13 -1691045220023 -*3 -$3 -SET -$24 -SagooIOT_userAuthorize_1 -$96502 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":116,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0}],"children":null},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":157,"parentId":-1,"menuId":92,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":390,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":10,"parentId":-1,"menuId":34,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":13,"parentId":-1,"menuId":34,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":14,"parentId":-1,"menuId":34,"name":"导入","title":"导入","types":"upload","description":"","status":1,"children":null},{"id":15,"parentId":-1,"menuId":34,"name":"导出","title":"导出","types":"dwonload","description":"","status":1,"children":null},{"id":196,"parentId":-1,"menuId":34,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":null},{"id":197,"parentId":-1,"menuId":34,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":131,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":94,"parentId":-1,"menuId":36,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":97,"parentId":-1,"menuId":36,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","title":"启用与停止","types":"status","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null},{"id":260,"parentId":-1,"menuId":36,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-17 21:18:50","children":null}],"api":[{"id":106,"menuApiId":183,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":192,"parentId":-1,"menuId":51,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","title":"批量绑定","types":"mutipleBind","description":"","status":1,"children":null}],"column":[{"id":261,"parentId":-1,"menuId":51,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:00","children":null},{"id":262,"parentId":-1,"menuId":51,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:15","children":null},{"id":263,"parentId":-1,"menuId":51,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:36","children":null},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:51","children":null},{"id":265,"parentId":-1,"menuId":51,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:06","children":null},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:35","children":null},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:55","children":null},{"id":268,"parentId":-1,"menuId":51,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:25:12","children":null}],"api":[{"id":112,"menuApiId":189,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":16,"parentId":-1,"menuId":35,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":93,"parentId":-1,"menuId":35,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":133,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":198,"parentId":-1,"menuId":136,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":200,"parentId":-1,"menuId":136,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":null,"api":null,"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":100,"parentId":-1,"menuId":66,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":105,"parentId":-1,"menuId":66,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":104,"parentId":105,"menuId":66,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":106,"parentId":105,"menuId":66,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":107,"parentId":105,"menuId":66,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":313,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":311,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":312,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":139,"parentId":-1,"menuId":70,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":140,"parentId":139,"menuId":70,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":141,"parentId":139,"menuId":70,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null},{"id":142,"parentId":139,"menuId":70,"name":"删除","title":"删除","types":"delete","description":"","status":1,"children":null}]},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":144,"parentId":-1,"menuId":70,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":319,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":320,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":321,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":64,"menuApiId":138,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":150,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":158,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":157,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":158,"parentId":-1,"menuId":41,"name":"管理","title":"管理","types":"setting","description":"","status":1,"children":null},{"id":159,"parentId":-1,"menuId":41,"name":"配置","title":"配置","types":"edit","description":"","status":1,"children":null}],"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":161,"parentId":-1,"menuId":42,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":151,"parentId":-1,"menuId":114,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":153,"parentId":-1,"menuId":114,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":154,"parentId":-1,"menuId":114,"name":"状态","title":"状态","types":"status","description":"","status":1,"children":null},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","title":"级别设置","types":"level","description":"","status":1,"children":null}],"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":367,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":150,"parentId":-1,"menuId":115,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":368,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":183,"parentId":-1,"menuId":131,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":185,"parentId":-1,"menuId":131,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":186,"parentId":-1,"menuId":131,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":[{"id":318,"menuApiId":401,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":17,"parentId":-1,"menuId":15,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":19,"parentId":-1,"menuId":15,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":21,"parentId":-1,"menuId":15,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","title":"修改用户状态","types":"change-status","description":"","status":1,"children":null}],"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":161,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":25,"parentId":-1,"menuId":13,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":26,"parentId":-1,"menuId":13,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":252,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":33,"parentId":-1,"menuId":12,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":34,"parentId":-1,"menuId":12,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":180,"menuApiId":257,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":36,"parentId":-1,"menuId":14,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":38,"parentId":-1,"menuId":14,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":184,"menuApiId":263,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":39,"parentId":-1,"menuId":10,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":41,"parentId":-1,"menuId":10,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":189,"menuApiId":268,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":163,"parentId":-1,"menuId":119,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":165,"parentId":-1,"menuId":119,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":168,"parentId":165,"menuId":119,"name":"开启","title":"开启","types":"on","description":"","status":1,"children":null},{"id":169,"parentId":165,"menuId":119,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]},{"id":166,"parentId":-1,"menuId":119,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":167,"parentId":-1,"menuId":119,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":391,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"button":null,"column":null,"api":null,"children":null},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":275,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":48,"parentId":-1,"menuId":110,"name":"启用","title":"启用","types":"start","description":"","status":1,"children":null},{"id":49,"parentId":-1,"menuId":110,"name":"停用","title":"停用","types":"stop","description":"","status":1,"children":null},{"id":190,"parentId":-1,"menuId":110,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":191,"parentId":-1,"menuId":110,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","title":"通信方式","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:03:40","children":null},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","title":"功能类型","code":"handleType","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:04:08","children":null}],"api":[{"id":205,"menuApiId":284,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":44,"parentId":-1,"menuId":18,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":276,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":45,"parentId":-1,"menuId":49,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":200,"menuApiId":279,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":47,"parentId":-1,"menuId":50,"name":"强退","title":"强退","types":"out","description":"","status":1,"children":null}],"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":282,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":189,"parentId":-1,"menuId":133,"name":"保存","title":"保存","types":"save","description":"","status":1,"children":null}],"column":null,"api":[{"id":321,"menuApiId":409,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0}],"children":null},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":51,"parentId":-1,"menuId":2,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":109,"parentId":-1,"menuId":2,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":110,"parentId":-1,"menuId":2,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","title":"按钮权限","types":"btn","description":"","status":1,"children":null},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","title":"列表权限","types":"list","description":"","status":1,"children":null}]}],"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":208,"menuApiId":287,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":113,"parentId":-1,"menuId":16,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":114,"parentId":-1,"menuId":16,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":255,"menuApiId":331,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":132,"parentId":-1,"menuId":85,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":134,"parentId":-1,"menuId":85,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":326,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0}],"children":null},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":125,"parentId":-1,"menuId":46,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":127,"parentId":-1,"menuId":46,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","title":"执行一次","types":"do","description":"","status":1,"children":null}],"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":278,"menuApiId":352,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":116,"parentId":-1,"menuId":21,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":118,"parentId":-1,"menuId":21,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":264,"menuApiId":339,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":119,"parentId":-1,"menuId":22,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":121,"parentId":-1,"menuId":22,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":271,"menuApiId":345,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":50,"parentId":-1,"menuId":32,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":123,"parentId":-1,"menuId":32,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":124,"parentId":-1,"menuId":32,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":385,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":28,"parentId":-1,"menuId":37,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":31,"parentId":-1,"menuId":37,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":32,"parentId":-1,"menuId":37,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":147,"parentId":-1,"menuId":37,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":148,"parentId":-1,"menuId":37,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":168,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":78,"parentId":-1,"menuId":39,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":81,"parentId":-1,"menuId":39,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":82,"parentId":-1,"menuId":39,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","title":"设置聚合","types":"juhe","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":161,"menuApiId":238,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":84,"parentId":-1,"menuId":61,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":86,"parentId":-1,"menuId":61,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","title":"发布与停止","types":"pro-status","description":"","status":1,"children":null}],"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":219,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":88,"parentId":-1,"menuId":64,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":91,"parentId":-1,"menuId":64,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":243,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0}],"children":null}]},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":129,"parentId":-1,"menuId":48,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":131,"parentId":-1,"menuId":48,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":360,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041951005 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691041951006 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042047114 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042047117 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042047121 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042047123 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042129695 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042129696 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042129697 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042129697 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042239479 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042239481 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042337578 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042337579 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042337579 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042337581 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042337582 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042337583 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042425592 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042425605 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042678693 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042678694 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042678697 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042678699 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042829891 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042829893 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042829894 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042829896 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042829897 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042829898 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042918857 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691042918859 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":0,"msgAdded":0,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043091190 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043091197 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043091203 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043091210 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043091216 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043091222 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-f201556fdc2c56aca6c59cb7e6b8c7a7 -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4xMjAiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMyAxMzo0NzowMCIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAzIDEzOjQ2OjU5IiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkxMDU5MjQ3LCJuYmYiOjE2OTEwNDMwMzd9.HmLsW6AvLVfOj6j4bcu0fxBnGsGZDKuMsRPhYpdjftY","uuId":"7dbe5d9fdcde2666bf456bd7f0c6962c"} -$4 -PXAT -$13 -1691059247844 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043107857 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043107858 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043337077 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043337083 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043337089 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043337095 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043337107 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043337115 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":1,"msgAdded":1,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-00b0b80e267dd2597c51aa7b57f891a9 -$917 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxMCwidXNlck5hbWUiOiJkZW1vIiwidXNlclR5cGVzIjoic3lzdGVtIiwibW9iaWxlIjoiMTg3MTExMTExMTEiLCJ1c2VyTmlja25hbWUiOiJhZG1pbiIsImJpcnRoZGF5IjoiIiwidXNlclBhc3N3b3JkIjoiIiwidXNlclNhbHQiOiJrNWpqakIzVlU4IiwidXNlckVtYWlsIjoiIiwic2V4IjowLCJhdmF0YXIiOiJodHRwczovL3poZ3kuc2Fnb28uY24vYmFzZS1hcGkvdXBsb2FkX2ZpbGUvMjAyMy0wNS0xOS9jc3E1OXIyZW9yb2VvNXRjb3kucG5nIiwiZGVwdElkIjozLCJyZW1hcmsiOiIiLCJpc0FkbWluIjoxLCJhZGRyZXNzIjoiIiwiZGVzY3JpYmUiOiIiLCJsYXN0TG9naW5JcCI6IjE5Mi4xNjguMTAuMTIwIiwibGFzdExvZ2luVGltZSI6IjIwMjMtMDgtMDIgMTc6MDI6MTAiLCJzdGF0dXMiOjEsImlzRGVsZXRlZCI6MCwiY3JlYXRlQnkiOjEsImNyZWF0ZWRBdCI6IjIwMjItMTEtMDMgMDA6MTk6NTAiLCJ1cGRhdGVCeSI6MTAsInVwZGF0ZWRBdCI6IjIwMjMtMDgtMDIgMTc6MDI6MTAiLCJkZWxldGVkQnkiOjAsImRlbGV0ZWRBdCI6IiJ9LCJleHAiOjE2OTEwNTk0ODMsIm5iZiI6MTY5MTA0MzI3M30.Z81-J5kX-T33PUzjqaG0HVkkjFKRtFl8S-6iFuygVmU","uuId":"3a10bd437afc5772327898fb31189530"} -$4 -PXAT -$13 -1691059483267 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043343280 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043343282 -*5 -$3 -SET -$20 -SagooIOT_userInfo_10 -$483 -{"id":10,"userName":"demo","userTypes":"system","mobile":"18711111111","userNickname":"admin","birthday":"","userEmail":"","sex":0,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-05-19/csq59r2eoroeo5tcoy.png","deptId":3,"remark":"","isAdmin":1,"address":"","describe":"","lastLoginIp":"192.168.10.43","lastLoginTime":"2023-08-03 14:14:43","status":1,"createBy":1,"createdAt":"2022-11-03 00:19:50","updateBy":10,"updatedAt":"2023-08-03 14:14:43","roleIds":[7],"postIds":[5]} -$4 -PXAT -$13 -1691046883288 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.column.switch -$286 -{"configId":25,"configName":"列表开关","configKey":"sys.column.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:09:18","updateBy":10,"updatedAt":"2023-04-10 13:24:48","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043343303 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$38 -SagooIOT_sysConfigTagsys.button.switch -$286 -{"configId":26,"configName":"按钮开关","configKey":"sys.button.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:10:36","updateBy":10,"updatedAt":"2023-04-10 13:24:45","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043343304 -*3 -$3 -SET -$25 -SagooIOT_userAuthorize_10 -$87455 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":0,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0},{"id":56,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的风力图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getWindpowerEchartById","remark":"","status":1,"sort":0},{"id":57,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的温度图表","types":2,"method":"","address":"/api/v1/envirotronics/weather/getTemperatureEchartById","remark":"","status":1,"sort":0},{"id":58,"menuApiId":0,"parentId":90,"name":"根据ID获取指定城市的天气","types":2,"method":"","address":"/api/v1/envirotronics/weather/getInfoById","remark":"","status":1,"sort":0},{"id":238,"menuApiId":0,"parentId":237,"name":"城市-风力-日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList2","remark":"","status":1,"sort":0}],"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":0,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":0,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0},{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0},{"id":102,"menuApiId":0,"parentId":90,"name":"产品:列表","types":2,"method":"","address":"/api/v1/product/list","remark":"","status":1,"sort":0},{"id":103,"menuApiId":0,"parentId":90,"name":"产品:详情","types":2,"method":"","address":"/api/v1/product/detail","remark":"","status":1,"sort":0},{"id":104,"menuApiId":0,"parentId":90,"name":"产品:详情,按key查询","types":2,"method":"","address":"/api/v1/product/get","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null}],"api":[{"id":117,"menuApiId":0,"parentId":90,"name":"设备:搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/device/page_list","remark":"","status":1,"sort":0},{"id":118,"menuApiId":0,"parentId":90,"name":"设备:详情","types":2,"method":"","address":"/api/v1/product/device/detail","remark":"","status":1,"sort":0},{"id":119,"menuApiId":0,"parentId":90,"name":"设备:详情,按key查询","types":2,"method":"","address":"/api/v1/product/device/get","remark":"","status":1,"sort":0},{"id":122,"menuApiId":0,"parentId":90,"name":"数据类型:列表","types":2,"method":"","address":"/api/v1/product/tsl/data_type","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":112,"menuApiId":0,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0},{"id":113,"menuApiId":0,"parentId":90,"name":"设备:运行状态","types":2,"method":"","address":"/api/v1/product/device/run_status","remark":"","status":1,"sort":0},{"id":114,"menuApiId":0,"parentId":90,"name":"设备:获取指定属性值","types":2,"method":"","address":"/api/v1/product/device/property/get","remark":"","status":1,"sort":0},{"id":115,"menuApiId":0,"parentId":90,"name":"设备:属性详情列表","types":2,"method":"","address":"/api/v1/product/device/property/list","remark":"","status":1,"sort":0},{"id":116,"menuApiId":0,"parentId":90,"name":"设备:已发布产品设备列表","types":2,"method":"","address":"/api/v1/product/device/list","remark":"","status":1,"sort":0},{"id":120,"menuApiId":0,"parentId":90,"name":"日志:类型列表","types":2,"method":"","address":"/api/v1/product/log/type","remark":"","status":1,"sort":0},{"id":121,"menuApiId":0,"parentId":90,"name":"日志:搜索","types":2,"method":"","address":"/api/v1/product/log/search","remark":"","status":1,"sort":0},{"id":126,"menuApiId":0,"parentId":90,"name":"属性:列表","types":2,"method":"","address":"/api/v1/product/tsl/property/list","remark":"","status":1,"sort":0},{"id":127,"menuApiId":0,"parentId":90,"name":"属性:所有属性列表","types":2,"method":"","address":"/api/v1/product/tsl/property/all","remark":"","status":1,"sort":0},{"id":131,"menuApiId":0,"parentId":90,"name":"功能:列表","types":2,"method":"","address":"/api/v1/product/tsl/function/list","remark":"","status":1,"sort":0},{"id":135,"menuApiId":0,"parentId":90,"name":"事件:列表","types":2,"method":"","address":"/api/v1/product/tsl/event/list","remark":"","status":1,"sort":0},{"id":139,"menuApiId":0,"parentId":90,"name":"标签:列表","types":2,"method":"","address":"/api/v1/product/tsl/tag/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":0,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0},{"id":242,"menuApiId":0,"parentId":239,"name":"通道详情","types":2,"method":"","address":"/api/v1/network/tunnel/get","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":0,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0},{"id":245,"menuApiId":0,"parentId":239,"name":"服务器详情","types":2,"method":"","address":"/api/v1/network/get","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":0,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":62,"menuApiId":0,"parentId":90,"name":"获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getList","remark":"","status":1,"sort":0},{"id":66,"menuApiId":0,"parentId":90,"name":"根据文件夹ID获取组态图列表","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoByFolderId","remark":"","status":1,"sort":0},{"id":67,"menuApiId":0,"parentId":90,"name":"根据ID获取拓扑图信息","types":2,"method":"","address":"/api/v1/configure/diagram/getInfoById","remark":"","status":1,"sort":0},{"id":72,"menuApiId":0,"parentId":90,"name":"根据ID获取文件夹","types":2,"method":"","address":"/api/v1/configure/folder/getInfoById","remark":"","status":1,"sort":0},{"id":73,"menuApiId":0,"parentId":90,"name":"获取文件夹列表","types":2,"method":"","address":"/api/v1/configure/folder/list","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":0,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0},{"id":78,"menuApiId":0,"parentId":90,"name":"获取项目数据","types":2,"method":"","address":"/api/v1/screen/project/getData","remark":"","status":1,"sort":0},{"id":79,"menuApiId":0,"parentId":90,"name":"根据ID获取大屏项目","types":2,"method":"","address":"/api/v1/screen/project/getProjectById","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":0,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":295,"menuApiId":0,"parentId":293,"name":"告警级别:配置","types":2,"method":"","address":"/api/v1/alarm/level/edit","remark":"","status":1,"sort":0},{"id":296,"menuApiId":0,"parentId":293,"name":"告警规则:操作符列表","types":2,"method":"","address":"/api/v1/alarm/rule/operator","remark":"","status":1,"sort":0},{"id":297,"menuApiId":0,"parentId":293,"name":"告警规则:触发类型列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_type","remark":"","status":1,"sort":0},{"id":298,"menuApiId":0,"parentId":293,"name":"告警规则:触发条件参数列表","types":2,"method":"","address":"/api/v1/alarm/rule/trigger_param","remark":"","status":1,"sort":0},{"id":299,"menuApiId":0,"parentId":293,"name":"告警规则:详情","types":2,"method":"","address":"/api/v1/alarm/rule/detail","remark":"","status":1,"sort":0},{"id":300,"menuApiId":0,"parentId":293,"name":"告警规则:列表","types":2,"method":"","address":"/api/v1/alarm/rule/list","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":0,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0},{"id":306,"menuApiId":0,"parentId":293,"name":"告警日志:详情","types":2,"method":"","address":"/api/v1/alarm/log/detail","remark":"","status":1,"sort":0},{"id":307,"menuApiId":0,"parentId":293,"name":"告警日志:列表","types":2,"method":"","address":"/api/v1/alarm/log/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":null,"children":null}]}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":0,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0},{"id":87,"menuApiId":0,"parentId":90,"name":"根据ID获取用户","types":2,"method":"","address":"/api/v1/system/user/getInfoById","remark":"","status":1,"sort":0},{"id":88,"menuApiId":0,"parentId":90,"name":"所有用户列表","types":2,"method":"","address":"/api/v1/system/user/getAll","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":0,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0},{"id":178,"menuApiId":0,"parentId":90,"name":"根据ID获取组织详情","types":2,"method":"","address":"/api/v1/system/organization/detail","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":182,"menuApiId":0,"parentId":90,"name":"根据ID获取部门详情","types":2,"method":"","address":"/api/v1/system/dept/detail","remark":"","status":1,"sort":0},{"id":61,"menuApiId":0,"parentId":90,"name":"获取部门列表","types":2,"method":"","address":"/api/v1/system/dept/tree","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":186,"menuApiId":0,"parentId":90,"name":"根据ID获取岗位详情","types":2,"method":"","address":"/api/v1/system/post/detail","remark":"","status":1,"sort":0},{"id":188,"menuApiId":0,"parentId":90,"name":"获取岗位列表","types":2,"method":"","address":"/api/v1/system/post/tree","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":193,"menuApiId":0,"parentId":90,"name":"根据ID获取权限信息","types":2,"method":"","address":"/api/v1/system/role/getAuthorizeById","remark":"","status":1,"sort":0},{"id":194,"menuApiId":0,"parentId":90,"name":"根据ID获取角色","types":2,"method":"","address":"/api/v1/system/role/getInfoById","remark":"","status":1,"sort":0},{"id":195,"menuApiId":0,"parentId":90,"name":"角色树状列表","types":2,"method":"","address":"/api/v1/system/role/tree","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":0,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":211,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单按钮详情","types":2,"method":"","address":"/api/v1/system/menu/button/detail","remark":"","status":1,"sort":0},{"id":214,"menuApiId":0,"parentId":90,"name":"菜单与按钮树列表","types":2,"method":"","address":"/api/v1/system/menu/button/tree","remark":"","status":1,"sort":0},{"id":217,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单列表详情","types":2,"method":"","address":"/api/v1/system/menu/column/detail","remark":"","status":1,"sort":0},{"id":220,"menuApiId":0,"parentId":90,"name":"菜单与列表树列表","types":2,"method":"","address":"/api/v1/system/menu/column/tree","remark":"","status":1,"sort":0},{"id":222,"menuApiId":0,"parentId":90,"name":"根据ID获取菜单详情","types":2,"method":"","address":"/api/v1/system/menu/detail","remark":"","status":1,"sort":0},{"id":224,"menuApiId":0,"parentId":90,"name":"菜单列表","types":2,"method":"","address":"/api/v1/system/menu/tree","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":260,"menuApiId":0,"parentId":254,"name":"获取系统参数","types":2,"method":"","address":"/api/v1/common/config/get","remark":"","status":1,"sort":0},{"id":261,"menuApiId":0,"parentId":254,"name":"系统参数列表","types":2,"method":"","address":"/api/v1/common/config/list","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":268,"menuApiId":0,"parentId":254,"name":"获取字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/get","remark":"","status":1,"sort":0},{"id":269,"menuApiId":0,"parentId":254,"name":"字典类型列表","types":2,"method":"","address":"/api/v1/common/dict/type/list","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":275,"menuApiId":0,"parentId":254,"name":"获取字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/get","remark":"","status":1,"sort":0},{"id":276,"menuApiId":0,"parentId":254,"name":"获取字典数据公共方法","types":2,"method":"","address":"/api/v1/common/dict/data/getDictData","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":0,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0},{"id":262,"menuApiId":0,"parentId":257,"name":"获取数据源信息","types":2,"method":"","address":"/assess/v1/datasetup/target","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":0,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0},{"id":146,"menuApiId":0,"parentId":90,"name":"设备数据源:获取设备数据","types":2,"method":"","address":"/api/v1/source/device/get","remark":"","status":1,"sort":0},{"id":149,"menuApiId":0,"parentId":90,"name":"API 数据源:获取api数据","types":2,"method":"","address":"/api/v1/source/api/get","remark":"","status":1,"sort":0},{"id":151,"menuApiId":0,"parentId":90,"name":"数据源:列表","types":2,"method":"","address":"/api/v1/source/list","remark":"","status":1,"sort":0},{"id":152,"menuApiId":0,"parentId":90,"name":"数据源:获取源数据记录","types":2,"method":"","address":"/api/v1/source/getdata","remark":"","status":1,"sort":0},{"id":272,"menuApiId":0,"parentId":270,"name":"数据源列表","types":2,"method":"","address":"/api/v1/source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":164,"menuApiId":0,"parentId":90,"name":"模型:搜索列表","types":2,"method":"","address":"/api/v1/source/template/search","remark":"","status":1,"sort":0},{"id":165,"menuApiId":0,"parentId":90,"name":"模型:已发布列表","types":2,"method":"","address":"/api/v1/source/template/list","remark":"","status":1,"sort":0},{"id":167,"menuApiId":0,"parentId":90,"name":"模型:获取模型数据记录","types":2,"method":"","address":"/api/v1/source/template/getdata","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0},{"id":143,"menuApiId":0,"parentId":90,"name":"数据库数据源:获取数据","types":2,"method":"","address":"/api/v1/source/db/get","remark":"","status":1,"sort":0},{"id":153,"menuApiId":0,"parentId":90,"name":"数据源:详情","types":2,"method":"","address":"/api/v1/source/detail","remark":"","status":1,"sort":0},{"id":160,"menuApiId":0,"parentId":90,"name":"数据节点:列表","types":2,"method":"","address":"/api/v1/source/node/list","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":0,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0},{"id":174,"menuApiId":0,"parentId":90,"name":"节点:列表","types":2,"method":"","address":"/api/v1/source/template/node/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":281,"menuApiId":0,"parentId":254,"name":"根据ID获取任务","types":2,"method":"","address":"/api/v1/system/job/getJobById","remark":"","status":1,"sort":0},{"id":282,"menuApiId":0,"parentId":254,"name":"获取任务列表","types":2,"method":"","address":"/api/v1/system/job/list","remark":"","status":1,"sort":0}],"children":null},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":0,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0},{"id":289,"menuApiId":0,"parentId":254,"name":"根据ID获取Api详情","types":2,"method":"","address":"/api/v1/system/api/detail","remark":"","status":1,"sort":0},{"id":292,"menuApiId":0,"parentId":254,"name":"获取接口列表","types":2,"method":"","address":"/api/v1/system/api/tree","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":0,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0},{"id":253,"menuApiId":0,"parentId":248,"name":"获取城市详情","types":2,"method":"","address":"/api/v1/common/city/getInfoById","remark":"","status":1,"sort":0}],"children":null},{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":0,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null}],"api":[{"id":205,"menuApiId":0,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0},{"id":206,"menuApiId":0,"parentId":90,"name":"获取插件列表","types":2,"method":"","address":"/api/v1/system/plugins/list","remark":"","status":1,"sort":0},{"id":207,"menuApiId":0,"parentId":90,"name":"设置插件状态","types":2,"method":"","address":"/api/v1/system/plugins/set","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":0,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0},{"id":199,"menuApiId":0,"parentId":90,"name":"根据ID获取访问日志详情","types":2,"method":"","address":"/api/v1/system/login/log/detail","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":201,"menuApiId":0,"parentId":90,"name":"根据ID获取操作日志详情","types":2,"method":"","address":"/api/v1/system/oper/log/detail","remark":"","status":1,"sort":0},{"id":202,"menuApiId":0,"parentId":90,"name":"操作日志列表","types":2,"method":"","address":"/api/v1/system/oper/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":0,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0},{"id":204,"menuApiId":0,"parentId":90,"name":"在线用户强退","types":2,"method":"","address":"/api/v1/system/userOnline/strongBack","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":3,"msgAdded":3,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":3,"msgAdded":3,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":3,"msgAdded":3,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.button.switch -*2 -$3 -DEL -$38 -SagooIOT_sysConfigTagsys.column.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043414942 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043414945 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":3,"msgAdded":3,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":3,"msgAdded":3,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":4,"msgAdded":4,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":5,"msgAdded":5,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043481509 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043481511 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043481512 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043481513 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043481514 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043481516 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043482237 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043482238 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043482240 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043482240 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043482241 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":5,"msgAdded":5,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":5,"msgAdded":5,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":5,"msgAdded":5,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":5,"msgAdded":5,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":5,"msgAdded":5,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043599111 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691043599113 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":5,"msgAdded":5,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":7,"msgAdded":7,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":7,"msgAdded":7,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":7,"msgAdded":7,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$128 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":8,"msgAdded":8,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":10,"msgAdded":10,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044028340 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044028346 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044103636 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044103637 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044103638 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044103640 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044103642 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044103643 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$77 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":11,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$77 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":11,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044555019 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044555025 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044775123 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044775125 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044775129 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044775131 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044851805 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044851806 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044851807 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044851808 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044967760 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044967760 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044967761 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691044967763 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$23 -SagooIOT_tag_sysDictTag -$23 -["sysDict_api_methods"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$23 -SagooIOT_tag_sysDictTag -$23 -["sysDict_api_methods"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045232617 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045232623 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*2 -$3 -DEL -$19 -SagooIOT_userInfo_1 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045920976 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045920979 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045920982 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045920984 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045920987 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045920990 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045944563 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045944564 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageType -$340 -{"configId":3,"configName":"图片上传-图片类型","configKey":"sys.uploadFile.imageType","configValue":"jpg,jpeg,gif,npm,png,svg","configType":1,"remark":"图片上传后缀类型限制","status":0,"isDeleted":0,"createBy":0,"createdAt":"2022-08-06 12:44:46","updateBy":0,"updatedAt":"2022-08-06 12:44:46","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045968040 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageSize -$313 -{"configId":4,"configName":"图片上传-图片大小","configKey":"sys.uploadFile.imageSize","configValue":"50M","configType":1,"remark":"图片上传大小限制","status":0,"isDeleted":0,"createBy":0,"createdAt":"2022-08-06 12:45:35","updateBy":0,"updatedAt":"2022-08-06 12:45:35","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691045968041 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageType -*2 -$3 -DEL -$45 -SagooIOT_sysConfigTagsys.uploadFile.imageSize -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046078219 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046078221 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046078223 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046078225 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046078227 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046078228 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046108087 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.access.control","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046108088 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046108089 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046108092 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046272593 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046272594 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046272596 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046272606 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046391594 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046391596 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$23 -SagooIOT_tag_sysDictTag -$23 -["sysDict_api_methods"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$23 -SagooIOT_tag_sysDictTag -$23 -["sysDict_api_methods"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046673565 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046673566 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046742662 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691046742664 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$20 -SagooIOT_userInfo_10 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047448147 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047448149 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047503397 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047503398 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047503400 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047503402 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047503404 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047503406 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047647145 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047647147 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047647149 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047647151 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047647153 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691047647155 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-ea418aad4919f97130d91c9481ebddf5 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$77 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":11,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$77 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":11,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048189386 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048189387 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.api.switch","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048189388 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.system.copyright","sysConfigTagsys.api.switch","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048189389 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.system.copyright","sysConfigTagsys.api.switch","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048189390 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.system.copyright","sysConfigTagsys.api.switch","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048189392 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.system.copyright","sysConfigTagsys.api.switch","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048189395 -*5 -$3 -SET -$19 -SagooIOT_userInfo_1 -$581 -{"id":1,"userName":"admin","userTypes":"1","mobile":"15516567192","userNickname":"超级管理员","birthday":"","userEmail":"yxh669@qq.com1111","sex":2,"avatar":"https://zhgy.sagoo.cn/base-api/upload_file/2023-03-28/crhqhlhsqd39kbdfqt.png","deptId":6,"remark":"","isAdmin":1,"address":"四川省成都市青羊区东城根南街68号院","describe":"大家好,我是admin。","lastLoginIp":"192.168.10.210","lastLoginTime":"2023-08-03 14:10:48","status":1,"createBy":1,"createdAt":"2022-08-03 21:33:30","updateBy":1,"updatedAt":"2023-08-03 14:10:47","roleIds":[1],"postIds":[6]} -$4 -PXAT -$13 -1691051729396 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.system.copyright","sysConfigTagsys.api.switch","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048189397 -*3 -$3 -SET -$24 -SagooIOT_userAuthorize_1 -$96502 -[{"id":56,"parentId":-1,"name":"运行监测","title":"运行监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":0,"weigh":460,"isHide":0,"path":"/heating-monitor","component":"/heating/monitor/map","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":84,"parentId":56,"name":"天气监测","title":"天气监测","icon":"ele-Drizzling","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/weather","component":"/heating/monitor/weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":55,"menuApiId":116,"parentId":90,"name":"获取城市的风力及日照时长","types":2,"method":"","address":"/api/v1/envirotronics/weather/cityWeatherList","remark":"","status":1,"sort":0}],"children":null},{"id":138,"parentId":56,"name":"统计明细表","title":"统计明细表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/statisticsDetail","component":"/heating/monitor/statisticsDetail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":95,"parentId":56,"name":"big-nowdata","title":"实时监测","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/nowdata","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"https://zhgy.sagoo.cn/plugin/screen/#/chart/preview/9bNmdDuRCO","status":1,"button":null,"column":null,"api":null,"children":null},{"id":134,"parentId":56,"name":"weather-history","title":"天气历史","icon":"iconfont icon-diannaobangong","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/heating-monitor/weather-history/:id","component":"/heating/monitor/history-weather","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":137,"parentId":56,"name":"实时统计","title":"实时统计","icon":"iconfont icon-diannao1","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/heating-monitor/realTimeStatistics","component":"/heating/monitor/realTimeStatistics","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":91,"parentId":-1,"name":"iotmanager","title":"物联管理","icon":"ele-UploadFilled","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager","component":"/iotmanager","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":92,"parentId":91,"name":"iotmanager-dashboard","title":"物联概览","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/iotmanager/dashboard","component":"/iot/iotmanager/dashboard","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":156,"parentId":-1,"menuId":92,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":157,"parentId":-1,"menuId":92,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":224,"parentId":-1,"menuId":92,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:34","children":null},{"id":225,"parentId":-1,"menuId":92,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:21:46","children":null},{"id":226,"parentId":-1,"menuId":92,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:05","children":null},{"id":227,"parentId":-1,"menuId":92,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:27","children":null},{"id":228,"parentId":-1,"menuId":92,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:22:52","children":null},{"id":229,"parentId":-1,"menuId":92,"name":"设别标识","title":"设别标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:24","children":null},{"id":230,"parentId":-1,"menuId":92,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:23:39","children":null},{"id":231,"parentId":-1,"menuId":92,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 02:23:54","children":null},{"id":232,"parentId":-1,"menuId":92,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-28 10:24:14","children":null}],"api":[{"id":310,"menuApiId":390,"parentId":309,"name":"物联概览:查询","types":2,"method":"GET","address":"/api/v1/thing/overview","remark":"","status":1,"sort":0}],"children":null},{"id":11,"parentId":91,"name":"设备管理","title":"设备管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":300,"isHide":0,"path":"/iotmanager/device","component":"/iot/device","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":34,"parentId":11,"name":"产品","title":"产品","icon":"ele-CreditCard","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/iotmanager/device/product","component":"/iot/device/product/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":10,"parentId":-1,"menuId":34,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":11,"parentId":-1,"menuId":34,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":12,"parentId":-1,"menuId":34,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":13,"parentId":-1,"menuId":34,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":14,"parentId":-1,"menuId":34,"name":"导入","title":"导入","types":"upload","description":"","status":1,"children":null},{"id":15,"parentId":-1,"menuId":34,"name":"导出","title":"导出","types":"dwonload","description":"","status":1,"children":null},{"id":196,"parentId":-1,"menuId":34,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":null},{"id":197,"parentId":-1,"menuId":34,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":1,"parentId":-1,"menuId":34,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 21:57:56","children":null},{"id":3,"parentId":-1,"menuId":34,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-08-13 06:13:48","children":null},{"id":128,"parentId":-1,"menuId":34,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:42","children":null},{"id":129,"parentId":-1,"menuId":34,"name":"分类","title":"分类","code":"categoryName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:49","children":null},{"id":130,"parentId":-1,"menuId":34,"name":"部门","title":"部门","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:06:56","children":null},{"id":131,"parentId":-1,"menuId":34,"name":"消息协议","title":"消息协议","code":"messageProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:11","children":null},{"id":132,"parentId":-1,"menuId":34,"name":"传输协议","title":"传输协议","code":"transportProtocol","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:23","children":null},{"id":133,"parentId":-1,"menuId":34,"name":"类型","title":"类型","code":"deviceType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:33","children":null},{"id":134,"parentId":-1,"menuId":34,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:07:41","children":null}],"api":[{"id":59,"menuApiId":131,"parentId":90,"name":"产品搜索列表(分页)","types":2,"method":"","address":"/api/v1/product/page_list","remark":"","status":1,"sort":0}],"children":[{"id":52,"parentId":34,"name":"产品详情","title":"产品详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/product/detail/:id","component":"/iot/device/product/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":36,"parentId":11,"name":"设备","title":"设备","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/iotmanager/device/instance","component":"/iot/device/instance/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":94,"parentId":-1,"menuId":36,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":95,"parentId":-1,"menuId":36,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":96,"parentId":-1,"menuId":36,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":97,"parentId":-1,"menuId":36,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":98,"parentId":-1,"menuId":36,"name":"启用与停止","title":"启用与停止","types":"status","description":"","status":1,"children":null}],"column":[{"id":137,"parentId":-1,"menuId":36,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:48","children":null},{"id":138,"parentId":-1,"menuId":36,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:15:58","children":null},{"id":139,"parentId":-1,"menuId":36,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:06","children":null},{"id":140,"parentId":-1,"menuId":36,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:13","children":null},{"id":142,"parentId":-1,"menuId":36,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:16:30","children":null},{"id":143,"parentId":-1,"menuId":36,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:38","children":null},{"id":144,"parentId":-1,"menuId":36,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:16:47","children":null},{"id":260,"parentId":-1,"menuId":36,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-17 21:18:50","children":null}],"api":[{"id":106,"menuApiId":183,"parentId":90,"name":"设备:编辑","types":2,"method":"","address":"/api/v1/product/device/edit","remark":"","status":1,"sort":0}],"children":[{"id":51,"parentId":36,"name":"设备详情","title":"设备详情","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/device/instance/:id","component":"/iot/device/instance/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":192,"parentId":-1,"menuId":51,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":195,"parentId":-1,"menuId":51,"name":"批量绑定","title":"批量绑定","types":"mutipleBind","description":"","status":1,"children":null}],"column":[{"id":261,"parentId":-1,"menuId":51,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:00","children":null},{"id":262,"parentId":-1,"menuId":51,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:15","children":null},{"id":263,"parentId":-1,"menuId":51,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:36","children":null},{"id":264,"parentId":-1,"menuId":51,"name":"产品名称","title":"产品名称","code":"productName","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:23:51","children":null},{"id":265,"parentId":-1,"menuId":51,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:06","children":null},{"id":266,"parentId":-1,"menuId":51,"name":"激活时间","title":"激活时间","code":"registryTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:35","children":null},{"id":267,"parentId":-1,"menuId":51,"name":"最后上线时间","title":"最后上线时间","code":"lastOnlineTime","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:24:55","children":null},{"id":268,"parentId":-1,"menuId":51,"name":"说明","title":"说明","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2023-05-22 11:25:12","children":null}],"api":[{"id":112,"menuApiId":189,"parentId":90,"name":"设备:相关统计","types":2,"method":"","address":"/api/v1/product/device/statistics","remark":"","status":1,"sort":0}],"children":null}]},{"id":35,"parentId":11,"name":"产品分类","title":"产品分类","icon":"ele-DocumentCopy","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/category","component":"/iot/device/category/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":16,"parentId":-1,"menuId":35,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":92,"parentId":-1,"menuId":35,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":93,"parentId":-1,"menuId":35,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","types":"desc","description":"","status":1,"children":null}],"column":[{"id":135,"parentId":-1,"menuId":35,"name":"分类名称","title":"分类名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:12:59","children":null},{"id":136,"parentId":-1,"menuId":35,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 02:13:03","children":null},{"id":252,"parentId":-1,"menuId":35,"name":"排序","title":"排序","code":"sort","description":"","status":1,"createdBy":1,"createdAt":"2023-03-28 11:11:57","children":null}],"api":[{"id":60,"menuApiId":133,"parentId":90,"name":"产品分类列表","types":2,"method":"","address":"/api/v1/product/category/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":135,"parentId":91,"name":"设备树管理","title":"设备树管理","icon":"iconfont icon-siweidaotu","condition":"","remark":"","menuType":0,"weigh":280,"isHide":0,"path":"/iotmanager/device-tree","component":"/iot/device-tree","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":136,"parentId":135,"name":"设备树","title":"设备树","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/device-tree","component":"/iot/device-tree/tree/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":198,"parentId":-1,"menuId":136,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":199,"parentId":-1,"menuId":136,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":200,"parentId":-1,"menuId":136,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":null,"api":null,"children":null}]},{"id":65,"parentId":91,"name":"网络组件管理","title":"网络组件","icon":"ele-Guide","condition":"","remark":"","menuType":0,"weigh":200,"isHide":0,"path":"/iotmanager/network","component":"/iot/network","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":66,"parentId":65,"name":"通道管理","title":"通道管理","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/tunnel","component":"/iot/network/tunnel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":100,"parentId":-1,"menuId":66,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":101,"parentId":-1,"menuId":66,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":102,"parentId":-1,"menuId":66,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":103,"parentId":-1,"menuId":66,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":105,"parentId":-1,"menuId":66,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":104,"parentId":105,"menuId":66,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":106,"parentId":105,"menuId":66,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":107,"parentId":105,"menuId":66,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]}],"column":[{"id":145,"parentId":-1,"menuId":66,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:36","children":null},{"id":146,"parentId":-1,"menuId":66,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:01:52","children":null},{"id":147,"parentId":-1,"menuId":66,"name":"类型","title":"类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:08","children":null},{"id":148,"parentId":-1,"menuId":66,"name":"地址","title":"地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 00:02:21","children":null},{"id":149,"parentId":-1,"menuId":66,"name":"创建时间","title":"创建时间","code":"createTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 16:02:46","children":null},{"id":200,"parentId":-1,"menuId":66,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:10:17","children":null},{"id":201,"parentId":-1,"menuId":66,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:12:19","children":null}],"api":null,"children":[{"id":74,"parentId":66,"name":"编辑通道","title":"编辑通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/edit/:id","component":"/iot/network/tunnel/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":313,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":68,"parentId":66,"name":"通道详情","title":"通道详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/detail/:id","component":"/iot/network/tunnel/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":311,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null},{"id":69,"parentId":66,"name":"新增通道","title":"新增通道","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/tunnel/create","component":"/iot/network/tunnel/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":240,"menuApiId":312,"parentId":239,"name":"通道列表","types":2,"method":"","address":"/api/v1/network/tunnel/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":70,"parentId":65,"name":"服务器管理","title":"服务器管理","icon":"ele-SetUp","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/network/server","component":"/iot/network/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":137,"parentId":-1,"menuId":70,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":138,"parentId":-1,"menuId":70,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":139,"parentId":-1,"menuId":70,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":140,"parentId":139,"menuId":70,"name":"启用","title":"启用","types":"on","description":"","status":1,"children":null},{"id":141,"parentId":139,"menuId":70,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null},{"id":142,"parentId":139,"menuId":70,"name":"删除","title":"删除","types":"delete","description":"","status":1,"children":null}]},{"id":143,"parentId":-1,"menuId":70,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":144,"parentId":-1,"menuId":70,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null}],"column":[{"id":202,"parentId":-1,"menuId":70,"name":"操作","title":"操作","code":"auth","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:35:32","children":null},{"id":203,"parentId":-1,"menuId":70,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:02","children":null},{"id":204,"parentId":-1,"menuId":70,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:11","children":null},{"id":205,"parentId":-1,"menuId":70,"name":"类型","title":"类型","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:22","children":null},{"id":206,"parentId":-1,"menuId":70,"name":"地址","title":"地址","code":"addr","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:32","children":null},{"id":207,"parentId":-1,"menuId":70,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:36:51","children":null},{"id":208,"parentId":-1,"menuId":70,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 15:37:43","children":null}],"api":null,"children":[{"id":71,"parentId":70,"name":"服务详情","title":"服务详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/detail/:id","component":"/iot/network/server/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":319,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":72,"parentId":70,"name":"新增服务","title":"新增服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/create","component":"/iot/network/server/create","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":320,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null},{"id":73,"parentId":70,"name":"编辑服务","title":"编辑服务","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/network/server/edit/:id","component":"/iot/network/server/edit","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":244,"menuApiId":321,"parentId":239,"name":"服务器管理列表","types":2,"method":"","address":"/api/v1/network/server/list","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":23,"parentId":91,"name":"组态管理","title":"组态管理","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":100,"isHide":0,"path":"/iotmanager/configuration","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":25,"parentId":23,"name":"组态列表","title":"组态列表","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/configuration/list","component":"/iot/configuration/list/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":64,"menuApiId":138,"parentId":90,"name":"删除组态拓扑图","types":2,"method":"","address":"/api/v1/configure/diagram/del","remark":"","status":1,"sort":0}],"children":null},{"id":44,"parentId":23,"name":"大屏设计","title":"大屏设计","icon":"iconfont icon-zidingyibuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/screen/index","component":"/iot/configuration/screen/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://home.yanglizhi.cn:10003/#/project/items","status":1,"button":null,"column":null,"api":[{"id":74,"menuApiId":150,"parentId":90,"name":"获取大屏项目列表","types":2,"method":"","address":"/api/v1/screen/project/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":88,"parentId":91,"name":"rule-engine","title":"规则引擎","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":0,"weigh":95,"isHide":0,"path":"/iotmanager/rule-engine","component":"/iot/rule-engine","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":90,"parentId":88,"name":"rule-scene","title":"数据转发","icon":"ele-Refresh","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/scene","component":"/iot/rule-engine/send","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":158,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null},{"id":89,"parentId":88,"name":"Rule-Instance","title":"规则编排","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/rule-engine/instance","component":"/iot/rule-engine/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":81,"menuApiId":157,"parentId":90,"name":"获取规则实例管理列表","types":2,"method":"","address":"/api/v1/rule-engine/instance/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":26,"parentId":91,"name":"视频监控","title":"视频监控","icon":"ele-VideoCamera","condition":"","remark":"","menuType":0,"weigh":90,"isHide":0,"path":"/iotmanager/media","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":30,"parentId":26,"name":"视频广场","title":"视频广场","icon":"fa fa-th","condition":"","remark":"","menuType":1,"weigh":10,"isHide":0,"path":"/iotmanager/media/video","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/square-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":31,"parentId":26,"name":"录像回看","title":"录像回看","icon":"iconfont icon-wenducanshu-05","condition":"","remark":"","menuType":1,"weigh":5,"isHide":0,"path":"/iotmanager/media/see","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/record-frame","status":1,"button":null,"column":null,"api":null,"children":null},{"id":29,"parentId":26,"name":"视频设备","title":"视频设备","icon":"iconfont icon-radio-off-full","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/media/device","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"http://192.168.10.233:81/media/#/device-frame","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":40,"parentId":91,"name":"通知服务","title":"通知服务","icon":"iconfont icon-dongtai","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/iotmanager/noticeservices","component":"/noticeservices","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":41,"parentId":40,"name":"通知配置","title":"通知配置","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/config","component":"/iot/noticeservices/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":158,"parentId":-1,"menuId":41,"name":"管理","title":"管理","types":"setting","description":"","status":1,"children":null},{"id":159,"parentId":-1,"menuId":41,"name":"配置","title":"配置","types":"edit","description":"","status":1,"children":null}],"column":[{"id":234,"parentId":-1,"menuId":41,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:28","children":null},{"id":235,"parentId":-1,"menuId":41,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:39:38","children":null},{"id":236,"parentId":-1,"menuId":41,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:56","children":null},{"id":237,"parentId":-1,"menuId":41,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-07 14:40:58","children":null}],"api":null,"children":[{"id":116,"parentId":41,"name":"通知配置管理","title":"通知配置管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/setting/:id","component":"/iot/noticeservices/config/setting","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":117,"parentId":41,"name":"通知模板管理","title":"通知模板管理","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/iotmanager/noticeservices/config/template/:id","component":"/iot/noticeservices/config/template","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":42,"parentId":40,"name":"通知日志","title":"通知日志","icon":"ele-Postcard","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/noticeservices/log","component":"/iot/noticeservices/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":160,"parentId":-1,"menuId":42,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":161,"parentId":-1,"menuId":42,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":238,"parentId":-1,"menuId":42,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:00","children":null},{"id":239,"parentId":-1,"menuId":42,"name":"标题","title":"标题","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:34","children":null},{"id":240,"parentId":-1,"menuId":42,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:54","children":null},{"id":241,"parentId":-1,"menuId":42,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:56","children":null},{"id":242,"parentId":-1,"menuId":42,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-12-15 19:39:58","children":null}],"api":null,"children":null}]},{"id":80,"parentId":91,"name":"告警中心","title":"告警中心","icon":"iconfont icon-tongzhi2","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/alarm","component":"/iot/alarm","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":114,"parentId":80,"name":"告警配置","title":"告警配置","icon":"iconfont icon-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/setting","component":"/iot/alarm/setting/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":151,"parentId":-1,"menuId":114,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":152,"parentId":-1,"menuId":114,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":153,"parentId":-1,"menuId":114,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":154,"parentId":-1,"menuId":114,"name":"状态","title":"状态","types":"status","description":"","status":1,"children":null},{"id":155,"parentId":-1,"menuId":114,"name":"级别设置","title":"级别设置","types":"level","description":"","status":1,"children":null}],"column":[{"id":220,"parentId":-1,"menuId":114,"name":"图标","title":"图标","code":"image","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:31:35","children":null},{"id":221,"parentId":-1,"menuId":114,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:32:14","children":null},{"id":222,"parentId":-1,"menuId":114,"name":"属性","title":"属性","code":"alarm","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:14","children":null},{"id":223,"parentId":-1,"menuId":114,"name":"状态","title":"状态","code":"liststatus","description":"","status":1,"createdBy":1,"createdAt":"2022-11-23 10:33:36","children":null}],"api":[{"id":294,"menuApiId":367,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null},{"id":115,"parentId":80,"name":"告警日志","title":"告警日志","icon":"iconfont icon-biaodan","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/alarm/log","component":"/iot/alarm/log/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":149,"parentId":-1,"menuId":115,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":150,"parentId":-1,"menuId":115,"name":"处理","title":"处理","types":"edit","description":"","status":1,"children":null}],"column":[{"id":211,"parentId":-1,"menuId":115,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:10","children":null},{"id":212,"parentId":-1,"menuId":115,"name":"告警类型","title":"告警类型","code":"type","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:23","children":null},{"id":213,"parentId":-1,"menuId":115,"name":"规则名称","title":"规则名称","code":"ruleName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:34","children":null},{"id":214,"parentId":-1,"menuId":115,"name":"规则级别","title":"规则级别","code":"alarmLevel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:41","children":null},{"id":215,"parentId":-1,"menuId":115,"name":"产品标识","title":"产品标识","code":"productKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:49","children":null},{"id":216,"parentId":-1,"menuId":115,"name":"设备标识","title":"设备标识","code":"deviceKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:45:57","children":null},{"id":217,"parentId":-1,"menuId":115,"name":"告警状态","title":"告警状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:06","children":null},{"id":218,"parentId":-1,"menuId":115,"name":"告警时间","title":"告警时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:15","children":null},{"id":219,"parentId":-1,"menuId":115,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-15 14:46:23","children":null}],"api":[{"id":294,"menuApiId":368,"parentId":293,"name":"告警级别:列表","types":2,"method":"","address":"/api/v1/alarm/level/all","remark":"","status":1,"sort":0}],"children":null}]},{"id":124,"parentId":91,"name":"iotmanager/DataCollect","title":"数据采集","icon":"ele-ScaleToOriginal","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/DataCollect","component":"/iotmanager/DataCollect","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":122,"parentId":124,"name":"通道管理页面","title":"通道管理","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/channel","component":"/iot/device/channel/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":123,"parentId":124,"name":"模板管理","title":"模板管理","icon":"fa fa-snowflake-o","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/device/template","component":"/iot/device/template/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":130,"parentId":91,"name":"certificate-management","title":"证书管理","icon":"iconfont icon-bolangneng","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/iotmanager/certificate","component":"/iot/certificate","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":131,"parentId":130,"name":"certificate-management-list","title":"证书列表","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/iotmanager/certificate/index","component":"/iot/certificate/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":183,"parentId":-1,"menuId":131,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":184,"parentId":-1,"menuId":131,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":185,"parentId":-1,"menuId":131,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":186,"parentId":-1,"menuId":131,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":188,"parentId":-1,"menuId":131,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":253,"parentId":-1,"menuId":131,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:31:51","children":null},{"id":254,"parentId":-1,"menuId":131,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:32:01","children":null},{"id":255,"parentId":-1,"menuId":131,"name":"证书名称","title":"证书名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:33:44","children":null},{"id":256,"parentId":-1,"menuId":131,"name":"证书标准","title":"证书标准","code":"standard","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:13","children":null},{"id":257,"parentId":-1,"menuId":131,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2023-04-10 08:34:35","children":null}],"api":[{"id":318,"menuApiId":401,"parentId":90,"name":"新增证书","types":2,"method":"POST","address":"/api/v1/system/certificate/add","remark":"","status":1,"sort":0}],"children":null}]}]},{"id":93,"parentId":-1,"name":"developTool","title":"开发工具","icon":"iconfont icon-shoujidiannao","condition":"","remark":"","menuType":0,"weigh":80,"isHide":0,"path":"/developTool","component":"/developTool","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":94,"parentId":93,"name":"codeGeneration-list","title":"代码生成","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/developTool/codeGeneration","component":"/developTool/codeGeneration/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null}]},{"id":1,"parentId":-1,"name":"api/v1/system/auth","title":"系统管理","icon":"iconfont icon-xitongshezhi","condition":"","remark":"","menuType":0,"weigh":30,"isHide":0,"path":"/system","component":"layout/routerView/parent","isLink":0,"moduleType":"system","modelId":0,"isIframe":0,"isCached":1,"redirect":"0","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":15,"parentId":1,"name":"用户管理","title":"用户管理","icon":"ele-UserFilled","condition":"","remark":"","menuType":1,"weigh":1000,"isHide":0,"path":"/system/user","component":"system/manage/user/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":17,"parentId":-1,"menuId":15,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":18,"parentId":-1,"menuId":15,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":19,"parentId":-1,"menuId":15,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":21,"parentId":-1,"menuId":15,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":162,"parentId":-1,"menuId":15,"name":"修改用户状态","title":"修改用户状态","types":"change-status","description":"","status":1,"children":null}],"column":[{"id":13,"parentId":-1,"menuId":15,"name":"账户名称","title":"账户名称","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:19:30","children":null},{"id":14,"parentId":-1,"menuId":15,"name":"角色","title":"角色","code":"rolesNames","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:23:49","children":null},{"id":15,"parentId":-1,"menuId":15,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:08","children":null},{"id":16,"parentId":-1,"menuId":15,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:24:28","children":null},{"id":21,"parentId":-1,"menuId":15,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:05:26","children":null}],"api":[{"id":83,"menuApiId":161,"parentId":90,"name":"用户列表","types":2,"method":"","address":"/api/v1/system/user/list","remark":"","status":1,"sort":0}],"children":null},{"id":13,"parentId":1,"name":"区域组织管理","title":"区域管理","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":950,"isHide":0,"path":"/system/orgList","component":"system/manage/org/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":25,"parentId":-1,"menuId":13,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":26,"parentId":-1,"menuId":13,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":27,"parentId":-1,"menuId":13,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":8,"parentId":-1,"menuId":13,"name":"组织名称","title":"组织名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:00","children":null},{"id":9,"parentId":-1,"menuId":13,"name":"组织编号","title":"组织编号","code":"number","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:24","children":null},{"id":10,"parentId":-1,"menuId":13,"name":"组织状态","title":"组织状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:05:47","children":null},{"id":11,"parentId":-1,"menuId":13,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:11","children":null},{"id":12,"parentId":-1,"menuId":13,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 00:06:28","children":null},{"id":22,"parentId":-1,"menuId":13,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:26","children":null}],"api":[{"id":175,"menuApiId":252,"parentId":90,"name":"获取组织列表","types":2,"method":"","address":"/api/v1/system/organization/tree","remark":"","status":1,"sort":0}],"children":null},{"id":12,"parentId":1,"name":"部门管理","title":"部门管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":920,"isHide":0,"path":"/system/deptList","component":"system/manage/dept/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":33,"parentId":-1,"menuId":12,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":34,"parentId":-1,"menuId":12,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":35,"parentId":-1,"menuId":12,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":23,"parentId":-1,"menuId":12,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:06:55","children":null},{"id":24,"parentId":-1,"menuId":12,"name":"部门状态","title":"部门状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:07:46","children":null},{"id":25,"parentId":-1,"menuId":12,"name":"排序","title":"排序","code":"orderNum","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:00","children":null},{"id":26,"parentId":-1,"menuId":12,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:08:25","children":null},{"id":233,"parentId":-1,"menuId":12,"name":"部门名称","title":"部门名称","code":"deptName","description":"","status":1,"createdBy":1,"createdAt":"2022-12-04 21:57:22","children":null}],"api":[{"id":180,"menuApiId":257,"parentId":90,"name":"添加部门","types":2,"method":"","address":"/api/v1/system/dept/add","remark":"","status":1,"sort":0}],"children":null},{"id":14,"parentId":1,"name":"岗位管理","title":"岗位管理","icon":"iconfont icon-gerenzhongxin","condition":"","remark":"","menuType":1,"weigh":900,"isHide":0,"path":"/system/postList","component":"system/manage/post/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":36,"parentId":-1,"menuId":14,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":37,"parentId":-1,"menuId":14,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":38,"parentId":-1,"menuId":14,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":27,"parentId":-1,"menuId":14,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:47","children":null},{"id":28,"parentId":-1,"menuId":14,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:20:51","children":null},{"id":29,"parentId":-1,"menuId":14,"name":"岗位描述","title":"岗位描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:21:46","children":null},{"id":30,"parentId":-1,"menuId":14,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:21","children":null},{"id":31,"parentId":-1,"menuId":14,"name":"排序","title":"排序","code":"postSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:26:35","children":null},{"id":32,"parentId":-1,"menuId":14,"name":"岗位名称","title":"岗位名称","code":"postName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:21","children":null},{"id":33,"parentId":-1,"menuId":14,"name":"岗位编码","title":"岗位编码","code":"postCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:27:32","children":null}],"api":[{"id":184,"menuApiId":263,"parentId":90,"name":"添加岗位","types":2,"method":"","address":"/api/v1/system/post/add","remark":"","status":1,"sort":0}],"children":null},{"id":10,"parentId":1,"name":"角色管理","title":"角色管理","icon":"ele-Guide","condition":"","remark":"","menuType":1,"weigh":12,"isHide":0,"path":"/system/roleList","component":"system/manage/role/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":39,"parentId":-1,"menuId":10,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":40,"parentId":-1,"menuId":10,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":41,"parentId":-1,"menuId":10,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":42,"parentId":-1,"menuId":10,"name":"角色权限","title":"角色权限","types":"role-premission","description":"","status":1,"children":null},{"id":43,"parentId":-1,"menuId":10,"name":"数据权限","title":"数据权限","types":"data-premission","description":"","status":1,"children":null}],"column":[{"id":34,"parentId":-1,"menuId":10,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:19","children":null},{"id":35,"parentId":-1,"menuId":10,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:20","children":null},{"id":36,"parentId":-1,"menuId":10,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:21","children":null},{"id":37,"parentId":-1,"menuId":10,"name":"排序","title":"排序","code":"listOrder","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:34","children":null},{"id":38,"parentId":-1,"menuId":10,"name":"角色描述","title":"角色描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:44","children":null},{"id":39,"parentId":-1,"menuId":10,"name":"角色名称","title":"角色名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:32:54","children":null}],"api":[{"id":189,"menuApiId":268,"parentId":90,"name":"添加角色","types":2,"method":"","address":"/api/v1/system/role/add","remark":"","status":1,"sort":0}],"children":null},{"id":119,"parentId":1,"name":"blacklist","title":"访问黑名单","icon":"iconfont icon-shuxingtu","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/system/manage/blacklist","component":"/system/manage/blacklist/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":163,"parentId":-1,"menuId":119,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":164,"parentId":-1,"menuId":119,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":165,"parentId":-1,"menuId":119,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":168,"parentId":165,"menuId":119,"name":"开启","title":"开启","types":"on","description":"","status":1,"children":null},{"id":169,"parentId":165,"menuId":119,"name":"禁用","title":"禁用","types":"off","description":"","status":1,"children":null}]},{"id":166,"parentId":-1,"menuId":119,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":167,"parentId":-1,"menuId":119,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":246,"parentId":-1,"menuId":119,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:33","children":null},{"id":247,"parentId":-1,"menuId":119,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:35","children":null},{"id":248,"parentId":-1,"menuId":119,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:36","children":null},{"id":249,"parentId":-1,"menuId":119,"name":"ip","title":"ip","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:46","children":null},{"id":250,"parentId":-1,"menuId":119,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2023-02-03 10:15:57","children":null}],"api":[{"id":311,"menuApiId":391,"parentId":90,"name":"获取黑名单列表","types":2,"method":"GET","address":"/api/v1/system/blacklist/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":19,"parentId":-1,"name":"系统监控","title":"系统监控","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/monitor","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":9,"parentId":19,"name":"api/swagger","title":"api文档","icon":"iconfont icon-jiliandongxuanzeqi","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/monitor/iframes","component":"layout/routerView/iframes","isLink":1,"moduleType":"","modelId":0,"isIframe":1,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"/base-api/swagger","status":1,"button":null,"column":null,"api":null,"children":null},{"id":17,"parentId":19,"name":"服务监测","title":"服务监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":90,"isHide":0,"path":"/monitor/server","component":"system/monitor/server/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":[{"id":196,"menuApiId":275,"parentId":90,"name":"服务监控","types":2,"method":"","address":"/api/v1/system/monitor/server","remark":"","status":1,"sort":0}],"children":null},{"id":120,"parentId":19,"name":"缓存监测","title":"缓存监测","icon":"iconfont icon-putong","condition":"","remark":"","menuType":1,"weigh":80,"isHide":0,"path":"/monitor/cache","component":"/system/monitor/cache/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":110,"parentId":19,"name":"plugin","title":"插件监控","icon":"iconfont icon-diannao","condition":"","remark":"","menuType":1,"weigh":70,"isHide":0,"path":"/monitor/plugin","component":"/system/monitor/plugin/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":48,"parentId":-1,"menuId":110,"name":"启用","title":"启用","types":"start","description":"","status":1,"children":null},{"id":49,"parentId":-1,"menuId":110,"name":"停用","title":"停用","types":"stop","description":"","status":1,"children":null},{"id":190,"parentId":-1,"menuId":110,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":191,"parentId":-1,"menuId":110,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":55,"parentId":-1,"menuId":110,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:29","children":null},{"id":56,"parentId":-1,"menuId":110,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:01:57","children":null},{"id":57,"parentId":-1,"menuId":110,"name":"作者 ","title":"作者 ","code":"author","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:05","children":null},{"id":58,"parentId":-1,"menuId":110,"name":"说明","title":"说明","code":"description","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:13","children":null},{"id":59,"parentId":-1,"menuId":110,"name":"名称","title":"名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 21:02:21","children":null},{"id":258,"parentId":-1,"menuId":110,"name":"通信方式","title":"通信方式","code":"types","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:03:40","children":null},{"id":259,"parentId":-1,"menuId":110,"name":"功能类型","title":"功能类型","code":"handleType","description":"","status":1,"createdBy":1,"createdAt":"2023-04-16 00:04:08","children":null}],"api":[{"id":205,"menuApiId":284,"parentId":90,"name":"获取插件","types":2,"method":"","address":"/api/v1/system/plugins/get","remark":"","status":1,"sort":0}],"children":null},{"id":129,"parentId":19,"name":"系统通知","title":"系统通知","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":1,"isHide":0,"path":"/monitor/notice","component":"/system/monitor/notice/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":null},{"id":18,"parentId":19,"name":"登录日志","title":"登录日志","icon":"iconfont icon-neiqianshujuchucun","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/loginLog","component":"system/monitor/loginLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":44,"parentId":-1,"menuId":18,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":40,"parentId":-1,"menuId":18,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:18","children":null},{"id":41,"parentId":-1,"menuId":18,"name":"登录地点","title":"登录地点","code":"loginLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:34","children":null},{"id":42,"parentId":-1,"menuId":18,"name":"操作信息","title":"操作信息","code":"msg","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:39:50","children":null},{"id":43,"parentId":-1,"menuId":18,"name":"登录日期","title":"登录日期","code":"loginTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 12:40:03","children":null},{"id":44,"parentId":-1,"menuId":18,"name":"登录模块","title":"登录模块","code":"module","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:40:15","children":null}],"api":[{"id":197,"menuApiId":276,"parentId":90,"name":"访问日志列表","types":2,"method":"","address":"/api/v1/system/login/log/list","remark":"","status":1,"sort":0}],"children":null},{"id":49,"parentId":19,"name":"operLog","title":"操作日志","icon":"iconfont icon-LoggedinPC","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/operLog","component":"/system/monitor/operLog/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":45,"parentId":-1,"menuId":49,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":46,"parentId":-1,"menuId":49,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null}],"column":[{"id":45,"parentId":-1,"menuId":49,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:02","children":null},{"id":46,"parentId":-1,"menuId":49,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:43:15","children":null},{"id":47,"parentId":-1,"menuId":49,"name":"操作类型","title":"操作类型","code":"operatorType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:44:09","children":null},{"id":48,"parentId":-1,"menuId":49,"name":"操作人员","title":"操作人员","code":"operName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:06","children":null},{"id":49,"parentId":-1,"menuId":49,"name":"操作地点","title":"操作地点","code":"operLocation","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:20","children":null},{"id":50,"parentId":-1,"menuId":49,"name":"操作时间","title":"操作时间","code":"operTime","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:45:31","children":null}],"api":[{"id":200,"menuApiId":279,"parentId":90,"name":"根据ID删除操作日志","types":2,"method":"","address":"/api/v1/system/oper/log/del","remark":"","status":1,"sort":0}],"children":null},{"id":50,"parentId":19,"name":"online","title":"在线用户","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/monitor/online","component":"/system/monitor/online/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":47,"parentId":-1,"menuId":50,"name":"强退","title":"强退","types":"out","description":"","status":1,"children":null}],"column":[{"id":51,"parentId":-1,"menuId":50,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:48:09","children":null},{"id":52,"parentId":-1,"menuId":50,"name":"用户名","title":"用户名","code":"userName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:36","children":null},{"id":53,"parentId":-1,"menuId":50,"name":"登录地址","title":"登录地址","code":"ip","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:45","children":null},{"id":54,"parentId":-1,"menuId":50,"name":"操作系统","title":"操作系统","code":"os","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 20:49:53","children":null}],"api":[{"id":203,"menuApiId":282,"parentId":90,"name":"在线用户列表","types":2,"method":"","address":"/api/v1/system/userOnline/list","remark":"","status":1,"sort":0}],"children":null}]},{"id":20,"parentId":-1,"name":"系统配置","title":"系统配置","icon":"ele-SetUp","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config","component":"layout/routerView/parent","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":133,"parentId":20,"name":"基础配置","title":"基础配置","icon":"iconfont icon-diannao-shuju","condition":"","remark":"","menuType":1,"weigh":100,"isHide":0,"path":"/config/basicConfig","component":"system/basicConfig/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":189,"parentId":-1,"menuId":133,"name":"保存","title":"保存","types":"save","description":"","status":1,"children":null}],"column":null,"api":[{"id":321,"menuApiId":409,"parentId":90,"name":"获取系统基础配置","types":2,"method":"GET","address":"/api/v1/getBaseSetting","remark":"","status":1,"sort":0}],"children":null},{"id":2,"parentId":20,"name":"api/v1/system/auth/menuList","title":"菜单管理","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":9,"isHide":0,"path":"/config/menuList","component":"system/menu/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":1,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":51,"parentId":-1,"menuId":2,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":108,"parentId":-1,"menuId":2,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":109,"parentId":-1,"menuId":2,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":110,"parentId":-1,"menuId":2,"name":"更多","title":"更多","types":"more","description":"","status":1,"children":[{"id":111,"parentId":110,"menuId":2,"name":"按钮权限","title":"按钮权限","types":"btn","description":"","status":1,"children":null},{"id":112,"parentId":110,"menuId":2,"name":"列表权限","title":"列表权限","types":"list","description":"","status":1,"children":null}]}],"column":[{"id":150,"parentId":-1,"menuId":2,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:23:51","children":null},{"id":152,"parentId":-1,"menuId":2,"name":"菜单名称","title":"菜单名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:24:01","children":null},{"id":153,"parentId":-1,"menuId":2,"name":"路由路径","title":"路由路径","code":"path","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:02","children":null},{"id":154,"parentId":-1,"menuId":2,"name":"组件路径","title":"组件路径","code":"component","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:13","children":null},{"id":155,"parentId":-1,"menuId":2,"name":"排序","title":"排序","code":"weigh","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:20","children":null},{"id":156,"parentId":-1,"menuId":2,"name":"排序配型","title":"排序配型","code":"menuType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:34","children":null},{"id":157,"parentId":-1,"menuId":2,"name":"显示状态","title":"显示状态","code":"isHide","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:25:48","children":null}],"api":[{"id":208,"menuApiId":287,"parentId":90,"name":"添加菜单","types":2,"method":"","address":"/api/v1/system/menu/add","remark":"","status":1,"sort":0}],"children":null},{"id":16,"parentId":20,"name":"系统参数管理","title":"参数管理","icon":"ele-Tickets","condition":"","remark":"","menuType":1,"weigh":2,"isHide":0,"path":"/config/list","component":"system/config/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":113,"parentId":-1,"menuId":16,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":114,"parentId":-1,"menuId":16,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":115,"parentId":-1,"menuId":16,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null}],"column":[{"id":158,"parentId":-1,"menuId":16,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:05","children":null},{"id":159,"parentId":-1,"menuId":16,"name":"ID","title":"ID","code":"configId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:35","children":null},{"id":160,"parentId":-1,"menuId":16,"name":"参数名称","title":"参数名称","code":"configName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:45","children":null},{"id":161,"parentId":-1,"menuId":16,"name":"参数键名","title":"参数键名","code":"configKey","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:42:57","children":null},{"id":162,"parentId":-1,"menuId":16,"name":"参数键值","title":"参数键值","code":"configValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:07","children":null},{"id":163,"parentId":-1,"menuId":16,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:15","children":null},{"id":164,"parentId":-1,"menuId":16,"name":"系统内置","title":"系统内置","code":"configType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:43:26","children":null}],"api":[{"id":255,"menuApiId":331,"parentId":254,"name":"添加系统参数","types":2,"method":"","address":"/api/v1/common/config/add","remark":"","status":1,"sort":0}],"children":null},{"id":85,"parentId":20,"name":"城市管理","title":"城市管理","icon":"ele-DeleteLocation","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/city","component":"system/city/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":132,"parentId":-1,"menuId":85,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":134,"parentId":-1,"menuId":85,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":135,"parentId":-1,"menuId":85,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":145,"parentId":-1,"menuId":85,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null},{"id":146,"parentId":-1,"menuId":85,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null}],"column":[{"id":193,"parentId":-1,"menuId":85,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:47:35","children":null},{"id":194,"parentId":-1,"menuId":85,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:56","children":null},{"id":195,"parentId":-1,"menuId":85,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:48:57","children":null},{"id":196,"parentId":-1,"menuId":85,"name":"城市名称","title":"城市名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:11","children":null},{"id":197,"parentId":-1,"menuId":85,"name":"城市编号","title":"城市编号","code":"code","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:49:19","children":null}],"api":[{"id":249,"menuApiId":326,"parentId":248,"name":"城市管理列表页","types":2,"method":"","address":"/api/v1/common/city/tree","remark":"","status":1,"sort":0}],"children":null},{"id":46,"parentId":20,"name":"定时任务","title":"定时任务","icon":"ele-Money","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/task","component":"/system/task/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":125,"parentId":-1,"menuId":46,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":126,"parentId":-1,"menuId":46,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":127,"parentId":-1,"menuId":46,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":128,"parentId":-1,"menuId":46,"name":"执行一次","title":"执行一次","types":"do","description":"","status":1,"children":null}],"column":[{"id":181,"parentId":-1,"menuId":46,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:33","children":null},{"id":182,"parentId":-1,"menuId":46,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:34","children":null},{"id":183,"parentId":-1,"menuId":46,"name":"ID","title":"ID","code":"jobId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:46","children":null},{"id":184,"parentId":-1,"menuId":46,"name":"任务名称","title":"任务名称","code":"jobName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:42:57","children":null},{"id":185,"parentId":-1,"menuId":46,"name":"任务描述","title":"任务描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:06","children":null},{"id":186,"parentId":-1,"menuId":46,"name":"任务分组","title":"任务分组","code":"jobGroup","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:13","children":null},{"id":187,"parentId":-1,"menuId":46,"name":"任务方法名","title":"任务方法名","code":"invokeTarget","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:24","children":null},{"id":188,"parentId":-1,"menuId":46,"name":"cron执行表达式","title":"cron执行表达式","code":"cronExpression","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:43:36","children":null}],"api":[{"id":278,"menuApiId":352,"parentId":254,"name":"添加定时任务","types":2,"method":"","address":"/api/v1/system/job/add","remark":"","status":1,"sort":0}],"children":null},{"id":21,"parentId":20,"name":"字典管理","title":"字典管理","icon":"iconfont icon--chaifenlie","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/dict","component":"system/dict/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":116,"parentId":-1,"menuId":21,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":117,"parentId":-1,"menuId":21,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":118,"parentId":-1,"menuId":21,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":165,"parentId":-1,"menuId":21,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:45","children":null},{"id":166,"parentId":-1,"menuId":21,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:53:49","children":null},{"id":167,"parentId":-1,"menuId":21,"name":"字典ID","title":"字典ID","code":"dictId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:01","children":null},{"id":168,"parentId":-1,"menuId":21,"name":"字典名称","title":"字典名称","code":"dictName","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:09","children":null},{"id":169,"parentId":-1,"menuId":21,"name":"字典类型","title":"字典类型","code":"dictType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:19","children":null},{"id":170,"parentId":-1,"menuId":21,"name":"字典描述","title":"字典描述","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:54:32","children":null}],"api":[{"id":264,"menuApiId":339,"parentId":254,"name":"添加字典类型","types":2,"method":"","address":"/api/v1/common/dict/type/add","remark":"","status":1,"sort":0}],"children":null},{"id":22,"parentId":20,"name":"字典数据管理","title":"字典数据管理","icon":"ele-Collection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/dict/:dictType","component":"system/dict/dataList","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":119,"parentId":-1,"menuId":22,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":120,"parentId":-1,"menuId":22,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":121,"parentId":-1,"menuId":22,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":171,"parentId":-1,"menuId":22,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:56:33","children":null},{"id":172,"parentId":-1,"menuId":22,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:20","children":null},{"id":173,"parentId":-1,"menuId":22,"name":"备注","title":"备注","code":"remark","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:35","children":null},{"id":174,"parentId":-1,"menuId":22,"name":"字典排序","title":"字典排序","code":"dictSort","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:57:44","children":null},{"id":175,"parentId":-1,"menuId":22,"name":"字典键值","title":"字典键值","code":"dictValue","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:00","children":null},{"id":176,"parentId":-1,"menuId":22,"name":"字典标签","title":"字典标签","code":"dictLabel","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:11","children":null},{"id":177,"parentId":-1,"menuId":22,"name":"字典编码","title":"字典编码","code":"dictCode","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 21:58:20","children":null}],"api":[{"id":271,"menuApiId":345,"parentId":254,"name":"添加字典数据","types":2,"method":"","address":"/api/v1/common/dict/data/add","remark":"","status":1,"sort":0}],"children":null},{"id":27,"parentId":20,"name":"数据中心","title":"数据中心","icon":"ele-Coin","condition":"","remark":"","menuType":0,"weigh":0,"isHide":0,"path":"/config/datahub","component":"/system/datahub","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":null,"column":null,"api":null,"children":[{"id":32,"parentId":27,"name":"指数管理","title":"指数管理","icon":"iconfont icon-shouye_dongtaihui","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/assess","component":"/system/assess/totalIndex/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":50,"parentId":-1,"menuId":32,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":122,"parentId":-1,"menuId":32,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":123,"parentId":-1,"menuId":32,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":124,"parentId":-1,"menuId":32,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":178,"parentId":-1,"menuId":32,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:31","children":null},{"id":179,"parentId":-1,"menuId":32,"name":"名称","title":"名称","code":"title","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:40","children":null},{"id":180,"parentId":-1,"menuId":32,"name":"描述","title":"描述","code":"explain","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:01:48","children":null}],"api":[{"id":259,"menuApiId":385,"parentId":257,"name":"指数管理列表","types":2,"method":"","address":"/assess/v1/setup","remark":"","status":1,"sort":0}],"children":null},{"id":37,"parentId":27,"name":"数据源管理","title":"数据源管理","icon":"ele-Connection","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/source","component":"/system/datahub/source/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":28,"parentId":-1,"menuId":37,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":29,"parentId":-1,"menuId":37,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":30,"parentId":-1,"menuId":37,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":31,"parentId":-1,"menuId":37,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":32,"parentId":-1,"menuId":37,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":147,"parentId":-1,"menuId":37,"name":"查询","title":"查询","types":"query","description":"","status":1,"children":null},{"id":148,"parentId":-1,"menuId":37,"name":"重置","title":"重置","types":"reset","description":"","status":1,"children":null}],"column":[{"id":17,"parentId":-1,"menuId":37,"name":"数据源名称","title":"数据源名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:18","children":null},{"id":18,"parentId":-1,"menuId":37,"name":"数据源类型","title":"数据源类型","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:27","children":null},{"id":19,"parentId":-1,"menuId":37,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:10:37","children":null},{"id":20,"parentId":-1,"menuId":37,"name":"ID","title":"ID","code":"sourceId","description":"","status":1,"createdBy":1,"createdAt":"2022-11-03 11:11:36","children":null},{"id":209,"parentId":-1,"menuId":37,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-11 17:12:39","children":null}],"api":[{"id":91,"menuApiId":168,"parentId":90,"name":"数据源:搜索列表","types":2,"method":"","address":"source/search","remark":"","status":1,"sort":0}],"children":null},{"id":39,"parentId":27,"name":"数据建模","title":"数据建模","icon":"iconfont icon-juxingkaobei","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/datahub/modeling","component":"/system/datahub/modeling/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":78,"parentId":-1,"menuId":39,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":79,"parentId":-1,"menuId":39,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":80,"parentId":-1,"menuId":39,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":81,"parentId":-1,"menuId":39,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":82,"parentId":-1,"menuId":39,"name":"复制","title":"复制","types":"copy","description":"","status":1,"children":null},{"id":83,"parentId":-1,"menuId":39,"name":"数据记录","title":"数据记录","types":"record","description":"","status":1,"children":null},{"id":170,"parentId":-1,"menuId":39,"name":"设置聚合","title":"设置聚合","types":"juhe","description":"","status":1,"children":null}],"column":[{"id":110,"parentId":-1,"menuId":39,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:11","children":null},{"id":111,"parentId":-1,"menuId":39,"name":"模型名称","title":"模型名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:27","children":null},{"id":112,"parentId":-1,"menuId":39,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:37","children":null},{"id":113,"parentId":-1,"menuId":39,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:49:40","children":null},{"id":198,"parentId":-1,"menuId":39,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:11","children":null},{"id":199,"parentId":-1,"menuId":39,"name":"描述","title":"描述","code":"desc","description":"","status":1,"createdBy":1,"createdAt":"2022-11-08 23:38:21","children":null},{"id":210,"parentId":-1,"menuId":39,"name":"标识","title":"标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-12 01:13:13","children":null},{"id":245,"parentId":-1,"menuId":39,"name":"类型","title":"类型","code":"typeName","description":"","status":1,"createdBy":1,"createdAt":"2023-01-29 16:56:09","children":null}],"api":[{"id":161,"menuApiId":238,"parentId":90,"name":"模型:添加","types":2,"method":"","address":"/api/v1/source/template/add","remark":"","status":1,"sort":0}],"children":null},{"id":61,"parentId":27,"name":"数据源详情","title":"数据源详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/source/:sourceId","component":"/system/datahub/source/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":84,"parentId":-1,"menuId":61,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":85,"parentId":-1,"menuId":61,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":86,"parentId":-1,"menuId":61,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null},{"id":87,"parentId":-1,"menuId":61,"name":"发布与停止","title":"发布与停止","types":"pro-status","description":"","status":1,"children":null}],"column":[{"id":114,"parentId":-1,"menuId":61,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:55:37","children":null},{"id":115,"parentId":-1,"menuId":61,"name":"数据标识","title":"数据标识","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-05 17:55:43","children":null},{"id":116,"parentId":-1,"menuId":61,"name":"数据名称","title":"数据名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:07","children":null},{"id":117,"parentId":-1,"menuId":61,"name":"数据类型","title":"数据类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:15","children":null},{"id":118,"parentId":-1,"menuId":61,"name":"数据取值项","title":"数据取值项","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:22","children":null},{"id":119,"parentId":-1,"menuId":61,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 09:56:31","children":null}],"api":[{"id":142,"menuApiId":219,"parentId":90,"name":"数据库数据源:获取字段","types":2,"method":"","address":"/api/v1/source/db/fields","remark":"","status":1,"sort":0}],"children":null},{"id":64,"parentId":27,"name":"数据模型详情","title":"数据模型详情","icon":"","condition":"","remark":"","menuType":1,"weigh":0,"isHide":1,"path":"/config/datahub/modeling/:id","component":"/system/datahub/modeling/detail","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":88,"parentId":-1,"menuId":64,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":89,"parentId":-1,"menuId":64,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":90,"parentId":-1,"menuId":64,"name":"详情","title":"详情","types":"detail","description":"","status":1,"children":null},{"id":91,"parentId":-1,"menuId":64,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":120,"parentId":-1,"menuId":64,"name":"ID","title":"ID","code":"id","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:29","children":null},{"id":121,"parentId":-1,"menuId":64,"name":"字段名称","title":"字段名称","code":"key","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:38","children":null},{"id":122,"parentId":-1,"menuId":64,"name":"字段标题","title":"字段标题","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:45","children":null},{"id":123,"parentId":-1,"menuId":64,"name":"类型","title":"类型","code":"dataType","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:51","children":null},{"id":124,"parentId":-1,"menuId":64,"name":"数据源名称","title":"数据源名称","code":"from","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:01:59","children":null},{"id":125,"parentId":-1,"menuId":64,"name":"默认值","title":"默认值","code":"default","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:10","children":null},{"id":126,"parentId":-1,"menuId":64,"name":"备注说明","title":"备注说明","code":"value","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:17","children":null},{"id":127,"parentId":-1,"menuId":64,"name":"创建时间","title":"创建时间","code":"createdAt","description":"","status":1,"createdBy":1,"createdAt":"2022-11-06 10:02:24","children":null}],"api":[{"id":166,"menuApiId":243,"parentId":90,"name":"模型:详情","types":2,"method":"","address":"/api/v1/source/template/detail","remark":"","status":1,"sort":0}],"children":null}]},{"id":48,"parentId":20,"name":"接口管理","title":"接口管理","icon":"iconfont icon-zujian","condition":"","remark":"","menuType":1,"weigh":0,"isHide":0,"path":"/config/api","component":"/system/api/index","isLink":0,"moduleType":"","modelId":0,"isIframe":0,"isCached":0,"redirect":"","isAffix":0,"linkUrl":"","status":1,"button":[{"id":129,"parentId":-1,"menuId":48,"name":"新增","title":"新增","types":"add","description":"","status":1,"children":null},{"id":130,"parentId":-1,"menuId":48,"name":"编辑","title":"编辑","types":"edit","description":"","status":1,"children":null},{"id":131,"parentId":-1,"menuId":48,"name":"删除","title":"删除","types":"del","description":"","status":1,"children":null}],"column":[{"id":189,"parentId":-1,"menuId":48,"name":"操作","title":"操作","code":"handle","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:56","children":null},{"id":190,"parentId":-1,"menuId":48,"name":"状态","title":"状态","code":"status","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:44:57","children":null},{"id":191,"parentId":-1,"menuId":48,"name":"接口名称","title":"接口名称","code":"name","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:03","children":null},{"id":192,"parentId":-1,"menuId":48,"name":"接口地址","title":"接口地址","code":"address","description":"","status":1,"createdBy":1,"createdAt":"2022-11-07 22:45:13","children":null}],"api":[{"id":286,"menuApiId":360,"parentId":254,"name":"获取所有接口","types":2,"method":"","address":"/api/v1/system/api/GetAll","remark":"","status":1,"sort":0}],"children":null}]}] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.system.copyright","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048272438 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048272439 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048272441 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048272447 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048272449 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048272452 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048336227 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048336228 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048336231 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048336233 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048336236 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048336239 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048495899 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048495900 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048654172 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048654173 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048654175 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048654176 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048654178 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048654180 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*5 -$3 -SET -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-04f03fba26e201e6af850c3ecf69e721 -$1046 -{"jwtToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7ImlkIjoxLCJ1c2VyTmFtZSI6ImFkbWluIiwidXNlclR5cGVzIjoiMSIsIm1vYmlsZSI6IjE1NTE2NTY3MTkyIiwidXNlck5pY2tuYW1lIjoi6LaF57qn566h55CG5ZGYIiwiYmlydGhkYXkiOiIiLCJ1c2VyUGFzc3dvcmQiOiIiLCJ1c2VyU2FsdCI6ImtuY0lVS2tRVFMiLCJ1c2VyRW1haWwiOiJ5eGg2NjlAcXEuY29tMTExMSIsInNleCI6MiwiYXZhdGFyIjoiaHR0cHM6Ly96aGd5LnNhZ29vLmNuL2Jhc2UtYXBpL3VwbG9hZF9maWxlLzIwMjMtMDMtMjgvY3JocWhsaHNxZDM5a2JkZnF0LnBuZyIsImRlcHRJZCI6NiwicmVtYXJrIjoiIiwiaXNBZG1pbiI6MSwiYWRkcmVzcyI6IuWbm-W3neecgeaIkOmDveW4gumdkue-iuWMuuS4nOWfjuagueWNl-ihlzY45Y-36ZmiIiwiZGVzY3JpYmUiOiLlpKflrrblpb3vvIzmiJHmmK9hZG1pbuOAgiIsImxhc3RMb2dpbklwIjoiMTkyLjE2OC4xMC4yMTAiLCJsYXN0TG9naW5UaW1lIjoiMjAyMy0wOC0wMyAxNDoxMDo0OCIsInN0YXR1cyI6MSwiaXNEZWxldGVkIjowLCJjcmVhdGVCeSI6MSwiY3JlYXRlZEF0IjoiMjAyMi0wOC0wMyAyMTozMzozMCIsInVwZGF0ZUJ5IjoxLCJ1cGRhdGVkQXQiOiIyMDIzLTA4LTAzIDE0OjEwOjQ3IiwiZGVsZXRlZEJ5IjowLCJkZWxldGVkQXQiOiIifSwiZXhwIjoxNjkxMDY0ODEyLCJuYmYiOjE2OTEwNDg2MDJ9.ohX-poaIvhkhShMI5Zark_b_5T2AK7H7_0STZKz2XyM","uuId":"4725465d6185039dfdfeec225100048a"} -$4 -PXAT -$13 -1691064812499 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048672522 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691048672524 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049012460 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049012464 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049012465 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049012467 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049012468 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049012470 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049058903 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049058905 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.api.switch","sysConfigTagsys.access.control","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$35 -SagooIOT_sysConfigTagsys.api.switch -$280 -{"configId":27,"configName":"API开关","configKey":"sys.api.switch","configValue":"1","configType":1,"remark":"0 关闭 1 打开","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-09 18:14:07","updateBy":10,"updatedAt":"2023-04-10 13:24:42","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049672161 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$39 -SagooIOT_sysConfigTagsys.access.control -$291 -{"configId":15,"configName":"是否开启访问权限","configKey":"sys.access.control","configValue":"0","configType":1,"remark":"0 否 1是","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-11-22 10:06:41","updateBy":1,"updatedAt":"2022-12-16 02:54:58","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691049672163 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$35 -SagooIOT_sysConfigTagsys.api.switch -*2 -$3 -DEL -$39 -SagooIOT_sysConfigTagsys.access.control -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691051610168 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691051610171 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691051610172 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691051610174 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTaghomePageRoute","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691051610175 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691051610177 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:totalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$30 -SagooIOT_device:totalForMonths -$77 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":11,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths"] -*3 -$3 -SET -$27 -SagooIOT_device:totalForDay -$77 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":11,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay"] -*3 -$3 -SET -$35 -SagooIOT_device:alarmTotalForMonths -$76 -{"1":0,"10":0,"11":0,"12":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths","system.iot.overview.index"] -*3 -$3 -SET -$32 -SagooIOT_device:alarmTotalForDay -$466 -{"2023-07-04":0,"2023-07-05":0,"2023-07-06":0,"2023-07-07":0,"2023-07-08":0,"2023-07-09":0,"2023-07-10":0,"2023-07-11":0,"2023-07-12":0,"2023-07-13":0,"2023-07-14":0,"2023-07-15":0,"2023-07-16":0,"2023-07-17":0,"2023-07-18":0,"2023-07-19":0,"2023-07-20":0,"2023-07-21":0,"2023-07-22":0,"2023-07-23":0,"2023-07-24":0,"2023-07-25":0,"2023-07-26":0,"2023-07-27":0,"2023-07-28":0,"2023-07-29":0,"2023-07-30":0,"2023-07-31":0,"2023-08-01":0,"2023-08-02":0,"2023-08-03":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay","device:totalForMonths"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$19 -SagooIOT_userInfo_1 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.name -$272 -{"configId":7,"configName":"系统名称","configKey":"sys.system.name","configValue":"SagooIOT","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-12 21:54:54","updateBy":1,"updatedAt":"2023-01-06 19:46:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691052118028 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.copyright -$277 -{"configId":8,"configName":"系统版权","configKey":"sys.system.copyright","configValue":"Sagoo.cn","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2022-08-27 13:21:55","updateBy":1,"updatedAt":"2023-03-13 09:20:08","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691052118029 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$36 -SagooIOT_sysConfigTagsys.system.logo -$277 -{"configId":17,"configName":"系统LOGO","configKey":"sys.system.logo","configValue":"/imgs/logo.png","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:36:07","updateBy":1,"updatedAt":"2023-01-31 06:47:25","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691052118031 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -$302 -{"configId":19,"configName":"系统LOGO(小图标)","configKey":"sys.system.logo.mini","configValue":"/imgs/logo-mini.svg","configType":0,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-31 07:19:59","updateBy":1,"updatedAt":"2023-01-31 07:20:23","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691052118032 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTaghomePageRoute","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$41 -SagooIOT_sysConfigTagsys.system.login.pic -$295 -{"configId":18,"configName":"登录展示图","configKey":"sys.system.login.pic","configValue":"/imgs/login-box-bg.svg","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-01-30 14:37:17","updateBy":1,"updatedAt":"2023-01-31 06:47:40","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691052118034 -*3 -$3 -SET -$25 -SagooIOT_tag_sysConfigTag -$429 -["sysConfigTaghomePageRoute","sysConfigTagsys.system.login.pic","sysConfigTagsys.system.logo.mini","sysConfigTagsys.system.logo","sysConfigTagsys.system.copyright","sysConfigTagsys.system.name","sysConfigTagsys.access.control","sysConfigTagsys.api.switch","sysConfigTagsys.uploadFile.imageSize","sysConfigTagsys.uploadFile.imageType","sysConfigTagsys.button.switch","sysConfigTagsys.column.switch","sysConfigTagsys.auto.run.job"] -*5 -$3 -SET -$34 -SagooIOT_sysConfigTaghomePageRoute -$284 -{"configId":24,"configName":"首页路由","configKey":"homePageRoute","configValue":"/iotmanager/dashboard","configType":1,"remark":"","status":0,"isDeleted":0,"createBy":1,"createdAt":"2023-04-08 22:16:36","updateBy":0,"updatedAt":"2023-04-08 22:16:36","deletedBy":0,"deletedAt":""} -$4 -PXAT -$13 -1691052118035 -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.logo.mini -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.logo -*2 -$3 -DEL -$36 -SagooIOT_sysConfigTagsys.system.name -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.copyright -*2 -$3 -DEL -$34 -SagooIOT_sysConfigTaghomePageRoute -*2 -$3 -DEL -$41 -SagooIOT_sysConfigTagsys.system.login.pic -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$34 -SagooIOT_system.iot.overview.index -$130 -{"deviceTotal":18,"deviceOffline":13,"productTotal":17,"productAdded":1,"msgTotal":11,"msgAdded":11,"alarmTotal":0,"alarmAdded":0} -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["system.iot.overview.index","device:totalForMonths","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*3 -$3 -SET -$19 -SagooIOT_tag_device -$129 -["device:totalForMonths","system.iot.overview.index","device:alarmTotalForDay","device:alarmTotalForMonths","device:totalForDay"] -*2 -$6 -SELECT -$1 -0 -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-f19620a4c7cf3df4f6508a44883f4893 -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-f201556fdc2c56aca6c59cb7e6b8c7a7 -*2 -$3 -DEL -$76 -SagooIOT_1-21232f297a57a5a743894a0e4a801fc3-04f03fba26e201e6af850c3ecf69e721 -*2 -$3 -DEL -$77 -SagooIOT_10-fe01ce2a7fbac8fafaed7c982a04e229-00b0b80e267dd2597c51aa7b57f891a9 diff --git a/manifest/docker-compose/redis/data/appendonlydir/appendonly.aof.manifest b/manifest/docker-compose/redis/data/appendonlydir/appendonly.aof.manifest deleted file mode 100644 index 7f8bb72..0000000 --- a/manifest/docker-compose/redis/data/appendonlydir/appendonly.aof.manifest +++ /dev/null @@ -1,2 +0,0 @@ -file appendonly.aof.1.base.rdb seq 1 type b -file appendonly.aof.1.incr.aof seq 1 type i diff --git a/manifest/docker-compose/redis/data/dump.rdb b/manifest/docker-compose/redis/data/dump.rdb deleted file mode 100644 index 6037892..0000000 Binary files a/manifest/docker-compose/redis/data/dump.rdb and /dev/null differ